diff --git a/.clang-format b/.clang-format
index ff61b45..673ad8e 100644
--- a/.clang-format
+++ b/.clang-format
@@ -1,5 +1,73 @@
+Language: Cpp
BasedOnStyle: LLVM
-BreakBeforeBraces: Stroustrup
-AllowShortIfStatementsOnASingleLine: true
-NamespaceIndentation: All
-
+
+AccessModifierOffset: -2
+AlignConsecutiveAssignments: false
+AlignConsecutiveDeclarations: false
+AlignEscapedNewlines: Left
+AlignTrailingComments: true
+AllowShortBlocksOnASingleLine: Empty
+AllowShortEnumsOnASingleLine: false
+AllowShortFunctionsOnASingleLine: InlineOnly
+AllowShortIfStatementsOnASingleLine : Never
+AllowShortLambdasOnASingleLine: Inline
+AllowShortLoopsOnASingleLine: false
+AlwaysBreakAfterReturnType: None
+AlwaysBreakTemplateDeclarations: Yes
+BinPackArguments: false
+BinPackParameters: false
+BreakBeforeConceptDeclarations: Always
+BreakBeforeTernaryOperators: true
+BreakConstructorInitializers: BeforeComma
+ColumnLimit: 486
+CompactNamespaces: false
+ConstructorInitializerAllOnOneLineOrOnePerLine: true
+FixNamespaceComments: true
+IncludeBlocks: Preserve
+IndentCaseBlocks: false
+IndentCaseLabels: false
+IndentRequiresClause: false
+IndentWidth: 2
+InsertTrailingCommas: Wrapped
+KeepEmptyLinesAtTheStartOfBlocks: false
+LambdaBodyIndentation: OuterScope
+MaxEmptyLinesToKeep: 1
+NamespaceIndentation: None
+PackConstructorInitializers: Never
+PointerAlignment: Right
+QualifierAlignment: Left
+RequiresExpressionIndentation: OuterScope
+ShortNamespaceLines: 0
+SortUsingDeclarations: true
+SpaceAfterCStyleCast: false
+SpaceAfterTemplateKeyword: true
+SpaceBeforeAssignmentOperators: true
+SpaceBeforeCpp11BracedList: false
+SpaceBeforeCtorInitializerColon: true
+SpaceBeforeInheritanceColon: true
+SpaceBeforeParens: ControlStatements
+SpaceBeforeRangeBasedForLoopColon: true
+SpaceInEmptyParentheses: false
+SpacesInAngles: false
+SpacesInCStyleCastParentheses: false
+SpacesInContainerLiterals: false
+SpacesInParentheses: false
+SpacesInSquareBrackets: false
+
+BreakBeforeBraces: Custom
+BraceWrapping:
+ AfterCaseLabel: true
+ AfterClass: true
+ AfterControlStatement: true
+ AfterEnum: true
+ AfterFunction: true
+ AfterNamespace: true
+ AfterStruct: true
+ AfterUnion: true
+ AfterExternBlock: true
+ BeforeCatch: true
+ BeforeElse: true
+ IndentBraces: false
+ SplitEmptyFunction: false
+ SplitEmptyRecord: false
+ SplitEmptyNamespace: false
\ No newline at end of file
diff --git a/.gitignore b/.gitignore
index 121cf97..98b8f68 100644
--- a/.gitignore
+++ b/.gitignore
@@ -39,3 +39,4 @@ object_script*
/attorney_online_*_plugin_import.cpp
server/__pycache__
discord/
+*.TMP
diff --git a/Attorney_Online.pro b/Attorney_Online.pro
deleted file mode 100644
index 73576df..0000000
--- a/Attorney_Online.pro
+++ /dev/null
@@ -1,79 +0,0 @@
-QT += core gui widgets network websockets uitools
-
-TARGET = Attorney_Online
-TEMPLATE = app
-
-VERSION = 2.10.1.0
-
-INCLUDEPATH += $$PWD/include
-DESTDIR = $$PWD/bin
-OBJECTS_DIR = $$PWD/build
-MOC_DIR = $$PWD/build
-
-SOURCES += $$files($$PWD/src/*.cpp, true)
-HEADERS += $$files($$PWD/include/*.h, true)
-
-FORMS += $$files($$PWD/resource/ui/*.ui)
-
-LIBS += -L$$PWD/lib
-QMAKE_LFLAGS += -Wl,-rpath,"'\$$ORIGIN/lib'"
-QMAKE_CXXFLAGS += "-fno-sized-deallocation"
-
-# Uncomment for verbose network logging
-# DEFINES += DEBUG_NETWORK
-
-# Uncomment for verbose animation logging
-# DEFINES += DEBUG_MOVIE
-
-# Uncomment for building with debug symbols
-# CONFIG += debug
-
-# Uncomment to enable Discord Rich Presence
-# DEFINES += DISCORD
-
-contains(DEFINES, DISCORD) {
- win32:LIBS += -ldiscord-rpc
- linux:!android:LIBS += -ldiscord-rpc
- mac:LIBS += -ldiscord-rpc
-}
-
-# As of 2.8.5, BASS and BASSOPUS are required for all platforms. Qt Multimedia
-# is no longer an option due to outdated code and lack of versatility.
-# Download at un4seen.com and place the DLLs in the "lib" and "bin" folders.
-DEFINES += BASSAUDIO
-LIBS += -lbass
-LIBS += -lbassopus
-LIBS += -lbassmidi
-
-macx:LIBS += -framework CoreFoundation -framework Foundation -framework CoreServices
-
-win32:LIBS += -ladvapi32
-
-CONFIG += c++17
-
-RESOURCES += resources.qrc
-
-TRANSLATIONS = resource/translations/ao_en.ts \
- resource/translations/ao_jp.ts \
- resource/translations/ao_de.ts \
- resource/translations/ao_ru.ts \
- resource/translations/ao_es.ts \
- resource/translations/ao_pt.ts \
- resource/translations/ao_pl.ts \
- resource/translations/ao_it.ts \
- ressource/ui/
-
-win32:RC_ICONS = resource/logo_ao2.ico
-macx:ICON = resource/logo_ao2.icns
-
-android:QT += androidextras
-
-android:DISTFILES += \
- android/AndroidManifest.xml \
- android/gradle.properties \
- android/gradle/wrapper/gradle-wrapper.jar \
- android/gradle/wrapper/gradle-wrapper.properties \
- android/gradlew \
- android/gradlew.bat
-
-ANDROID_PACKAGE_SOURCE_DIR = $$PWD/android
diff --git a/CMakeLists.txt b/CMakeLists.txt
index fad3de0..ee5759e 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,8 +1,6 @@
-# Configure cmake
-cmake_minimum_required(VERSION 3.1.0)
-cmake_policy(SET CMP0076 NEW) # silence warning
+cmake_minimum_required(VERSION 3.7.0)
-project(AttorneyOnline)
+project(AttorneyOnline VERSION 2.11.0.0 LANGUAGES CXX C)
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
@@ -11,39 +9,118 @@ set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)
set(CMAKE_AUTOUIC ON)
-if(CMAKE_VERSION VERSION_LESS "3.7.0")
- set(CMAKE_INCLUDE_CURRENT_DIR ON)
-endif()
+set(CMAKE_INCLUDE_CURRENT_DIR ON)
-# AO
-add_executable(Attorney_Online resources.qrc)
+option(AO_BUILD_TESTS "Build test programs" ON)
+option(AO_ENABLE_DISCORD_RPC "Enable Discord Rich Presence" ON)
+
+find_package(QT NAMES Qt6 Qt5 REQUIRED COMPONENTS Core)
+find_package(Qt${QT_VERSION_MAJOR} REQUIRED COMPONENTS Core Gui Network Widgets Concurrent WebSockets UiTools)
+
+add_executable(Attorney_Online
+ src/aoapplication.cpp
+ src/aoapplication.h
+ src/aoblipplayer.cpp
+ src/aoblipplayer.h
+ src/aobutton.cpp
+ src/aobutton.h
+ src/aocharbutton.cpp
+ src/aocharbutton.h
+ src/aoclocklabel.cpp
+ src/aoclocklabel.h
+ src/aoemotebutton.cpp
+ src/aoemotebutton.h
+ src/aoemotepreview.cpp
+ src/aoemotepreview.h
+ src/aoevidencebutton.cpp
+ src/aoevidencebutton.h
+ src/aoevidencedisplay.cpp
+ src/aoevidencedisplay.h
+ src/aoimage.cpp
+ src/aoimage.h
+ src/aolayer.cpp
+ src/aolayer.h
+ src/aomusicplayer.cpp
+ src/aomusicplayer.h
+ src/aopacket.cpp
+ src/aopacket.h
+ src/aosfxplayer.cpp
+ src/aosfxplayer.h
+ src/aotextarea.cpp
+ src/aotextarea.h
+ src/aotextboxwidgets.cpp
+ src/aotextboxwidgets.h
+ src/aoutils.cpp
+ src/aoutils.h
+ src/charselect.cpp
+ src/chatlogpiece.cpp
+ src/chatlogpiece.h
+ src/courtroom.cpp
+ src/courtroom.h
+ src/datatypes.h
+ src/debug_functions.cpp
+ src/debug_functions.h
+ src/demoserver.cpp
+ src/demoserver.h
+ src/discord_rich_presence.cpp
+ src/discord_rich_presence.h
+ src/emotes.cpp
+ src/eventfilters.cpp
+ src/eventfilters.h
+ src/evidence.cpp
+ src/file_functions.cpp
+ src/file_functions.h
+ src/gui_utils.h
+ src/hardware_functions.cpp
+ src/hardware_functions.h
+ src/lobby.cpp
+ src/lobby.h
+ src/main.cpp
+ src/net/netconnection.cpp
+ src/net/netconnection.h
+ src/net/nettcpconnection.cpp
+ src/net/nettcpconnection.h
+ src/net/netwebsocketconnection.cpp
+ src/net/netwebsocketconnection.h
+ src/networkmanager.cpp
+ src/networkmanager.h
+ src/options.cpp
+ src/options.h
+ src/packet_distribution.cpp
+ src/path_functions.cpp
+ src/scrolltext.cpp
+ src/scrolltext.h
+ src/serverdata.cpp
+ src/serverdata.h
+ src/text_file_functions.cpp
+ src/widgets/aooptionsdialog.cpp
+ src/widgets/aooptionsdialog.h
+ src/widgets/direct_connect_dialog.cpp
+ src/widgets/direct_connect_dialog.h
+ src/widgets/server_editor_dialog.cpp
+ src/widgets/server_editor_dialog.h
+ data.qrc
+)
+
+set_target_properties(Attorney_Online PROPERTIES RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/bin")
-# WIN32
if(WIN32)
- if(CMAKE_BUILD_TYPE STREQUAL "Release")
- set_property(TARGET Attorney_Online PROPERTY WIN32_EXECUTABLE true)
- set(APP_ICON_RESOURCE_WINDOWS "${CMAKE_CURRENT_SOURCE_DIR}/resource/logo_ao2.rc")
- target_sources(Attorney_Online PRIVATE ${APP_ICON_RESOURCE_WINDOWS})
- endif()
+ if(CMAKE_BUILD_TYPE STREQUAL "Release")
+ set_property(TARGET Attorney_Online PROPERTY WIN32_EXECUTABLE true)
+ set(APP_ICON_RESOURCE_WINDOWS "${CMAKE_CURRENT_SOURCE_DIR}/data/logo-client.rc")
+ target_sources(Attorney_Online PRIVATE ${APP_ICON_RESOURCE_WINDOWS})
+ endif()
endif()
-# Target Include
-target_include_directories(Attorney_Online PRIVATE include)
-
-# Target Lib
-find_package(Qt5 COMPONENTS Core Gui Network Widgets Concurrent WebSockets REQUIRED)
+target_include_directories(Attorney_Online PRIVATE src lib)
target_link_directories(Attorney_Online PRIVATE lib)
-target_link_libraries(Attorney_Online PRIVATE Qt5::Core Qt5::Gui Qt5::Network Qt5::Widgets Qt5::Concurrent
- Qt5::WebSockets bass bassmidi bassopus discord-rpc)
-target_compile_definitions(Attorney_Online PRIVATE DISCORD)
+target_link_libraries(Attorney_Online PRIVATE Qt${QT_VERSION_MAJOR}::Core Qt${QT_VERSION_MAJOR}::Gui Qt${QT_VERSION_MAJOR}::Network Qt${QT_VERSION_MAJOR}::Widgets Qt${QT_VERSION_MAJOR}::Concurrent Qt${QT_VERSION_MAJOR}::WebSockets Qt${QT_VERSION_MAJOR}::UiTools bass bassopus bassmidi)
-if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
- target_link_libraries(Attorney_Online PRIVATE "-framework CoreFoundation" "-framework Foundation" "-framework CoreServices")
+if(AO_ENABLE_DISCORD_RPC)
+ target_compile_definitions(Attorney_Online PRIVATE AO_ENABLE_DISCORD_RPC)
+ target_link_libraries(Attorney_Online PRIVATE discord-rpc)
endif()
-# Subdirectories
-if (AO_BUILD_TESTS)
- add_subdirectory(test)
+if(AO_BUILD_TESTS)
+ add_subdirectory(test)
endif()
-add_subdirectory(src)
-add_subdirectory(include)
diff --git a/data.qrc b/data.qrc
new file mode 100644
index 0000000..419fab4
--- /dev/null
+++ b/data.qrc
@@ -0,0 +1,19 @@
+
+
+ data/fonts/Ace-Attorney.ttf
+ data/logo-client.png
+ data/translations/ao_de.qm
+ data/translations/ao_en.qm
+ data/translations/ao_es.qm
+ data/translations/ao_jp.qm
+ data/translations/ao_pl.qm
+ data/translations/ao_pt.qm
+ data/translations/ao_ru.qm
+ data/ui/options_dialog.ui
+ data/ui/favorite_server_dialog.ui
+ data/ui/direct_connect_dialog.ui
+ data/ui/lobby.ui
+ data/ui/lobby_assets/down-arrow.png
+ data/ui/lobby_assets/up-arrow.png
+
+
diff --git a/resource/fonts/Ace-Attorney.ttf b/data/fonts/Ace-Attorney.ttf
similarity index 100%
rename from resource/fonts/Ace-Attorney.ttf
rename to data/fonts/Ace-Attorney.ttf
diff --git a/resource/logo_ao2.icns b/data/logo-client.icns
similarity index 100%
rename from resource/logo_ao2.icns
rename to data/logo-client.icns
diff --git a/resource/logo_ao2.ico b/data/logo-client.ico
similarity index 100%
rename from resource/logo_ao2.ico
rename to data/logo-client.ico
diff --git a/resource/logo_ao2.png b/data/logo-client.png
similarity index 100%
rename from resource/logo_ao2.png
rename to data/logo-client.png
diff --git a/data/logo-client.rc b/data/logo-client.rc
new file mode 100644
index 0000000..3e53ddd
--- /dev/null
+++ b/data/logo-client.rc
@@ -0,0 +1 @@
+IDI_ICON1 ICON "logo-client.ico"
diff --git a/resource/logo.iconset/icon_1024x1024.png b/data/logo.iconset/icon_1024x1024.png
similarity index 100%
rename from resource/logo.iconset/icon_1024x1024.png
rename to data/logo.iconset/icon_1024x1024.png
diff --git a/resource/logo.iconset/icon_128x128.png b/data/logo.iconset/icon_128x128.png
similarity index 100%
rename from resource/logo.iconset/icon_128x128.png
rename to data/logo.iconset/icon_128x128.png
diff --git a/resource/logo.iconset/icon_128x128@2x.png b/data/logo.iconset/icon_128x128@2x.png
similarity index 100%
rename from resource/logo.iconset/icon_128x128@2x.png
rename to data/logo.iconset/icon_128x128@2x.png
diff --git a/resource/logo.iconset/icon_16x16.png b/data/logo.iconset/icon_16x16.png
similarity index 100%
rename from resource/logo.iconset/icon_16x16.png
rename to data/logo.iconset/icon_16x16.png
diff --git a/resource/logo.iconset/icon_16x16@2x.png b/data/logo.iconset/icon_16x16@2x.png
similarity index 100%
rename from resource/logo.iconset/icon_16x16@2x.png
rename to data/logo.iconset/icon_16x16@2x.png
diff --git a/resource/logo.iconset/icon_256x256.png b/data/logo.iconset/icon_256x256.png
similarity index 100%
rename from resource/logo.iconset/icon_256x256.png
rename to data/logo.iconset/icon_256x256.png
diff --git a/resource/logo.iconset/icon_256x256@2x.png b/data/logo.iconset/icon_256x256@2x.png
similarity index 100%
rename from resource/logo.iconset/icon_256x256@2x.png
rename to data/logo.iconset/icon_256x256@2x.png
diff --git a/resource/logo.iconset/icon_32x32.png b/data/logo.iconset/icon_32x32.png
similarity index 100%
rename from resource/logo.iconset/icon_32x32.png
rename to data/logo.iconset/icon_32x32.png
diff --git a/resource/logo.iconset/icon_32x32@2x.png b/data/logo.iconset/icon_32x32@2x.png
similarity index 100%
rename from resource/logo.iconset/icon_32x32@2x.png
rename to data/logo.iconset/icon_32x32@2x.png
diff --git a/resource/logo.iconset/icon_512x512.png b/data/logo.iconset/icon_512x512.png
similarity index 100%
rename from resource/logo.iconset/icon_512x512.png
rename to data/logo.iconset/icon_512x512.png
diff --git a/resource/logo.iconset/icon_512x512@2x.png b/data/logo.iconset/icon_512x512@2x.png
similarity index 100%
rename from resource/logo.iconset/icon_512x512@2x.png
rename to data/logo.iconset/icon_512x512@2x.png
diff --git a/resource/logo.iconset/icon_64x64.png b/data/logo.iconset/icon_64x64.png
similarity index 100%
rename from resource/logo.iconset/icon_64x64.png
rename to data/logo.iconset/icon_64x64.png
diff --git a/resource/logo.iconset/icon_64x64@2x.png b/data/logo.iconset/icon_64x64@2x.png
similarity index 100%
rename from resource/logo.iconset/icon_64x64@2x.png
rename to data/logo.iconset/icon_64x64@2x.png
diff --git a/resource/translations/ao_de.qm b/data/translations/ao_de.qm
similarity index 100%
rename from resource/translations/ao_de.qm
rename to data/translations/ao_de.qm
diff --git a/resource/translations/ao_de.ts b/data/translations/ao_de.ts
similarity index 100%
rename from resource/translations/ao_de.ts
rename to data/translations/ao_de.ts
diff --git a/resource/translations/ao_en.qm b/data/translations/ao_en.qm
similarity index 100%
rename from resource/translations/ao_en.qm
rename to data/translations/ao_en.qm
diff --git a/resource/translations/ao_en.ts b/data/translations/ao_en.ts
similarity index 100%
rename from resource/translations/ao_en.ts
rename to data/translations/ao_en.ts
diff --git a/resource/translations/ao_es.qm b/data/translations/ao_es.qm
similarity index 100%
rename from resource/translations/ao_es.qm
rename to data/translations/ao_es.qm
diff --git a/resource/translations/ao_es.ts b/data/translations/ao_es.ts
similarity index 100%
rename from resource/translations/ao_es.ts
rename to data/translations/ao_es.ts
diff --git a/resource/translations/ao_it.qm b/data/translations/ao_it.qm
similarity index 100%
rename from resource/translations/ao_it.qm
rename to data/translations/ao_it.qm
diff --git a/resource/translations/ao_it.ts b/data/translations/ao_it.ts
similarity index 100%
rename from resource/translations/ao_it.ts
rename to data/translations/ao_it.ts
diff --git a/resource/translations/ao_jp.qm b/data/translations/ao_jp.qm
similarity index 100%
rename from resource/translations/ao_jp.qm
rename to data/translations/ao_jp.qm
diff --git a/resource/translations/ao_jp.ts b/data/translations/ao_jp.ts
similarity index 100%
rename from resource/translations/ao_jp.ts
rename to data/translations/ao_jp.ts
diff --git a/resource/translations/ao_pl.qm b/data/translations/ao_pl.qm
similarity index 100%
rename from resource/translations/ao_pl.qm
rename to data/translations/ao_pl.qm
diff --git a/resource/translations/ao_pl.ts b/data/translations/ao_pl.ts
similarity index 100%
rename from resource/translations/ao_pl.ts
rename to data/translations/ao_pl.ts
diff --git a/resource/translations/ao_pt.qm b/data/translations/ao_pt.qm
similarity index 100%
rename from resource/translations/ao_pt.qm
rename to data/translations/ao_pt.qm
diff --git a/resource/translations/ao_pt.ts b/data/translations/ao_pt.ts
similarity index 100%
rename from resource/translations/ao_pt.ts
rename to data/translations/ao_pt.ts
diff --git a/resource/translations/ao_ru.qm b/data/translations/ao_ru.qm
similarity index 100%
rename from resource/translations/ao_ru.qm
rename to data/translations/ao_ru.qm
diff --git a/resource/translations/ao_ru.ts b/data/translations/ao_ru.ts
similarity index 100%
rename from resource/translations/ao_ru.ts
rename to data/translations/ao_ru.ts
diff --git a/resource/ui/direct_connect_dialog.ui b/data/ui/direct_connect_dialog.ui
similarity index 100%
rename from resource/ui/direct_connect_dialog.ui
rename to data/ui/direct_connect_dialog.ui
diff --git a/resource/ui/favorite_server_dialog.ui b/data/ui/favorite_server_dialog.ui
similarity index 74%
rename from resource/ui/favorite_server_dialog.ui
rename to data/ui/favorite_server_dialog.ui
index a1d5f28..f0f60cb 100644
--- a/resource/ui/favorite_server_dialog.ui
+++ b/data/ui/favorite_server_dialog.ui
@@ -23,17 +23,17 @@
-
-
-
+
Legacy Entry :
-
-
+
-
-
+
Convert
@@ -44,48 +44,48 @@
-
-
-
+
- Display Name:
+ Name:
-
-
+
-
-
+
- Hostname :
+ Hostname:
-
-
+
-
-
+
Port:
-
-
+
65535
-
-
+
- Protocol :
+ Protocol:
-
-
+
-
TCP
@@ -99,14 +99,14 @@
-
-
+
Description:
-
-
+
0
@@ -118,7 +118,7 @@
-
-
+
QFrame::Plain
@@ -128,7 +128,7 @@
-
-
+
QDialogButtonBox::Close|QDialogButtonBox::Save
diff --git a/resource/ui/lobby.ui b/data/ui/lobby.ui
similarity index 99%
rename from resource/ui/lobby.ui
rename to data/ui/lobby.ui
index 40b7859..ceb85ff 100644
--- a/resource/ui/lobby.ui
+++ b/data/ui/lobby.ui
@@ -107,12 +107,12 @@ QHeaderView::section:pressed {
QHeaderView::up-arrow
{
- image: url(":/resource/ui/lobby_assets/up-arrow.png");
+ image: url(":/data/ui/lobby_assets/up-arrow.png");
}
QHeaderView::down-arrow
{
- image: url(":/resource/ui/lobby_assets/down-arrow.png");
+ image: url(":/data/ui/lobby_assets/down-arrow.png");
}
QScrollBar:vertical {
diff --git a/resource/ui/lobby_assets/down-arrow.png b/data/ui/lobby_assets/down-arrow.png
similarity index 100%
rename from resource/ui/lobby_assets/down-arrow.png
rename to data/ui/lobby_assets/down-arrow.png
diff --git a/resource/ui/lobby_assets/up-arrow.png b/data/ui/lobby_assets/up-arrow.png
similarity index 100%
rename from resource/ui/lobby_assets/up-arrow.png
rename to data/ui/lobby_assets/up-arrow.png
diff --git a/resource/ui/options_dialog.ui b/data/ui/options_dialog.ui
similarity index 100%
rename from resource/ui/options_dialog.ui
rename to data/ui/options_dialog.ui
diff --git a/include/CMakeLists.txt b/include/CMakeLists.txt
deleted file mode 100644
index 29ad4fe..0000000
--- a/include/CMakeLists.txt
+++ /dev/null
@@ -1,40 +0,0 @@
-target_sources(Attorney_Online PRIVATE
-aoapplication.h
-aoblipplayer.h
-aobutton.h
-aocaseannouncerdialog.h
-aocharbutton.h
-aoclocklabel.h
-aoemotebutton.h
-aoemotepreview.h
-aoevidencebutton.h
-aoevidencedisplay.h
-aoimage.h
-aolayer.h
-aomusicplayer.h
-aooptionsdialog.h
-aopacket.h
-aosfxplayer.h
-aotextarea.h
-aoutils.h
-bass.h
-bassmidi.h
-bassopus.h
-chatlogpiece.h
-courtroom.h
-datatypes.h
-debug_functions.h
-demoserver.h
-discord-rpc.h
-discord_register.h
-discord_rich_presence.h
-discord_rpc.h
-eventfilters.h
-file_functions.h
-hardware_functions.h
-lobby.h
-misc_functions.h
-networkmanager.h
-scrolltext.h
-text_file_functions.h
-)
diff --git a/include/aoblipplayer.h b/include/aoblipplayer.h
deleted file mode 100644
index ea2dcd3..0000000
--- a/include/aoblipplayer.h
+++ /dev/null
@@ -1,37 +0,0 @@
-#ifndef AOBLIPPLAYER_H
-#define AOBLIPPLAYER_H
-
-#include "bass.h"
-#include "bassopus.h"
-
-#include "aoapplication.h"
-
-#include
-#include
-#include
-#include
-
-class AOBlipPlayer {
-public:
- AOBlipPlayer(QWidget *parent, AOApplication *p_ao_app);
-
- void set_blips(QString p_sfx);
- void blip_tick();
- void set_volume(int p_volume);
- void set_muted(bool toggle);
-
- int m_cycle = 0;
-
-private:
- QWidget *m_parent;
- AOApplication *ao_app;
- qreal m_volume;
-
- bool m_muted = false;
-
- void set_volume_internal(qreal p_volume);
-
- HSTREAM m_stream_list[5];
-};
-
-#endif // AOBLIPPLAYER_H
diff --git a/include/aobutton.h b/include/aobutton.h
deleted file mode 100644
index f1ae8b7..0000000
--- a/include/aobutton.h
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef AOBUTTON_H
-#define AOBUTTON_H
-
-#include "aoapplication.h"
-
-#include
-#include
-#include
-
-class AOButton : public QPushButton {
- Q_OBJECT
-
-public:
- AOButton(QWidget *parent, AOApplication *p_ao_app);
- ~AOButton();
-
- AOApplication *ao_app;
- QMovie *movie;
-
- void set_image(QString p_image, QString p_misc="");
-};
-
-#endif // AOBUTTON_H
diff --git a/include/aocharbutton.h b/include/aocharbutton.h
deleted file mode 100644
index 688d52d..0000000
--- a/include/aocharbutton.h
+++ /dev/null
@@ -1,49 +0,0 @@
-#ifndef AOCHARBUTTON_H
-#define AOCHARBUTTON_H
-
-#include "aoapplication.h"
-#include "aoimage.h"
-
-#include
-#include
-#include
-#include
-#include
-
-class AOCharButton : public QPushButton {
- Q_OBJECT
-
-public:
- AOCharButton(QWidget *parent, AOApplication *p_ao_app, int x_pos, int y_pos,
- bool is_taken);
-
- AOApplication *ao_app;
-
- void refresh();
- void reset();
- void set_taken(bool is_taken);
- void set_passworded();
-
- void apply_taken_image();
-
- void set_image(QString p_character);
-
-private:
- bool taken;
-
- QWidget *m_parent;
-
- AOImage *ui_taken;
- AOImage *ui_passworded;
- AOImage *ui_selector;
-
-protected:
-#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
- void enterEvent(QEvent *e) override;
-#else
- void enterEvent(QEnterEvent *e) override;
-#endif
- void leaveEvent(QEvent *e) override;
-};
-
-#endif // AOCHARBUTTON_H
diff --git a/include/aoemotebutton.h b/include/aoemotebutton.h
deleted file mode 100644
index edabfb6..0000000
--- a/include/aoemotebutton.h
+++ /dev/null
@@ -1,38 +0,0 @@
-#ifndef AOEMOTEBUTTON_H
-#define AOEMOTEBUTTON_H
-
-#include "aoapplication.h"
-#include
-#include
-#include
-#include
-
-class AOEmoteButton : public QPushButton {
- Q_OBJECT
-
-public:
- AOEmoteButton(QWidget *p_parent, AOApplication *p_ao_app, int p_x, int p_y,
- int p_w, int p_h);
-
- void set_image(QString p_image, QString p_emote_comment);
- void set_char_image(QString p_char, int p_emote, bool on);
-
- void set_selected_image(QString p_image);
-
- void set_id(int p_id) { m_id = p_id; }
- int get_id() { return m_id; }
-
-private:
- QWidget *parent;
- AOApplication *ao_app;
- QLabel *ui_selected = nullptr;
-
- int m_id = 0;
-signals:
- void emote_clicked(int p_id);
-
-private slots:
- void on_clicked();
-};
-
-#endif // AOEMOTEBUTTON_H
diff --git a/include/aoemotepreview.h b/include/aoemotepreview.h
deleted file mode 100644
index 315371b..0000000
--- a/include/aoemotepreview.h
+++ /dev/null
@@ -1,32 +0,0 @@
-#ifndef AOEMOTEPREVIEW_H
-#define AOEMOTEPREVIEW_H
-
-#include "aolayer.h"
-#include
-
-class AOEmotePreview : public QWidget
-{
- Q_OBJECT
-public:
- AOEmotePreview(QWidget *parent = nullptr,
- AOApplication *p_ao_app = nullptr);
-
- void set_widgets();
- void play(QString emote, QString char_name, bool flipped = false, int self_offset = 0, int self_offset_v = 0);
-private:
- AOApplication *ao_app;
- QWidget *ui_viewport;
- BackgroundLayer *ui_vp_background;
- SplashLayer *ui_vp_speedlines;
- CharLayer *ui_vp_player_char;
- BackgroundLayer *ui_vp_desk;
-
- QLabel *ui_size_label;
-
- QString m_emote = "";
- QString m_char = "";
-protected:
- void resizeEvent(QResizeEvent *);
-};
-
-#endif // AOEMOTEPREVIEW_H
diff --git a/include/aoevidencebutton.h b/include/aoevidencebutton.h
deleted file mode 100644
index f0e1353..0000000
--- a/include/aoevidencebutton.h
+++ /dev/null
@@ -1,56 +0,0 @@
-#ifndef AOEVIDENCEBUTTON_H
-#define AOEVIDENCEBUTTON_H
-
-#include "aoapplication.h"
-#include "aoimage.h"
-
-#include
-#include
-#include
-#include
-
-class AOEvidenceButton : public QPushButton {
- Q_OBJECT
-
-public:
- AOEvidenceButton(QWidget *p_parent, AOApplication *p_ao_app, int p_x, int p_y,
- int p_w, int p_h);
-
- void set_image(QString p_image);
- void set_theme_image(QString p_image);
- void set_id(int p_id) { m_id = p_id; }
-
- void set_selected(bool p_selected);
-
-private:
- AOApplication *ao_app;
- QWidget *m_parent;
-
- AOImage *ui_selected;
- AOImage *ui_selector;
-
- int m_id = 0;
-
-protected:
-#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
- void enterEvent(QEvent *e) override;
-#else
- void enterEvent(QEnterEvent *e) override;
-#endif
- void leaveEvent(QEvent *e) override;
- void mouseDoubleClickEvent(QMouseEvent *e) override;
- /*
-void dragLeaveEvent(QMouseEvent *e);
-void dragEnterEvent(QMouseEvent *e);
-*/
-
-signals:
- void evidence_clicked(int p_id);
- void evidence_double_clicked(int p_id);
- void on_hover(int p_id, bool p_state);
-
-private slots:
- void on_clicked();
-};
-
-#endif // AOEVIDENCEBUTTON_H
diff --git a/include/aoimage.h b/include/aoimage.h
deleted file mode 100644
index 38729d7..0000000
--- a/include/aoimage.h
+++ /dev/null
@@ -1,31 +0,0 @@
-// This class represents a static theme-dependent image
-
-#ifndef AOIMAGE_H
-#define AOIMAGE_H
-
-#include "aoapplication.h"
-
-#include
-#include
-#include
-
-class AOImage : public QLabel {
-public:
- AOImage(QWidget *parent, AOApplication *p_ao_app, bool make_static = false);
- ~AOImage();
-
- QWidget *m_parent;
- AOApplication *ao_app;
- QMovie *movie;
-
- QString path;
-
- bool is_static = false;
-
- bool masked = false;
-
- bool set_image(QString p_image, QString p_misc = "");
- void set_size_and_pos(QString identifier);
-};
-
-#endif // AOIMAGE_H
diff --git a/include/aomusicplayer.h b/include/aomusicplayer.h
deleted file mode 100644
index d028844..0000000
--- a/include/aomusicplayer.h
+++ /dev/null
@@ -1,53 +0,0 @@
-#ifndef AOMUSICPLAYER_H
-#define AOMUSICPLAYER_H
-#include "aoapplication.h"
-
-#include
-#include
-#include
-#include
-#include
-
-class AOMusicPlayer {
-public:
- AOMusicPlayer(QWidget *parent, AOApplication *p_ao_app);
- virtual ~AOMusicPlayer();
- void set_volume(int p_value, int channel = -1);
- void set_looping(bool loop_song, int channel = 0);
- void set_muted(bool toggle);
-
- const int m_channelmax = 4;
-
- QFutureWatcher music_watcher;
-
-public slots:
- QString play(QString p_song, int channel = 0, bool loop = false,
- int effect_flags = 0);
- void stop(int channel = 0);
-
-private:
- QWidget *m_parent;
- AOApplication *ao_app;
-
- bool m_muted = false;
- int m_volume[4] = {0, 0, 0, 0};
-
- // Channel 0 = music
- // Channel 1 = ambience
- // Channel 2 = extra
- // Channel 3 = extra
- HSTREAM m_stream_list[4];
- HSYNC loop_sync[4];
-
- /**
- * @brief The starting sample of the AB-Loop.
- */
- unsigned int loop_start[4] = {0, 0, 0, 0};
-
- /**
- * @brief The end sample of the AB-Loop.
- */
- unsigned int loop_end[4] = {0, 0, 0, 0};
-};
-
-#endif // AOMUSICPLAYER_H
diff --git a/include/aopacket.h b/include/aopacket.h
deleted file mode 100644
index d5baccb..0000000
--- a/include/aopacket.h
+++ /dev/null
@@ -1,28 +0,0 @@
-#ifndef AOPACKET_H
-#define AOPACKET_H
-
-#include
-#include
-#include
-
-class AOPacket {
-public:
- AOPacket(QString header) : m_header(header){}
- AOPacket(QString header, QStringList p_contents) : m_header(header), m_contents(p_contents){}
-
- QString get_header() { return m_header; }
- QStringList &get_contents() { return m_contents; }
- QString to_string(bool encoded = false);
-
- void net_encode();
- void net_decode();
-
- static void escape(QStringList &contents);
- static void unescape(QStringList &contents);
-private:
-
- QString m_header;
- QStringList m_contents;
-};
-
-#endif // AOPACKET_H
diff --git a/include/aosfxplayer.h b/include/aosfxplayer.h
deleted file mode 100644
index 077a7ef..0000000
--- a/include/aosfxplayer.h
+++ /dev/null
@@ -1,40 +0,0 @@
-#ifndef AOSFXPLAYER_H
-#define AOSFXPLAYER_H
-
-#include "bass.h"
-#include "bassopus.h"
-
-#include "aoapplication.h"
-
-#include
-#include
-#include
-
-class AOSfxPlayer {
-public:
- AOSfxPlayer(QWidget *parent, AOApplication *p_ao_app);
-
- void clear();
- void loop_clear();
- void play(QString p_sfx, QString p_char = "", QString shout = "");
- void stop(int channel = -1);
- void set_volume(qreal p_volume);
- void set_looping(bool toggle, int channel = -1);
- void set_muted(bool toggle);
- int m_channel = 0;
- int get_volume() { return m_volume * 100; };
-private:
- QWidget *m_parent;
- AOApplication *ao_app;
- qreal m_volume = 0;
-
- bool m_looping = true;
- bool m_muted = false;
- void set_volume_internal(qreal p_volume);
-
- const int m_channelmax = 5;
-
- HSTREAM m_stream_list[5];
-};
-
-#endif // AOSFXPLAYER_H
diff --git a/include/aotextarea.h b/include/aotextarea.h
deleted file mode 100644
index 405f4eb..0000000
--- a/include/aotextarea.h
+++ /dev/null
@@ -1,26 +0,0 @@
-#ifndef AOTEXTAREA_H
-#define AOTEXTAREA_H
-
-#include
-#include
-#include
-#include
-#include
-
-class AOTextArea : public QTextBrowser {
-public:
- AOTextArea(QWidget *p_parent = nullptr, int p_log_length = 5000);
-
- void append_linked(QString p_message);
- void append_chatmessage(QString p_name, QString p_message,
- QString p_name_colour, QString p_color = QString());
- void append_error(QString p_message);
-
-private:
- const QRegularExpression url_parser_regex = QRegularExpression("\\b(https?://\\S+\\.\\S+)\\b");
-
- void auto_scroll(QTextCursor old_cursor, int scrollbar_value,
- bool is_scrolled_down);
-};
-
-#endif // AOTEXTAREA_H
diff --git a/include/aotextboxwidgets.h b/include/aotextboxwidgets.h
deleted file mode 100644
index 39bf406..0000000
--- a/include/aotextboxwidgets.h
+++ /dev/null
@@ -1,32 +0,0 @@
-#ifndef AOTEXTBOXWIDGETS_H
-#define AOTEXTBOXWIDGETS_H
-
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-
-class AOChatboxLabel : public QLabel {
- Q_OBJECT
-
-public:
- AOChatboxLabel(QWidget *parent);
- void paintEvent(QPaintEvent *event);
-
- void setOutlineColor(QColor color) { outline_color = color; };
- void setOutlineWidth(int width) { outline_width = width; };
- void setTextColor(QColor color) { text_color = color; };
- void setIsOutlined(bool outlined) { is_outlined = outlined; };
-
-protected:
-private:
- QColor outline_color;
- QColor text_color;
- int outline_width = 1;
- bool is_outlined = false;
-};
-
-#endif // AOTEXTBOXWIDGETS_H
diff --git a/include/bass.h b/include/bass.h
deleted file mode 100644
index ec2c7a2..0000000
--- a/include/bass.h
+++ /dev/null
@@ -1,1227 +0,0 @@
-/*
- BASS 2.4 C/C++ header file
- Copyright (c) 1999-2019 Un4seen Developments Ltd.
-
- See the BASS.CHM file for more detailed documentation
-*/
-
-#ifndef BASS_H
-#define BASS_H
-
-#ifdef _WIN32
-#include
-typedef unsigned __int64 QWORD;
-#else
-#include
-#define WINAPI
-#define CALLBACK
-typedef uint8_t BYTE;
-typedef uint16_t WORD;
-typedef uint32_t DWORD;
-typedef uint64_t QWORD;
-#ifndef __OBJC__
-typedef int BOOL;
-#endif
-#ifndef TRUE
-#define TRUE 1
-#define FALSE 0
-#endif
-#define LOBYTE(a) (BYTE)(a)
-#define HIBYTE(a) (BYTE)((a) >> 8)
-#define LOWORD(a) (WORD)(a)
-#define HIWORD(a) (WORD)((a) >> 16)
-#define MAKEWORD(a, b) (WORD)(((a)&0xff) | ((b) << 8))
-#define MAKELONG(a, b) (DWORD)(((a)&0xffff) | ((b) << 16))
-#endif
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#define BASSVERSION 0x204 // API version
-#define BASSVERSIONTEXT "2.4"
-
-#ifndef BASSDEF
-#define BASSDEF(f) WINAPI f
-#else
-#define NOBASSOVERLOADS
-#endif
-
-typedef DWORD HMUSIC; // MOD music handle
-typedef DWORD HSAMPLE; // sample handle
-typedef DWORD HCHANNEL; // playing sample's channel handle
-typedef DWORD HSTREAM; // sample stream handle
-typedef DWORD HRECORD; // recording handle
-typedef DWORD HSYNC; // synchronizer handle
-typedef DWORD HDSP; // DSP handle
-typedef DWORD HFX; // DX8 effect handle
-typedef DWORD HPLUGIN; // Plugin handle
-
-// Error codes returned by BASS_ErrorGetCode
-#define BASS_OK 0 // all is OK
-#define BASS_ERROR_MEM 1 // memory error
-#define BASS_ERROR_FILEOPEN 2 // can't open the file
-#define BASS_ERROR_DRIVER 3 // can't find a free/valid driver
-#define BASS_ERROR_BUFLOST 4 // the sample buffer was lost
-#define BASS_ERROR_HANDLE 5 // invalid handle
-#define BASS_ERROR_FORMAT 6 // unsupported sample format
-#define BASS_ERROR_POSITION 7 // invalid position
-#define BASS_ERROR_INIT 8 // BASS_Init has not been successfully called
-#define BASS_ERROR_START 9 // BASS_Start has not been successfully called
-#define BASS_ERROR_SSL 10 // SSL/HTTPS support isn't available
-#define BASS_ERROR_ALREADY 14 // already initialized/paused/whatever
-#define BASS_ERROR_NOCHAN 18 // can't get a free channel
-#define BASS_ERROR_ILLTYPE 19 // an illegal type was specified
-#define BASS_ERROR_ILLPARAM 20 // an illegal parameter was specified
-#define BASS_ERROR_NO3D 21 // no 3D support
-#define BASS_ERROR_NOEAX 22 // no EAX support
-#define BASS_ERROR_DEVICE 23 // illegal device number
-#define BASS_ERROR_NOPLAY 24 // not playing
-#define BASS_ERROR_FREQ 25 // illegal sample rate
-#define BASS_ERROR_NOTFILE 27 // the stream is not a file stream
-#define BASS_ERROR_NOHW 29 // no hardware voices available
-#define BASS_ERROR_EMPTY 31 // the MOD music has no sequence data
-#define BASS_ERROR_NONET 32 // no internet connection could be opened
-#define BASS_ERROR_CREATE 33 // couldn't create the file
-#define BASS_ERROR_NOFX 34 // effects are not available
-#define BASS_ERROR_NOTAVAIL 37 // requested data/action is not available
-#define BASS_ERROR_DECODE 38 // the channel is/isn't a "decoding channel"
-#define BASS_ERROR_DX 39 // a sufficient DirectX version is not installed
-#define BASS_ERROR_TIMEOUT 40 // connection timedout
-#define BASS_ERROR_FILEFORM 41 // unsupported file format
-#define BASS_ERROR_SPEAKER 42 // unavailable speaker
-#define BASS_ERROR_VERSION 43 // invalid BASS version (used by add-ons)
-#define BASS_ERROR_CODEC 44 // codec is not available/supported
-#define BASS_ERROR_ENDED 45 // the channel/file has ended
-#define BASS_ERROR_BUSY 46 // the device is busy
-#define BASS_ERROR_UNKNOWN -1 // some other mystery problem
-
-// BASS_SetConfig options
-#define BASS_CONFIG_BUFFER 0
-#define BASS_CONFIG_UPDATEPERIOD 1
-#define BASS_CONFIG_GVOL_SAMPLE 4
-#define BASS_CONFIG_GVOL_STREAM 5
-#define BASS_CONFIG_GVOL_MUSIC 6
-#define BASS_CONFIG_CURVE_VOL 7
-#define BASS_CONFIG_CURVE_PAN 8
-#define BASS_CONFIG_FLOATDSP 9
-#define BASS_CONFIG_3DALGORITHM 10
-#define BASS_CONFIG_NET_TIMEOUT 11
-#define BASS_CONFIG_NET_BUFFER 12
-#define BASS_CONFIG_PAUSE_NOPLAY 13
-#define BASS_CONFIG_NET_PREBUF 15
-#define BASS_CONFIG_NET_PASSIVE 18
-#define BASS_CONFIG_REC_BUFFER 19
-#define BASS_CONFIG_NET_PLAYLIST 21
-#define BASS_CONFIG_MUSIC_VIRTUAL 22
-#define BASS_CONFIG_VERIFY 23
-#define BASS_CONFIG_UPDATETHREADS 24
-#define BASS_CONFIG_DEV_BUFFER 27
-#define BASS_CONFIG_REC_LOOPBACK 28
-#define BASS_CONFIG_VISTA_TRUEPOS 30
-#define BASS_CONFIG_IOS_MIXAUDIO 34
-#define BASS_CONFIG_DEV_DEFAULT 36
-#define BASS_CONFIG_NET_READTIMEOUT 37
-#define BASS_CONFIG_VISTA_SPEAKERS 38
-#define BASS_CONFIG_IOS_SPEAKER 39
-#define BASS_CONFIG_MF_DISABLE 40
-#define BASS_CONFIG_HANDLES 41
-#define BASS_CONFIG_UNICODE 42
-#define BASS_CONFIG_SRC 43
-#define BASS_CONFIG_SRC_SAMPLE 44
-#define BASS_CONFIG_ASYNCFILE_BUFFER 45
-#define BASS_CONFIG_OGG_PRESCAN 47
-#define BASS_CONFIG_MF_VIDEO 48
-#define BASS_CONFIG_AIRPLAY 49
-#define BASS_CONFIG_DEV_NONSTOP 50
-#define BASS_CONFIG_IOS_NOCATEGORY 51
-#define BASS_CONFIG_VERIFY_NET 52
-#define BASS_CONFIG_DEV_PERIOD 53
-#define BASS_CONFIG_FLOAT 54
-#define BASS_CONFIG_NET_SEEK 56
-#define BASS_CONFIG_AM_DISABLE 58
-#define BASS_CONFIG_NET_PLAYLIST_DEPTH 59
-#define BASS_CONFIG_NET_PREBUF_WAIT 60
-#define BASS_CONFIG_WASAPI_PERSIST 65
-#define BASS_CONFIG_REC_WASAPI 66
-
-// BASS_SetConfigPtr options
-#define BASS_CONFIG_NET_AGENT 16
-#define BASS_CONFIG_NET_PROXY 17
-#define BASS_CONFIG_IOS_NOTIFY 46
-#define BASS_CONFIG_LIBSSL 64
-
-// BASS_Init flags
-#define BASS_DEVICE_8BITS 1 // 8 bit
-#define BASS_DEVICE_MONO 2 // mono
-#define BASS_DEVICE_3D 4 // enable 3D functionality
-#define BASS_DEVICE_16BITS 8 // limit output to 16 bit
-#define BASS_DEVICE_LATENCY 0x100 // calculate device latency (BASS_INFO struct)
-#define BASS_DEVICE_CPSPEAKERS \
- 0x400 // detect speakers via Windows control panel
-#define BASS_DEVICE_SPEAKERS 0x800 // force enabling of speaker assignment
-#define BASS_DEVICE_NOSPEAKER 0x1000 // ignore speaker arrangement
-#define BASS_DEVICE_DMIX 0x2000 // use ALSA "dmix" plugin
-#define BASS_DEVICE_FREQ 0x4000 // set device sample rate
-#define BASS_DEVICE_STEREO 0x8000 // limit output to stereo
-#define BASS_DEVICE_HOG 0x10000 // hog/exclusive mode
-#define BASS_DEVICE_AUDIOTRACK 0x20000 // use AudioTrack output
-#define BASS_DEVICE_DSOUND 0x40000 // use DirectSound output
-
-// DirectSound interfaces (for use with BASS_GetDSoundObject)
-#define BASS_OBJECT_DS 1 // IDirectSound
-#define BASS_OBJECT_DS3DL 2 // IDirectSound3DListener
-
-// Device info structure
-typedef struct {
-#if defined(_WIN32_WCE) || \
- (WINAPI_FAMILY && WINAPI_FAMILY != WINAPI_FAMILY_DESKTOP_APP)
- const wchar_t *name; // description
- const wchar_t *driver; // driver
-#else
- const char *name; // description
- const char *driver; // driver
-#endif
- DWORD flags;
-} BASS_DEVICEINFO;
-
-// BASS_DEVICEINFO flags
-#define BASS_DEVICE_ENABLED 1
-#define BASS_DEVICE_DEFAULT 2
-#define BASS_DEVICE_INIT 4
-#define BASS_DEVICE_LOOPBACK 8
-
-#define BASS_DEVICE_TYPE_MASK 0xff000000
-#define BASS_DEVICE_TYPE_NETWORK 0x01000000
-#define BASS_DEVICE_TYPE_SPEAKERS 0x02000000
-#define BASS_DEVICE_TYPE_LINE 0x03000000
-#define BASS_DEVICE_TYPE_HEADPHONES 0x04000000
-#define BASS_DEVICE_TYPE_MICROPHONE 0x05000000
-#define BASS_DEVICE_TYPE_HEADSET 0x06000000
-#define BASS_DEVICE_TYPE_HANDSET 0x07000000
-#define BASS_DEVICE_TYPE_DIGITAL 0x08000000
-#define BASS_DEVICE_TYPE_SPDIF 0x09000000
-#define BASS_DEVICE_TYPE_HDMI 0x0a000000
-#define BASS_DEVICE_TYPE_DISPLAYPORT 0x40000000
-
-// BASS_GetDeviceInfo flags
-#define BASS_DEVICES_AIRPLAY 0x1000000
-
-typedef struct {
- DWORD flags; // device capabilities (DSCAPS_xxx flags)
- DWORD hwsize; // size of total device hardware memory
- DWORD hwfree; // size of free device hardware memory
- DWORD freesam; // number of free sample slots in the hardware
- DWORD free3d; // number of free 3D sample slots in the hardware
- DWORD minrate; // min sample rate supported by the hardware
- DWORD maxrate; // max sample rate supported by the hardware
- BOOL
- eax; // device supports EAX? (always FALSE if BASS_DEVICE_3D was not used)
- DWORD minbuf; // recommended minimum buffer length in ms (requires
- // BASS_DEVICE_LATENCY)
- DWORD dsver; // DirectSound version
- DWORD latency; // delay (in ms) before start of playback (requires
- // BASS_DEVICE_LATENCY)
- DWORD initflags; // BASS_Init "flags" parameter
- DWORD speakers; // number of speakers available
- DWORD freq; // current output rate
-} BASS_INFO;
-
-// BASS_INFO flags (from DSOUND.H)
-#define DSCAPS_CONTINUOUSRATE \
- 0x00000010 // supports all sample rates between min/maxrate
-#define DSCAPS_EMULDRIVER \
- 0x00000020 // device does NOT have hardware DirectSound support
-#define DSCAPS_CERTIFIED \
- 0x00000040 // device driver has been certified by Microsoft
-#define DSCAPS_SECONDARYMONO 0x00000100 // mono
-#define DSCAPS_SECONDARYSTEREO 0x00000200 // stereo
-#define DSCAPS_SECONDARY8BIT 0x00000400 // 8 bit
-#define DSCAPS_SECONDARY16BIT 0x00000800 // 16 bit
-
-// Recording device info structure
-typedef struct {
- DWORD flags; // device capabilities (DSCCAPS_xxx flags)
- DWORD formats; // supported standard formats (WAVE_FORMAT_xxx flags)
- DWORD inputs; // number of inputs
- BOOL singlein; // TRUE = only 1 input can be set at a time
- DWORD freq; // current input rate
-} BASS_RECORDINFO;
-
-// BASS_RECORDINFO flags (from DSOUND.H)
-#define DSCCAPS_EMULDRIVER \
- DSCAPS_EMULDRIVER // device does NOT have hardware DirectSound recording
- // support
-#define DSCCAPS_CERTIFIED \
- DSCAPS_CERTIFIED // device driver has been certified by Microsoft
-
-// defines for formats field of BASS_RECORDINFO (from MMSYSTEM.H)
-#ifndef WAVE_FORMAT_1M08
-#define WAVE_FORMAT_1M08 0x00000001 /* 11.025 kHz, Mono, 8-bit */
-#define WAVE_FORMAT_1S08 0x00000002 /* 11.025 kHz, Stereo, 8-bit */
-#define WAVE_FORMAT_1M16 0x00000004 /* 11.025 kHz, Mono, 16-bit */
-#define WAVE_FORMAT_1S16 0x00000008 /* 11.025 kHz, Stereo, 16-bit */
-#define WAVE_FORMAT_2M08 0x00000010 /* 22.05 kHz, Mono, 8-bit */
-#define WAVE_FORMAT_2S08 0x00000020 /* 22.05 kHz, Stereo, 8-bit */
-#define WAVE_FORMAT_2M16 0x00000040 /* 22.05 kHz, Mono, 16-bit */
-#define WAVE_FORMAT_2S16 0x00000080 /* 22.05 kHz, Stereo, 16-bit */
-#define WAVE_FORMAT_4M08 0x00000100 /* 44.1 kHz, Mono, 8-bit */
-#define WAVE_FORMAT_4S08 0x00000200 /* 44.1 kHz, Stereo, 8-bit */
-#define WAVE_FORMAT_4M16 0x00000400 /* 44.1 kHz, Mono, 16-bit */
-#define WAVE_FORMAT_4S16 0x00000800 /* 44.1 kHz, Stereo, 16-bit */
-#endif
-
-// Sample info structure
-typedef struct {
- DWORD freq; // default playback rate
- float volume; // default volume (0-1)
- float pan; // default pan (-1=left, 0=middle, 1=right)
- DWORD flags; // BASS_SAMPLE_xxx flags
- DWORD length; // length (in bytes)
- DWORD max; // maximum simultaneous playbacks
- DWORD origres; // original resolution
- DWORD chans; // number of channels
- DWORD mingap; // minimum gap (ms) between creating channels
- DWORD mode3d; // BASS_3DMODE_xxx mode
- float mindist; // minimum distance
- float maxdist; // maximum distance
- DWORD iangle; // angle of inside projection cone
- DWORD oangle; // angle of outside projection cone
- float outvol; // delta-volume outside the projection cone
- DWORD vam; // voice allocation/management flags (BASS_VAM_xxx)
- DWORD priority; // priority (0=lowest, 0xffffffff=highest)
-} BASS_SAMPLE;
-
-#define BASS_SAMPLE_8BITS 1 // 8 bit
-#define BASS_SAMPLE_FLOAT 256 // 32 bit floating-point
-#define BASS_SAMPLE_MONO 2 // mono
-#define BASS_SAMPLE_LOOP 4 // looped
-#define BASS_SAMPLE_3D 8 // 3D functionality
-#define BASS_SAMPLE_SOFTWARE 16 // not using hardware mixing
-#define BASS_SAMPLE_MUTEMAX 32 // mute at max distance (3D only)
-#define BASS_SAMPLE_VAM 64 // DX7 voice allocation & management
-#define BASS_SAMPLE_FX 128 // old implementation of DX8 effects
-#define BASS_SAMPLE_OVER_VOL 0x10000 // override lowest volume
-#define BASS_SAMPLE_OVER_POS 0x20000 // override longest playing
-#define BASS_SAMPLE_OVER_DIST \
- 0x30000 // override furthest from listener (3D only)
-
-#define BASS_STREAM_PRESCAN \
- 0x20000 // enable pin-point seeking/length (MP3/MP2/MP1)
-#define BASS_STREAM_AUTOFREE \
- 0x40000 // automatically free the stream when it stop/ends
-#define BASS_STREAM_RESTRATE \
- 0x80000 // restrict the download rate of internet file streams
-#define BASS_STREAM_BLOCK \
- 0x100000 // download/play internet file stream in small blocks
-#define BASS_STREAM_DECODE \
- 0x200000 // don't play the stream, only decode (BASS_ChannelGetData)
-#define BASS_STREAM_STATUS \
- 0x800000 // give server status info (HTTP/ICY tags) in DOWNLOADPROC
-
-#define BASS_MP3_IGNOREDELAY \
- 0x200 // ignore LAME/Xing/VBRI/iTunes delay & padding info
-#define BASS_MP3_SETPOS BASS_STREAM_PRESCAN
-
-#define BASS_MUSIC_FLOAT BASS_SAMPLE_FLOAT
-#define BASS_MUSIC_MONO BASS_SAMPLE_MONO
-#define BASS_MUSIC_LOOP BASS_SAMPLE_LOOP
-#define BASS_MUSIC_3D BASS_SAMPLE_3D
-#define BASS_MUSIC_FX BASS_SAMPLE_FX
-#define BASS_MUSIC_AUTOFREE BASS_STREAM_AUTOFREE
-#define BASS_MUSIC_DECODE BASS_STREAM_DECODE
-#define BASS_MUSIC_PRESCAN BASS_STREAM_PRESCAN // calculate playback length
-#define BASS_MUSIC_CALCLEN BASS_MUSIC_PRESCAN
-#define BASS_MUSIC_RAMP 0x200 // normal ramping
-#define BASS_MUSIC_RAMPS 0x400 // sensitive ramping
-#define BASS_MUSIC_SURROUND 0x800 // surround sound
-#define BASS_MUSIC_SURROUND2 0x1000 // surround sound (mode 2)
-#define BASS_MUSIC_FT2PAN 0x2000 // apply FastTracker 2 panning to XM files
-#define BASS_MUSIC_FT2MOD 0x2000 // play .MOD as FastTracker 2 does
-#define BASS_MUSIC_PT1MOD 0x4000 // play .MOD as ProTracker 1 does
-#define BASS_MUSIC_NONINTER 0x10000 // non-interpolated sample mixing
-#define BASS_MUSIC_SINCINTER 0x800000 // sinc interpolated sample mixing
-#define BASS_MUSIC_POSRESET 0x8000 // stop all notes when moving position
-#define BASS_MUSIC_POSRESETEX \
- 0x400000 // stop all notes and reset bmp/etc when moving position
-#define BASS_MUSIC_STOPBACK 0x80000 // stop the music on a backwards jump effect
-#define BASS_MUSIC_NOSAMPLE 0x100000 // don't load the samples
-
-// Speaker assignment flags
-#define BASS_SPEAKER_FRONT 0x1000000 // front speakers
-#define BASS_SPEAKER_REAR 0x2000000 // rear/side speakers
-#define BASS_SPEAKER_CENLFE 0x3000000 // center & LFE speakers (5.1)
-#define BASS_SPEAKER_REAR2 0x4000000 // rear center speakers (7.1)
-#define BASS_SPEAKER_N(n) ((n) << 24) // n'th pair of speakers (max 15)
-#define BASS_SPEAKER_LEFT 0x10000000 // modifier: left
-#define BASS_SPEAKER_RIGHT 0x20000000 // modifier: right
-#define BASS_SPEAKER_FRONTLEFT BASS_SPEAKER_FRONT | BASS_SPEAKER_LEFT
-#define BASS_SPEAKER_FRONTRIGHT BASS_SPEAKER_FRONT | BASS_SPEAKER_RIGHT
-#define BASS_SPEAKER_REARLEFT BASS_SPEAKER_REAR | BASS_SPEAKER_LEFT
-#define BASS_SPEAKER_REARRIGHT BASS_SPEAKER_REAR | BASS_SPEAKER_RIGHT
-#define BASS_SPEAKER_CENTER BASS_SPEAKER_CENLFE | BASS_SPEAKER_LEFT
-#define BASS_SPEAKER_LFE BASS_SPEAKER_CENLFE | BASS_SPEAKER_RIGHT
-#define BASS_SPEAKER_REAR2LEFT BASS_SPEAKER_REAR2 | BASS_SPEAKER_LEFT
-#define BASS_SPEAKER_REAR2RIGHT BASS_SPEAKER_REAR2 | BASS_SPEAKER_RIGHT
-
-#define BASS_ASYNCFILE 0x40000000
-#define BASS_UNICODE 0x80000000
-
-#define BASS_RECORD_PAUSE 0x8000 // start recording paused
-#define BASS_RECORD_ECHOCANCEL 0x2000
-#define BASS_RECORD_AGC 0x4000
-
-// DX7 voice allocation & management flags
-#define BASS_VAM_HARDWARE 1
-#define BASS_VAM_SOFTWARE 2
-#define BASS_VAM_TERM_TIME 4
-#define BASS_VAM_TERM_DIST 8
-#define BASS_VAM_TERM_PRIO 16
-
-// Channel info structure
-typedef struct {
- DWORD freq; // default playback rate
- DWORD chans; // channels
- DWORD flags; // BASS_SAMPLE/STREAM/MUSIC/SPEAKER flags
- DWORD ctype; // type of channel
- DWORD origres; // original resolution
- HPLUGIN plugin; // plugin
- HSAMPLE sample; // sample
- const char *filename; // filename
-} BASS_CHANNELINFO;
-
-#define BASS_ORIGRES_FLOAT 0x10000
-
-// BASS_CHANNELINFO types
-#define BASS_CTYPE_SAMPLE 1
-#define BASS_CTYPE_RECORD 2
-#define BASS_CTYPE_STREAM 0x10000
-#define BASS_CTYPE_STREAM_OGG 0x10002
-#define BASS_CTYPE_STREAM_MP1 0x10003
-#define BASS_CTYPE_STREAM_MP2 0x10004
-#define BASS_CTYPE_STREAM_MP3 0x10005
-#define BASS_CTYPE_STREAM_AIFF 0x10006
-#define BASS_CTYPE_STREAM_CA 0x10007
-#define BASS_CTYPE_STREAM_MF 0x10008
-#define BASS_CTYPE_STREAM_AM 0x10009
-#define BASS_CTYPE_STREAM_DUMMY 0x18000
-#define BASS_CTYPE_STREAM_DEVICE 0x18001
-#define BASS_CTYPE_STREAM_WAV 0x40000 // WAVE flag, LOWORD=codec
-#define BASS_CTYPE_STREAM_WAV_PCM 0x50001
-#define BASS_CTYPE_STREAM_WAV_FLOAT 0x50003
-#define BASS_CTYPE_MUSIC_MOD 0x20000
-#define BASS_CTYPE_MUSIC_MTM 0x20001
-#define BASS_CTYPE_MUSIC_S3M 0x20002
-#define BASS_CTYPE_MUSIC_XM 0x20003
-#define BASS_CTYPE_MUSIC_IT 0x20004
-#define BASS_CTYPE_MUSIC_MO3 0x00100 // MO3 flag
-
-typedef struct {
- DWORD ctype; // channel type
-#if defined(_WIN32_WCE) || \
- (WINAPI_FAMILY && WINAPI_FAMILY != WINAPI_FAMILY_DESKTOP_APP)
- const wchar_t *name; // format description
- const wchar_t *exts; // file extension filter (*.ext1;*.ext2;etc...)
-#else
- const char *name; // format description
- const char *exts; // file extension filter (*.ext1;*.ext2;etc...)
-#endif
-} BASS_PLUGINFORM;
-
-typedef struct {
- DWORD version; // version (same form as BASS_GetVersion)
- DWORD formatc; // number of formats
- const BASS_PLUGINFORM *formats; // the array of formats
-} BASS_PLUGININFO;
-
-// 3D vector (for 3D positions/velocities/orientations)
-typedef struct BASS_3DVECTOR {
-#ifdef __cplusplus
- BASS_3DVECTOR(){};
- BASS_3DVECTOR(float _x, float _y, float _z) : x(_x), y(_y), z(_z){};
-#endif
- float x; // +=right, -=left
- float y; // +=up, -=down
- float z; // +=front, -=behind
-} BASS_3DVECTOR;
-
-// 3D channel modes
-#define BASS_3DMODE_NORMAL 0 // normal 3D processing
-#define BASS_3DMODE_RELATIVE 1 // position is relative to the listener
-#define BASS_3DMODE_OFF 2 // no 3D processing
-
-// software 3D mixing algorithms (used with BASS_CONFIG_3DALGORITHM)
-#define BASS_3DALG_DEFAULT 0
-#define BASS_3DALG_OFF 1
-#define BASS_3DALG_FULL 2
-#define BASS_3DALG_LIGHT 3
-
-// EAX environments, use with BASS_SetEAXParameters
-enum {
- EAX_ENVIRONMENT_GENERIC,
- EAX_ENVIRONMENT_PADDEDCELL,
- EAX_ENVIRONMENT_ROOM,
- EAX_ENVIRONMENT_BATHROOM,
- EAX_ENVIRONMENT_LIVINGROOM,
- EAX_ENVIRONMENT_STONEROOM,
- EAX_ENVIRONMENT_AUDITORIUM,
- EAX_ENVIRONMENT_CONCERTHALL,
- EAX_ENVIRONMENT_CAVE,
- EAX_ENVIRONMENT_ARENA,
- EAX_ENVIRONMENT_HANGAR,
- EAX_ENVIRONMENT_CARPETEDHALLWAY,
- EAX_ENVIRONMENT_HALLWAY,
- EAX_ENVIRONMENT_STONECORRIDOR,
- EAX_ENVIRONMENT_ALLEY,
- EAX_ENVIRONMENT_FOREST,
- EAX_ENVIRONMENT_CITY,
- EAX_ENVIRONMENT_MOUNTAINS,
- EAX_ENVIRONMENT_QUARRY,
- EAX_ENVIRONMENT_PLAIN,
- EAX_ENVIRONMENT_PARKINGLOT,
- EAX_ENVIRONMENT_SEWERPIPE,
- EAX_ENVIRONMENT_UNDERWATER,
- EAX_ENVIRONMENT_DRUGGED,
- EAX_ENVIRONMENT_DIZZY,
- EAX_ENVIRONMENT_PSYCHOTIC,
-
- EAX_ENVIRONMENT_COUNT // total number of environments
-};
-
-// EAX presets, usage: BASS_SetEAXParameters(EAX_PRESET_xxx)
-#define EAX_PRESET_GENERIC EAX_ENVIRONMENT_GENERIC, 0.5F, 1.493F, 0.5F
-#define EAX_PRESET_PADDEDCELL EAX_ENVIRONMENT_PADDEDCELL, 0.25F, 0.1F, 0.0F
-#define EAX_PRESET_ROOM EAX_ENVIRONMENT_ROOM, 0.417F, 0.4F, 0.666F
-#define EAX_PRESET_BATHROOM EAX_ENVIRONMENT_BATHROOM, 0.653F, 1.499F, 0.166F
-#define EAX_PRESET_LIVINGROOM EAX_ENVIRONMENT_LIVINGROOM, 0.208F, 0.478F, 0.0F
-#define EAX_PRESET_STONEROOM EAX_ENVIRONMENT_STONEROOM, 0.5F, 2.309F, 0.888F
-#define EAX_PRESET_AUDITORIUM EAX_ENVIRONMENT_AUDITORIUM, 0.403F, 4.279F, 0.5F
-#define EAX_PRESET_CONCERTHALL EAX_ENVIRONMENT_CONCERTHALL, 0.5F, 3.961F, 0.5F
-#define EAX_PRESET_CAVE EAX_ENVIRONMENT_CAVE, 0.5F, 2.886F, 1.304F
-#define EAX_PRESET_ARENA EAX_ENVIRONMENT_ARENA, 0.361F, 7.284F, 0.332F
-#define EAX_PRESET_HANGAR EAX_ENVIRONMENT_HANGAR, 0.5F, 10.0F, 0.3F
-#define EAX_PRESET_CARPETEDHALLWAY \
- EAX_ENVIRONMENT_CARPETEDHALLWAY, 0.153F, 0.259F, 2.0F
-#define EAX_PRESET_HALLWAY EAX_ENVIRONMENT_HALLWAY, 0.361F, 1.493F, 0.0F
-#define EAX_PRESET_STONECORRIDOR \
- EAX_ENVIRONMENT_STONECORRIDOR, 0.444F, 2.697F, 0.638F
-#define EAX_PRESET_ALLEY EAX_ENVIRONMENT_ALLEY, 0.25F, 1.752F, 0.776F
-#define EAX_PRESET_FOREST EAX_ENVIRONMENT_FOREST, 0.111F, 3.145F, 0.472F
-#define EAX_PRESET_CITY EAX_ENVIRONMENT_CITY, 0.111F, 2.767F, 0.224F
-#define EAX_PRESET_MOUNTAINS EAX_ENVIRONMENT_MOUNTAINS, 0.194F, 7.841F, 0.472F
-#define EAX_PRESET_QUARRY EAX_ENVIRONMENT_QUARRY, 1.0F, 1.499F, 0.5F
-#define EAX_PRESET_PLAIN EAX_ENVIRONMENT_PLAIN, 0.097F, 2.767F, 0.224F
-#define EAX_PRESET_PARKINGLOT EAX_ENVIRONMENT_PARKINGLOT, 0.208F, 1.652F, 1.5F
-#define EAX_PRESET_SEWERPIPE EAX_ENVIRONMENT_SEWERPIPE, 0.652F, 2.886F, 0.25F
-#define EAX_PRESET_UNDERWATER EAX_ENVIRONMENT_UNDERWATER, 1.0F, 1.499F, 0.0F
-#define EAX_PRESET_DRUGGED EAX_ENVIRONMENT_DRUGGED, 0.875F, 8.392F, 1.388F
-#define EAX_PRESET_DIZZY EAX_ENVIRONMENT_DIZZY, 0.139F, 17.234F, 0.666F
-#define EAX_PRESET_PSYCHOTIC EAX_ENVIRONMENT_PSYCHOTIC, 0.486F, 7.563F, 0.806F
-
-typedef DWORD(CALLBACK STREAMPROC)(HSTREAM handle, void *buffer, DWORD length,
- void *user);
-/* User stream callback function. NOTE: A stream function should obviously be as
-quick as possible, other streams (and MOD musics) can't be mixed until it's
-finished. handle : The stream that needs writing buffer : Buffer to write the
-samples in length : Number of bytes to write user : The 'user' parameter value
-given when calling BASS_StreamCreate RETURN : Number of bytes written. Set the
-BASS_STREAMPROC_END flag to end the stream. */
-
-#define BASS_STREAMPROC_END 0x80000000 // end of user stream flag
-
-// special STREAMPROCs
-#define STREAMPROC_DUMMY (STREAMPROC *)0 // "dummy" stream
-#define STREAMPROC_PUSH (STREAMPROC *)-1 // push stream
-#define STREAMPROC_DEVICE (STREAMPROC *)-2 // device mix stream
-#define STREAMPROC_DEVICE_3D (STREAMPROC *)-3 // device 3D mix stream
-
-// BASS_StreamCreateFileUser file systems
-#define STREAMFILE_NOBUFFER 0
-#define STREAMFILE_BUFFER 1
-#define STREAMFILE_BUFFERPUSH 2
-
-// User file stream callback functions
-typedef void(CALLBACK FILECLOSEPROC)(void *user);
-typedef QWORD(CALLBACK FILELENPROC)(void *user);
-typedef DWORD(CALLBACK FILEREADPROC)(void *buffer, DWORD length, void *user);
-typedef BOOL(CALLBACK FILESEEKPROC)(QWORD offset, void *user);
-
-typedef struct {
- FILECLOSEPROC *close;
- FILELENPROC *length;
- FILEREADPROC *read;
- FILESEEKPROC *seek;
-} BASS_FILEPROCS;
-
-// BASS_StreamPutFileData options
-#define BASS_FILEDATA_END 0 // end & close the file
-
-// BASS_StreamGetFilePosition modes
-#define BASS_FILEPOS_CURRENT 0
-#define BASS_FILEPOS_DECODE BASS_FILEPOS_CURRENT
-#define BASS_FILEPOS_DOWNLOAD 1
-#define BASS_FILEPOS_END 2
-#define BASS_FILEPOS_START 3
-#define BASS_FILEPOS_CONNECTED 4
-#define BASS_FILEPOS_BUFFER 5
-#define BASS_FILEPOS_SOCKET 6
-#define BASS_FILEPOS_ASYNCBUF 7
-#define BASS_FILEPOS_SIZE 8
-#define BASS_FILEPOS_BUFFERING 9
-
-typedef void(CALLBACK DOWNLOADPROC)(const void *buffer, DWORD length,
- void *user);
-/* Internet stream download callback function.
-buffer : Buffer containing the downloaded data... NULL=end of download
-length : Number of bytes in the buffer
-user : The 'user' parameter value given when calling BASS_StreamCreateURL */
-
-// BASS_ChannelSetSync types
-#define BASS_SYNC_POS 0
-#define BASS_SYNC_END 2
-#define BASS_SYNC_META 4
-#define BASS_SYNC_SLIDE 5
-#define BASS_SYNC_STALL 6
-#define BASS_SYNC_DOWNLOAD 7
-#define BASS_SYNC_FREE 8
-#define BASS_SYNC_SETPOS 11
-#define BASS_SYNC_MUSICPOS 10
-#define BASS_SYNC_MUSICINST 1
-#define BASS_SYNC_MUSICFX 3
-#define BASS_SYNC_OGG_CHANGE 12
-#define BASS_SYNC_DEV_FAIL 14
-#define BASS_SYNC_DEV_FORMAT 15
-#define BASS_SYNC_MIXTIME 0x40000000 // flag: sync at mixtime, else at playtime
-#define BASS_SYNC_ONETIME 0x80000000 // flag: sync only once, else continuously
-
-typedef void(CALLBACK SYNCPROC)(HSYNC handle, DWORD channel, DWORD data,
- void *user);
-/* Sync callback function. NOTE: a sync callback function should be very
-quick as other syncs can't be processed until it has finished. If the sync
-is a "mixtime" sync, then other streams and MOD musics can't be mixed until
-it's finished either.
-handle : The sync that has occured
-channel: Channel that the sync occured in
-data : Additional data associated with the sync's occurance
-user : The 'user' parameter given when calling BASS_ChannelSetSync */
-
-typedef void(CALLBACK DSPPROC)(HDSP handle, DWORD channel, void *buffer,
- DWORD length, void *user);
-/* DSP callback function. NOTE: A DSP function should obviously be as quick as
-possible... other DSP functions, streams and MOD musics can not be processed
-until it's finished.
-handle : The DSP handle
-channel: Channel that the DSP is being applied to
-buffer : Buffer to apply the DSP to
-length : Number of bytes in the buffer
-user : The 'user' parameter given when calling BASS_ChannelSetDSP */
-
-typedef BOOL(CALLBACK RECORDPROC)(HRECORD handle, const void *buffer,
- DWORD length, void *user);
-/* Recording callback function.
-handle : The recording handle
-buffer : Buffer containing the recorded sample data
-length : Number of bytes
-user : The 'user' parameter value given when calling BASS_RecordStart
-RETURN : TRUE = continue recording, FALSE = stop */
-
-// BASS_ChannelIsActive return values
-#define BASS_ACTIVE_STOPPED 0
-#define BASS_ACTIVE_PLAYING 1
-#define BASS_ACTIVE_STALLED 2
-#define BASS_ACTIVE_PAUSED 3
-#define BASS_ACTIVE_PAUSED_DEVICE 4
-
-// Channel attributes
-#define BASS_ATTRIB_FREQ 1
-#define BASS_ATTRIB_VOL 2
-#define BASS_ATTRIB_PAN 3
-#define BASS_ATTRIB_EAXMIX 4
-#define BASS_ATTRIB_NOBUFFER 5
-#define BASS_ATTRIB_VBR 6
-#define BASS_ATTRIB_CPU 7
-#define BASS_ATTRIB_SRC 8
-#define BASS_ATTRIB_NET_RESUME 9
-#define BASS_ATTRIB_SCANINFO 10
-#define BASS_ATTRIB_NORAMP 11
-#define BASS_ATTRIB_BITRATE 12
-#define BASS_ATTRIB_BUFFER 13
-#define BASS_ATTRIB_MUSIC_AMPLIFY 0x100
-#define BASS_ATTRIB_MUSIC_PANSEP 0x101
-#define BASS_ATTRIB_MUSIC_PSCALER 0x102
-#define BASS_ATTRIB_MUSIC_BPM 0x103
-#define BASS_ATTRIB_MUSIC_SPEED 0x104
-#define BASS_ATTRIB_MUSIC_VOL_GLOBAL 0x105
-#define BASS_ATTRIB_MUSIC_ACTIVE 0x106
-#define BASS_ATTRIB_MUSIC_VOL_CHAN 0x200 // + channel #
-#define BASS_ATTRIB_MUSIC_VOL_INST 0x300 // + instrument #
-
-// BASS_ChannelSlideAttribute flags
-#define BASS_SLIDE_LOG 0x1000000
-
-// BASS_ChannelGetData flags
-#define BASS_DATA_AVAILABLE 0 // query how much data is buffered
-#define BASS_DATA_FIXED 0x20000000 // flag: return 8.24 fixed-point data
-#define BASS_DATA_FLOAT 0x40000000 // flag: return floating-point sample data
-#define BASS_DATA_FFT256 0x80000000 // 256 sample FFT
-#define BASS_DATA_FFT512 0x80000001 // 512 FFT
-#define BASS_DATA_FFT1024 0x80000002 // 1024 FFT
-#define BASS_DATA_FFT2048 0x80000003 // 2048 FFT
-#define BASS_DATA_FFT4096 0x80000004 // 4096 FFT
-#define BASS_DATA_FFT8192 0x80000005 // 8192 FFT
-#define BASS_DATA_FFT16384 0x80000006 // 16384 FFT
-#define BASS_DATA_FFT32768 0x80000007 // 32768 FFT
-#define BASS_DATA_FFT_INDIVIDUAL \
- 0x10 // FFT flag: FFT for each channel, else all combined
-#define BASS_DATA_FFT_NOWINDOW 0x20 // FFT flag: no Hanning window
-#define BASS_DATA_FFT_REMOVEDC 0x40 // FFT flag: pre-remove DC bias
-#define BASS_DATA_FFT_COMPLEX 0x80 // FFT flag: return complex data
-#define BASS_DATA_FFT_NYQUIST 0x100 // FFT flag: return extra Nyquist value
-
-// BASS_ChannelGetLevelEx flags
-#define BASS_LEVEL_MONO 1
-#define BASS_LEVEL_STEREO 2
-#define BASS_LEVEL_RMS 4
-#define BASS_LEVEL_VOLPAN 8
-
-// BASS_ChannelGetTags types : what's returned
-#define BASS_TAG_ID3 0 // ID3v1 tags : TAG_ID3 structure
-#define BASS_TAG_ID3V2 1 // ID3v2 tags : variable length block
-#define BASS_TAG_OGG 2 // OGG comments : series of null-terminated UTF-8 strings
-#define BASS_TAG_HTTP 3 // HTTP headers : series of null-terminated ANSI strings
-#define BASS_TAG_ICY 4 // ICY headers : series of null-terminated ANSI strings
-#define BASS_TAG_META 5 // ICY metadata : ANSI string
-#define BASS_TAG_APE 6 // APE tags : series of null-terminated UTF-8 strings
-#define BASS_TAG_MP4 \
- 7 // MP4/iTunes metadata : series of null-terminated UTF-8 strings
-#define BASS_TAG_WMA 8 // WMA tags : series of null-terminated UTF-8 strings
-#define BASS_TAG_VENDOR 9 // OGG encoder : UTF-8 string
-#define BASS_TAG_LYRICS3 10 // Lyric3v2 tag : ASCII string
-#define BASS_TAG_CA_CODEC 11 // CoreAudio codec info : TAG_CA_CODEC structure
-#define BASS_TAG_MF \
- 13 // Media Foundation tags : series of null-terminated UTF-8 strings
-#define BASS_TAG_WAVEFORMAT 14 // WAVE format : WAVEFORMATEEX structure
-#define BASS_TAG_AM_MIME 15 // Android Media MIME type : ASCII string
-#define BASS_TAG_AM_NAME 16 // Android Media codec name : ASCII string
-#define BASS_TAG_RIFF_INFO \
- 0x100 // RIFF "INFO" tags : series of null-terminated ANSI strings
-#define BASS_TAG_RIFF_BEXT 0x101 // RIFF/BWF "bext" tags : TAG_BEXT structure
-#define BASS_TAG_RIFF_CART 0x102 // RIFF/BWF "cart" tags : TAG_CART structure
-#define BASS_TAG_RIFF_DISP 0x103 // RIFF "DISP" text tag : ANSI string
-#define BASS_TAG_RIFF_CUE 0x104 // RIFF "cue " chunk : TAG_CUE structure
-#define BASS_TAG_RIFF_SMPL 0x105 // RIFF "smpl" chunk : TAG_SMPL structure
-#define BASS_TAG_APE_BINARY \
- 0x1000 // + index #, binary APE tag : TAG_APE_BINARY structure
-#define BASS_TAG_MUSIC_NAME 0x10000 // MOD music name : ANSI string
-#define BASS_TAG_MUSIC_MESSAGE 0x10001 // MOD message : ANSI string
-#define BASS_TAG_MUSIC_ORDERS \
- 0x10002 // MOD order list : BYTE array of pattern numbers
-#define BASS_TAG_MUSIC_AUTH 0x10003 // MOD author : UTF-8 string
-#define BASS_TAG_MUSIC_INST \
- 0x10100 // + instrument #, MOD instrument name : ANSI string
-#define BASS_TAG_MUSIC_SAMPLE \
- 0x10300 // + sample #, MOD sample name : ANSI string
-
-// ID3v1 tag structure
-typedef struct {
- char id[3];
- char title[30];
- char artist[30];
- char album[30];
- char year[4];
- char comment[30];
- BYTE genre;
-} TAG_ID3;
-
-// Binary APE tag structure
-typedef struct {
- const char *key;
- const void *data;
- DWORD length;
-} TAG_APE_BINARY;
-
-// BWF "bext" tag structure
-#ifdef _MSC_VER
-#pragma warning(push)
-#pragma warning(disable : 4200)
-#endif
-#pragma pack(push, 1)
-typedef struct {
- char Description[256]; // description
- char Originator[32]; // name of the originator
- char OriginatorReference[32]; // reference of the originator
- char OriginationDate[10]; // date of creation (yyyy-mm-dd)
- char OriginationTime[8]; // time of creation (hh-mm-ss)
- QWORD TimeReference; // first sample count since midnight (little-endian)
- WORD Version; // BWF version (little-endian)
- BYTE UMID[64]; // SMPTE UMID
- BYTE Reserved[190];
-#if defined(__GNUC__) && __GNUC__ < 3
- char CodingHistory[0]; // history
-#elif 1 // change to 0 if compiler fails the following line
- char CodingHistory[]; // history
-#else
- char CodingHistory[1]; // history
-#endif
-} TAG_BEXT;
-#pragma pack(pop)
-
-// BWF "cart" tag structures
-typedef struct {
- DWORD dwUsage; // FOURCC timer usage ID
- DWORD dwValue; // timer value in samples from head
-} TAG_CART_TIMER;
-
-typedef struct {
- char Version[4]; // version of the data structure
- char Title[64]; // title of cart audio sequence
- char Artist[64]; // artist or creator name
- char CutID[64]; // cut number identification
- char ClientID[64]; // client identification
- char Category[64]; // category ID, PSA, NEWS, etc
- char Classification[64]; // classification or auxiliary key
- char OutCue[64]; // out cue text
- char StartDate[10]; // yyyy-mm-dd
- char StartTime[8]; // hh:mm:ss
- char EndDate[10]; // yyyy-mm-dd
- char EndTime[8]; // hh:mm:ss
- char ProducerAppID[64]; // name of vendor or application
- char ProducerAppVersion[64]; // version of producer application
- char UserDef[64]; // user defined text
- DWORD dwLevelReference; // sample value for 0 dB reference
- TAG_CART_TIMER PostTimer[8]; // 8 time markers after head
- char Reserved[276];
- char URL[1024]; // uniform resource locator
-#if defined(__GNUC__) && __GNUC__ < 3
- char TagText[0]; // free form text for scripts or tags
-#elif 1 // change to 0 if compiler fails the following line
- char TagText[]; // free form text for scripts or tags
-#else
- char TagText[1]; // free form text for scripts or tags
-#endif
-} TAG_CART;
-
-// RIFF "cue " tag structures
-typedef struct {
- DWORD dwName;
- DWORD dwPosition;
- DWORD fccChunk;
- DWORD dwChunkStart;
- DWORD dwBlockStart;
- DWORD dwSampleOffset;
-} TAG_CUE_POINT;
-
-typedef struct {
- DWORD dwCuePoints;
-#if defined(__GNUC__) && __GNUC__ < 3
- TAG_CUE_POINT CuePoints[0];
-#elif 1 // change to 0 if compiler fails the following line
- TAG_CUE_POINT CuePoints[];
-#else
- TAG_CUE_POINT CuePoints[1];
-#endif
-} TAG_CUE;
-
-// RIFF "smpl" tag structures
-typedef struct {
- DWORD dwIdentifier;
- DWORD dwType;
- DWORD dwStart;
- DWORD dwEnd;
- DWORD dwFraction;
- DWORD dwPlayCount;
-} TAG_SMPL_LOOP;
-
-typedef struct {
- DWORD dwManufacturer;
- DWORD dwProduct;
- DWORD dwSamplePeriod;
- DWORD dwMIDIUnityNote;
- DWORD dwMIDIPitchFraction;
- DWORD dwSMPTEFormat;
- DWORD dwSMPTEOffset;
- DWORD cSampleLoops;
- DWORD cbSamplerData;
-#if defined(__GNUC__) && __GNUC__ < 3
- TAG_SMPL_LOOP SampleLoops[0];
-#elif 1 // change to 0 if compiler fails the following line
- TAG_SMPL_LOOP SampleLoops[];
-#else
- TAG_SMPL_LOOP SampleLoops[1];
-#endif
-} TAG_SMPL;
-#ifdef _MSC_VER
-#pragma warning(pop)
-#endif
-
-// CoreAudio codec info structure
-typedef struct {
- DWORD ftype; // file format
- DWORD atype; // audio format
- const char *name; // description
-} TAG_CA_CODEC;
-
-#ifndef _WAVEFORMATEX_
-#define _WAVEFORMATEX_
-#pragma pack(push, 1)
-typedef struct tWAVEFORMATEX {
- WORD wFormatTag;
- WORD nChannels;
- DWORD nSamplesPerSec;
- DWORD nAvgBytesPerSec;
- WORD nBlockAlign;
- WORD wBitsPerSample;
- WORD cbSize;
-} WAVEFORMATEX, *PWAVEFORMATEX, *LPWAVEFORMATEX;
-typedef const WAVEFORMATEX *LPCWAVEFORMATEX;
-#pragma pack(pop)
-#endif
-
-// BASS_ChannelGetLength/GetPosition/SetPosition modes
-#define BASS_POS_BYTE 0 // byte position
-#define BASS_POS_MUSIC_ORDER 1 // order.row position, MAKELONG(order,row)
-#define BASS_POS_OGG 3 // OGG bitstream number
-#define BASS_POS_RESET 0x2000000 // flag: reset user file buffers
-#define BASS_POS_RELATIVE \
- 0x4000000 // flag: seek relative to the current position
-#define BASS_POS_INEXACT 0x8000000 // flag: allow seeking to inexact position
-#define BASS_POS_DECODE \
- 0x10000000 // flag: get the decoding (not playing) position
-#define BASS_POS_DECODETO \
- 0x20000000 // flag: decode to the position instead of seeking
-#define BASS_POS_SCAN 0x40000000 // flag: scan to the position
-
-// BASS_ChannelSetDevice/GetDevice option
-#define BASS_NODEVICE 0x20000
-
-// BASS_RecordSetInput flags
-#define BASS_INPUT_OFF 0x10000
-#define BASS_INPUT_ON 0x20000
-
-#define BASS_INPUT_TYPE_MASK 0xff000000
-#define BASS_INPUT_TYPE_UNDEF 0x00000000
-#define BASS_INPUT_TYPE_DIGITAL 0x01000000
-#define BASS_INPUT_TYPE_LINE 0x02000000
-#define BASS_INPUT_TYPE_MIC 0x03000000
-#define BASS_INPUT_TYPE_SYNTH 0x04000000
-#define BASS_INPUT_TYPE_CD 0x05000000
-#define BASS_INPUT_TYPE_PHONE 0x06000000
-#define BASS_INPUT_TYPE_SPEAKER 0x07000000
-#define BASS_INPUT_TYPE_WAVE 0x08000000
-#define BASS_INPUT_TYPE_AUX 0x09000000
-#define BASS_INPUT_TYPE_ANALOG 0x0a000000
-
-// BASS_ChannelSetFX effect types
-#define BASS_FX_DX8_CHORUS 0
-#define BASS_FX_DX8_COMPRESSOR 1
-#define BASS_FX_DX8_DISTORTION 2
-#define BASS_FX_DX8_ECHO 3
-#define BASS_FX_DX8_FLANGER 4
-#define BASS_FX_DX8_GARGLE 5
-#define BASS_FX_DX8_I3DL2REVERB 6
-#define BASS_FX_DX8_PARAMEQ 7
-#define BASS_FX_DX8_REVERB 8
-#define BASS_FX_VOLUME 9
-
-typedef struct {
- float fWetDryMix;
- float fDepth;
- float fFeedback;
- float fFrequency;
- DWORD lWaveform; // 0=triangle, 1=sine
- float fDelay;
- DWORD lPhase; // BASS_DX8_PHASE_xxx
-} BASS_DX8_CHORUS;
-
-typedef struct {
- float fGain;
- float fAttack;
- float fRelease;
- float fThreshold;
- float fRatio;
- float fPredelay;
-} BASS_DX8_COMPRESSOR;
-
-typedef struct {
- float fGain;
- float fEdge;
- float fPostEQCenterFrequency;
- float fPostEQBandwidth;
- float fPreLowpassCutoff;
-} BASS_DX8_DISTORTION;
-
-typedef struct {
- float fWetDryMix;
- float fFeedback;
- float fLeftDelay;
- float fRightDelay;
- BOOL lPanDelay;
-} BASS_DX8_ECHO;
-
-typedef struct {
- float fWetDryMix;
- float fDepth;
- float fFeedback;
- float fFrequency;
- DWORD lWaveform; // 0=triangle, 1=sine
- float fDelay;
- DWORD lPhase; // BASS_DX8_PHASE_xxx
-} BASS_DX8_FLANGER;
-
-typedef struct {
- DWORD dwRateHz; // Rate of modulation in hz
- DWORD dwWaveShape; // 0=triangle, 1=square
-} BASS_DX8_GARGLE;
-
-typedef struct {
- int lRoom; // [-10000, 0] default: -1000 mB
- int lRoomHF; // [-10000, 0] default: 0 mB
- float flRoomRolloffFactor; // [0.0, 10.0] default: 0.0
- float flDecayTime; // [0.1, 20.0] default: 1.49s
- float flDecayHFRatio; // [0.1, 2.0] default: 0.83
- int lReflections; // [-10000, 1000] default: -2602 mB
- float flReflectionsDelay; // [0.0, 0.3] default: 0.007 s
- int lReverb; // [-10000, 2000] default: 200 mB
- float flReverbDelay; // [0.0, 0.1] default: 0.011 s
- float flDiffusion; // [0.0, 100.0] default: 100.0 %
- float flDensity; // [0.0, 100.0] default: 100.0 %
- float flHFReference; // [20.0, 20000.0] default: 5000.0 Hz
-} BASS_DX8_I3DL2REVERB;
-
-typedef struct {
- float fCenter;
- float fBandwidth;
- float fGain;
-} BASS_DX8_PARAMEQ;
-
-typedef struct {
- float fInGain; // [-96.0,0.0] default: 0.0 dB
- float fReverbMix; // [-96.0,0.0] default: 0.0 db
- float fReverbTime; // [0.001,3000.0] default: 1000.0 ms
- float fHighFreqRTRatio; // [0.001,0.999] default: 0.001
-} BASS_DX8_REVERB;
-
-#define BASS_DX8_PHASE_NEG_180 0
-#define BASS_DX8_PHASE_NEG_90 1
-#define BASS_DX8_PHASE_ZERO 2
-#define BASS_DX8_PHASE_90 3
-#define BASS_DX8_PHASE_180 4
-
-typedef struct {
- float fTarget;
- float fCurrent;
- float fTime;
- DWORD lCurve;
-} BASS_FX_VOLUME_PARAM;
-
-typedef void(CALLBACK IOSNOTIFYPROC)(DWORD status);
-/* iOS notification callback function.
-status : The notification (BASS_IOSNOTIFY_xxx) */
-
-#define BASS_IOSNOTIFY_INTERRUPT 1 // interruption started
-#define BASS_IOSNOTIFY_INTERRUPT_END 2 // interruption ended
-
-BOOL BASSDEF(BASS_SetConfig)(DWORD option, DWORD value);
-DWORD BASSDEF(BASS_GetConfig)(DWORD option);
-BOOL BASSDEF(BASS_SetConfigPtr)(DWORD option, const void *value);
-void *BASSDEF(BASS_GetConfigPtr)(DWORD option);
-DWORD BASSDEF(BASS_GetVersion)();
-int BASSDEF(BASS_ErrorGetCode)();
-BOOL BASSDEF(BASS_GetDeviceInfo)(DWORD device, BASS_DEVICEINFO *info);
-#if defined(_WIN32) && !defined(_WIN32_WCE) && \
- !(WINAPI_FAMILY && WINAPI_FAMILY != WINAPI_FAMILY_DESKTOP_APP)
-BOOL BASSDEF(BASS_Init)(int device, DWORD freq, DWORD flags, HWND win,
- const GUID *dsguid);
-#else
-BOOL BASSDEF(BASS_Init)(int device, DWORD freq, DWORD flags, void *win,
- void *dsguid);
-#endif
-BOOL BASSDEF(BASS_SetDevice)(DWORD device);
-DWORD BASSDEF(BASS_GetDevice)();
-BOOL BASSDEF(BASS_Free)();
-#if defined(_WIN32) && !defined(_WIN32_WCE) && \
- !(WINAPI_FAMILY && WINAPI_FAMILY != WINAPI_FAMILY_DESKTOP_APP)
-void *BASSDEF(BASS_GetDSoundObject)(DWORD object);
-#endif
-BOOL BASSDEF(BASS_GetInfo)(BASS_INFO *info);
-BOOL BASSDEF(BASS_Update)(DWORD length);
-float BASSDEF(BASS_GetCPU)();
-BOOL BASSDEF(BASS_Start)();
-BOOL BASSDEF(BASS_Stop)();
-BOOL BASSDEF(BASS_Pause)();
-BOOL BASSDEF(BASS_IsStarted)();
-BOOL BASSDEF(BASS_SetVolume)(float volume);
-float BASSDEF(BASS_GetVolume)();
-
-HPLUGIN BASSDEF(BASS_PluginLoad)(const char *file, DWORD flags);
-BOOL BASSDEF(BASS_PluginFree)(HPLUGIN handle);
-const BASS_PLUGININFO *BASSDEF(BASS_PluginGetInfo)(HPLUGIN handle);
-
-BOOL BASSDEF(BASS_Set3DFactors)(float distf, float rollf, float doppf);
-BOOL BASSDEF(BASS_Get3DFactors)(float *distf, float *rollf, float *doppf);
-BOOL BASSDEF(BASS_Set3DPosition)(const BASS_3DVECTOR *pos,
- const BASS_3DVECTOR *vel,
- const BASS_3DVECTOR *front,
- const BASS_3DVECTOR *top);
-BOOL BASSDEF(BASS_Get3DPosition)(BASS_3DVECTOR *pos, BASS_3DVECTOR *vel,
- BASS_3DVECTOR *front, BASS_3DVECTOR *top);
-void BASSDEF(BASS_Apply3D)();
-#if defined(_WIN32) && !defined(_WIN32_WCE) && \
- !(WINAPI_FAMILY && WINAPI_FAMILY != WINAPI_FAMILY_DESKTOP_APP)
-BOOL BASSDEF(BASS_SetEAXParameters)(int env, float vol, float decay,
- float damp);
-BOOL BASSDEF(BASS_GetEAXParameters)(DWORD *env, float *vol, float *decay,
- float *damp);
-#endif
-
-HMUSIC BASSDEF(BASS_MusicLoad)(BOOL mem, const void *file, QWORD offset,
- DWORD length, DWORD flags, DWORD freq);
-BOOL BASSDEF(BASS_MusicFree)(HMUSIC handle);
-
-HSAMPLE BASSDEF(BASS_SampleLoad)(BOOL mem, const void *file, QWORD offset,
- DWORD length, DWORD max, DWORD flags);
-HSAMPLE BASSDEF(BASS_SampleCreate)(DWORD length, DWORD freq, DWORD chans,
- DWORD max, DWORD flags);
-BOOL BASSDEF(BASS_SampleFree)(HSAMPLE handle);
-BOOL BASSDEF(BASS_SampleSetData)(HSAMPLE handle, const void *buffer);
-BOOL BASSDEF(BASS_SampleGetData)(HSAMPLE handle, void *buffer);
-BOOL BASSDEF(BASS_SampleGetInfo)(HSAMPLE handle, BASS_SAMPLE *info);
-BOOL BASSDEF(BASS_SampleSetInfo)(HSAMPLE handle, const BASS_SAMPLE *info);
-HCHANNEL BASSDEF(BASS_SampleGetChannel)(HSAMPLE handle, BOOL onlynew);
-DWORD BASSDEF(BASS_SampleGetChannels)(HSAMPLE handle, HCHANNEL *channels);
-BOOL BASSDEF(BASS_SampleStop)(HSAMPLE handle);
-
-HSTREAM BASSDEF(BASS_StreamCreate)(DWORD freq, DWORD chans, DWORD flags,
- STREAMPROC *proc, void *user);
-HSTREAM BASSDEF(BASS_StreamCreateFile)(BOOL mem, const void *file, QWORD offset,
- QWORD length, DWORD flags);
-HSTREAM BASSDEF(BASS_StreamCreateURL)(const char *url, DWORD offset,
- DWORD flags, DOWNLOADPROC *proc,
- void *user);
-HSTREAM BASSDEF(BASS_StreamCreateFileUser)(DWORD system, DWORD flags,
- const BASS_FILEPROCS *proc,
- void *user);
-BOOL BASSDEF(BASS_StreamFree)(HSTREAM handle);
-QWORD BASSDEF(BASS_StreamGetFilePosition)(HSTREAM handle, DWORD mode);
-DWORD BASSDEF(BASS_StreamPutData)(HSTREAM handle, const void *buffer,
- DWORD length);
-DWORD BASSDEF(BASS_StreamPutFileData)(HSTREAM handle, const void *buffer,
- DWORD length);
-
-BOOL BASSDEF(BASS_RecordGetDeviceInfo)(DWORD device, BASS_DEVICEINFO *info);
-BOOL BASSDEF(BASS_RecordInit)(int device);
-BOOL BASSDEF(BASS_RecordSetDevice)(DWORD device);
-DWORD BASSDEF(BASS_RecordGetDevice)();
-BOOL BASSDEF(BASS_RecordFree)();
-BOOL BASSDEF(BASS_RecordGetInfo)(BASS_RECORDINFO *info);
-const char *BASSDEF(BASS_RecordGetInputName)(int input);
-BOOL BASSDEF(BASS_RecordSetInput)(int input, DWORD flags, float volume);
-DWORD BASSDEF(BASS_RecordGetInput)(int input, float *volume);
-HRECORD BASSDEF(BASS_RecordStart)(DWORD freq, DWORD chans, DWORD flags,
- RECORDPROC *proc, void *user);
-
-double BASSDEF(BASS_ChannelBytes2Seconds)(DWORD handle, QWORD pos);
-QWORD BASSDEF(BASS_ChannelSeconds2Bytes)(DWORD handle, double pos);
-DWORD BASSDEF(BASS_ChannelGetDevice)(DWORD handle);
-BOOL BASSDEF(BASS_ChannelSetDevice)(DWORD handle, DWORD device);
-DWORD BASSDEF(BASS_ChannelIsActive)(DWORD handle);
-BOOL BASSDEF(BASS_ChannelGetInfo)(DWORD handle, BASS_CHANNELINFO *info);
-const char *BASSDEF(BASS_ChannelGetTags)(DWORD handle, DWORD tags);
-DWORD BASSDEF(BASS_ChannelFlags)(DWORD handle, DWORD flags, DWORD mask);
-BOOL BASSDEF(BASS_ChannelUpdate)(DWORD handle, DWORD length);
-BOOL BASSDEF(BASS_ChannelLock)(DWORD handle, BOOL lock);
-BOOL BASSDEF(BASS_ChannelPlay)(DWORD handle, BOOL restart);
-BOOL BASSDEF(BASS_ChannelStop)(DWORD handle);
-BOOL BASSDEF(BASS_ChannelPause)(DWORD handle);
-BOOL BASSDEF(BASS_ChannelSetAttribute)(DWORD handle, DWORD attrib, float value);
-BOOL BASSDEF(BASS_ChannelGetAttribute)(DWORD handle, DWORD attrib,
- float *value);
-BOOL BASSDEF(BASS_ChannelSlideAttribute)(DWORD handle, DWORD attrib,
- float value, DWORD time);
-BOOL BASSDEF(BASS_ChannelIsSliding)(DWORD handle, DWORD attrib);
-BOOL BASSDEF(BASS_ChannelSetAttributeEx)(DWORD handle, DWORD attrib,
- void *value, DWORD size);
-DWORD BASSDEF(BASS_ChannelGetAttributeEx)(DWORD handle, DWORD attrib,
- void *value, DWORD size);
-BOOL BASSDEF(BASS_ChannelSet3DAttributes)(DWORD handle, int mode, float min,
- float max, int iangle, int oangle,
- float outvol);
-BOOL BASSDEF(BASS_ChannelGet3DAttributes)(DWORD handle, DWORD *mode, float *min,
- float *max, DWORD *iangle,
- DWORD *oangle, float *outvol);
-BOOL BASSDEF(BASS_ChannelSet3DPosition)(DWORD handle, const BASS_3DVECTOR *pos,
- const BASS_3DVECTOR *orient,
- const BASS_3DVECTOR *vel);
-BOOL BASSDEF(BASS_ChannelGet3DPosition)(DWORD handle, BASS_3DVECTOR *pos,
- BASS_3DVECTOR *orient,
- BASS_3DVECTOR *vel);
-QWORD BASSDEF(BASS_ChannelGetLength)(DWORD handle, DWORD mode);
-BOOL BASSDEF(BASS_ChannelSetPosition)(DWORD handle, QWORD pos, DWORD mode);
-QWORD BASSDEF(BASS_ChannelGetPosition)(DWORD handle, DWORD mode);
-DWORD BASSDEF(BASS_ChannelGetLevel)(DWORD handle);
-BOOL BASSDEF(BASS_ChannelGetLevelEx)(DWORD handle, float *levels, float length,
- DWORD flags);
-DWORD BASSDEF(BASS_ChannelGetData)(DWORD handle, void *buffer, DWORD length);
-HSYNC BASSDEF(BASS_ChannelSetSync)(DWORD handle, DWORD type, QWORD param,
- SYNCPROC *proc, void *user);
-BOOL BASSDEF(BASS_ChannelRemoveSync)(DWORD handle, HSYNC sync);
-HDSP BASSDEF(BASS_ChannelSetDSP)(DWORD handle, DSPPROC *proc, void *user,
- int priority);
-BOOL BASSDEF(BASS_ChannelRemoveDSP)(DWORD handle, HDSP dsp);
-BOOL BASSDEF(BASS_ChannelSetLink)(DWORD handle, DWORD chan);
-BOOL BASSDEF(BASS_ChannelRemoveLink)(DWORD handle, DWORD chan);
-HFX BASSDEF(BASS_ChannelSetFX)(DWORD handle, DWORD type, int priority);
-BOOL BASSDEF(BASS_ChannelRemoveFX)(DWORD handle, HFX fx);
-
-BOOL BASSDEF(BASS_FXSetParameters)(HFX handle, const void *params);
-BOOL BASSDEF(BASS_FXGetParameters)(HFX handle, void *params);
-BOOL BASSDEF(BASS_FXReset)(HFX handle);
-BOOL BASSDEF(BASS_FXSetPriority)(HFX handle, int priority);
-
-#ifdef __cplusplus
-}
-
-#if defined(_WIN32) && !defined(NOBASSOVERLOADS)
-static inline HPLUGIN BASS_PluginLoad(const WCHAR *file, DWORD flags)
-{
- return BASS_PluginLoad((const char *)file, flags | BASS_UNICODE);
-}
-
-static inline HMUSIC BASS_MusicLoad(BOOL mem, const WCHAR *file, QWORD offset,
- DWORD length, DWORD flags, DWORD freq)
-{
- return BASS_MusicLoad(mem, (const void *)file, offset, length,
- flags | BASS_UNICODE, freq);
-}
-
-static inline HSAMPLE BASS_SampleLoad(BOOL mem, const WCHAR *file, QWORD offset,
- DWORD length, DWORD max, DWORD flags)
-{
- return BASS_SampleLoad(mem, (const void *)file, offset, length, max,
- flags | BASS_UNICODE);
-}
-
-static inline HSTREAM BASS_StreamCreateFile(BOOL mem, const WCHAR *file,
- QWORD offset, QWORD length,
- DWORD flags)
-{
- return BASS_StreamCreateFile(mem, (const void *)file, offset, length,
- flags | BASS_UNICODE);
-}
-
-static inline HSTREAM BASS_StreamCreateURL(const WCHAR *url, DWORD offset,
- DWORD flags, DOWNLOADPROC *proc,
- void *user)
-{
- return BASS_StreamCreateURL((const char *)url, offset, flags | BASS_UNICODE,
- proc, user);
-}
-
-static inline BOOL BASS_SetConfigPtr(DWORD option, const WCHAR *value)
-{
- return BASS_SetConfigPtr(option | BASS_UNICODE, (const void *)value);
-}
-#endif
-#endif
-
-#endif
diff --git a/include/bassmidi.h b/include/bassmidi.h
deleted file mode 100644
index 72ebe9c..0000000
--- a/include/bassmidi.h
+++ /dev/null
@@ -1,380 +0,0 @@
-/*
- BASSMIDI 2.4 C/C++ header file
- Copyright (c) 2006-2020 Un4seen Developments Ltd.
-
- See the BASSMIDI.CHM file for more detailed documentation
-*/
-
-#ifndef BASSMIDI_H
-#define BASSMIDI_H
-
-#include "bass.h"
-
-#if BASSVERSION!=0x204
-#error conflicting BASS and BASSMIDI versions
-#endif
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#ifndef BASSMIDIDEF
-#define BASSMIDIDEF(f) WINAPI f
-#endif
-
-typedef DWORD HSOUNDFONT; // soundfont handle
-
-// Additional error codes returned by BASS_ErrorGetCode
-#define BASS_ERROR_MIDI_INCLUDE 7000 // SFZ include file could not be opened
-
-// Additional BASS_SetConfig options
-#define BASS_CONFIG_MIDI_COMPACT 0x10400
-#define BASS_CONFIG_MIDI_VOICES 0x10401
-#define BASS_CONFIG_MIDI_AUTOFONT 0x10402
-#define BASS_CONFIG_MIDI_IN_PORTS 0x10404
-#define BASS_CONFIG_MIDI_SAMPLETHREADS 0x10406
-#define BASS_CONFIG_MIDI_SAMPLEMEM 0x10407
-#define BASS_CONFIG_MIDI_SAMPLEREAD 0x10408
-
-// Additional BASS_SetConfigPtr options
-#define BASS_CONFIG_MIDI_DEFFONT 0x10403
-#define BASS_CONFIG_MIDI_SFZHEAD 0x10408
-
-// Additional sync types
-#define BASS_SYNC_MIDI_MARK 0x10000
-#define BASS_SYNC_MIDI_MARKER 0x10000
-#define BASS_SYNC_MIDI_CUE 0x10001
-#define BASS_SYNC_MIDI_LYRIC 0x10002
-#define BASS_SYNC_MIDI_TEXT 0x10003
-#define BASS_SYNC_MIDI_EVENT 0x10004
-#define BASS_SYNC_MIDI_TICK 0x10005
-#define BASS_SYNC_MIDI_TIMESIG 0x10006
-#define BASS_SYNC_MIDI_KEYSIG 0x10007
-
-// Additional BASS_MIDI_StreamCreateFile/etc flags
-#define BASS_MIDI_NOSYSRESET 0x800
-#define BASS_MIDI_DECAYEND 0x1000
-#define BASS_MIDI_NOFX 0x2000
-#define BASS_MIDI_DECAYSEEK 0x4000
-#define BASS_MIDI_NOCROP 0x8000
-#define BASS_MIDI_NOTEOFF1 0x10000
-#define BASS_MIDI_SINCINTER 0x800000
-
-// BASS_MIDI_FontInit flags
-#define BASS_MIDI_FONT_MEM 0x10000
-#define BASS_MIDI_FONT_MMAP 0x20000
-#define BASS_MIDI_FONT_XGDRUMS 0x40000
-#define BASS_MIDI_FONT_NOFX 0x80000
-#define BASS_MIDI_FONT_LINATTMOD 0x100000
-#define BASS_MIDI_FONT_LINDECVOL 0x200000
-#define BASS_MIDI_FONT_NORAMPIN 0x400000
-#define BASS_MIDI_FONT_NOLIMITS 0x800000
-
-typedef struct {
- HSOUNDFONT font; // soundfont
- int preset; // preset number (-1=all)
- int bank;
-} BASS_MIDI_FONT;
-
-typedef struct {
- HSOUNDFONT font; // soundfont
- int spreset; // source preset number
- int sbank; // source bank number
- int dpreset; // destination preset/program number
- int dbank; // destination bank number
- int dbanklsb; // destination bank number LSB
-} BASS_MIDI_FONTEX;
-
-// BASS_MIDI_StreamSet/GetFonts flag
-#define BASS_MIDI_FONT_EX 0x1000000 // BASS_MIDI_FONTEX
-
-typedef struct {
- const char *name;
- const char *copyright;
- const char *comment;
- DWORD presets; // number of presets/instruments
- DWORD samsize; // total size (in bytes) of the sample data
- DWORD samload; // amount of sample data currently loaded
- DWORD samtype; // sample format (CTYPE) if packed
-} BASS_MIDI_FONTINFO;
-
-typedef struct {
- DWORD track; // track containing marker
- DWORD pos; // marker position
- const char *text; // marker text
-} BASS_MIDI_MARK;
-
-// Marker types
-#define BASS_MIDI_MARK_MARKER 0 // marker
-#define BASS_MIDI_MARK_CUE 1 // cue point
-#define BASS_MIDI_MARK_LYRIC 2 // lyric
-#define BASS_MIDI_MARK_TEXT 3 // text
-#define BASS_MIDI_MARK_TIMESIG 4 // time signature
-#define BASS_MIDI_MARK_KEYSIG 5 // key signature
-#define BASS_MIDI_MARK_COPY 6 // copyright notice
-#define BASS_MIDI_MARK_TRACK 7 // track name
-#define BASS_MIDI_MARK_INST 8 // instrument name
-#define BASS_MIDI_MARK_TRACKSTART 9 // track start (SMF2)
-#define BASS_MIDI_MARK_TICK 0x10000 // flag: get position in ticks (otherwise bytes)
-
-// MIDI events
-#define MIDI_EVENT_NOTE 1
-#define MIDI_EVENT_PROGRAM 2
-#define MIDI_EVENT_CHANPRES 3
-#define MIDI_EVENT_PITCH 4
-#define MIDI_EVENT_PITCHRANGE 5
-#define MIDI_EVENT_DRUMS 6
-#define MIDI_EVENT_FINETUNE 7
-#define MIDI_EVENT_COARSETUNE 8
-#define MIDI_EVENT_MASTERVOL 9
-#define MIDI_EVENT_BANK 10
-#define MIDI_EVENT_MODULATION 11
-#define MIDI_EVENT_VOLUME 12
-#define MIDI_EVENT_PAN 13
-#define MIDI_EVENT_EXPRESSION 14
-#define MIDI_EVENT_SUSTAIN 15
-#define MIDI_EVENT_SOUNDOFF 16
-#define MIDI_EVENT_RESET 17
-#define MIDI_EVENT_NOTESOFF 18
-#define MIDI_EVENT_PORTAMENTO 19
-#define MIDI_EVENT_PORTATIME 20
-#define MIDI_EVENT_PORTANOTE 21
-#define MIDI_EVENT_MODE 22
-#define MIDI_EVENT_REVERB 23
-#define MIDI_EVENT_CHORUS 24
-#define MIDI_EVENT_CUTOFF 25
-#define MIDI_EVENT_RESONANCE 26
-#define MIDI_EVENT_RELEASE 27
-#define MIDI_EVENT_ATTACK 28
-#define MIDI_EVENT_DECAY 29
-#define MIDI_EVENT_REVERB_MACRO 30
-#define MIDI_EVENT_CHORUS_MACRO 31
-#define MIDI_EVENT_REVERB_TIME 32
-#define MIDI_EVENT_REVERB_DELAY 33
-#define MIDI_EVENT_REVERB_LOCUTOFF 34
-#define MIDI_EVENT_REVERB_HICUTOFF 35
-#define MIDI_EVENT_REVERB_LEVEL 36
-#define MIDI_EVENT_CHORUS_DELAY 37
-#define MIDI_EVENT_CHORUS_DEPTH 38
-#define MIDI_EVENT_CHORUS_RATE 39
-#define MIDI_EVENT_CHORUS_FEEDBACK 40
-#define MIDI_EVENT_CHORUS_LEVEL 41
-#define MIDI_EVENT_CHORUS_REVERB 42
-#define MIDI_EVENT_USERFX 43
-#define MIDI_EVENT_USERFX_LEVEL 44
-#define MIDI_EVENT_USERFX_REVERB 45
-#define MIDI_EVENT_USERFX_CHORUS 46
-#define MIDI_EVENT_DRUM_FINETUNE 50
-#define MIDI_EVENT_DRUM_COARSETUNE 51
-#define MIDI_EVENT_DRUM_PAN 52
-#define MIDI_EVENT_DRUM_REVERB 53
-#define MIDI_EVENT_DRUM_CHORUS 54
-#define MIDI_EVENT_DRUM_CUTOFF 55
-#define MIDI_EVENT_DRUM_RESONANCE 56
-#define MIDI_EVENT_DRUM_LEVEL 57
-#define MIDI_EVENT_DRUM_USERFX 58
-#define MIDI_EVENT_SOFT 60
-#define MIDI_EVENT_SYSTEM 61
-#define MIDI_EVENT_TEMPO 62
-#define MIDI_EVENT_SCALETUNING 63
-#define MIDI_EVENT_CONTROL 64
-#define MIDI_EVENT_CHANPRES_VIBRATO 65
-#define MIDI_EVENT_CHANPRES_PITCH 66
-#define MIDI_EVENT_CHANPRES_FILTER 67
-#define MIDI_EVENT_CHANPRES_VOLUME 68
-#define MIDI_EVENT_MOD_VIBRATO 69
-#define MIDI_EVENT_MODRANGE 69
-#define MIDI_EVENT_BANK_LSB 70
-#define MIDI_EVENT_KEYPRES 71
-#define MIDI_EVENT_KEYPRES_VIBRATO 72
-#define MIDI_EVENT_KEYPRES_PITCH 73
-#define MIDI_EVENT_KEYPRES_FILTER 74
-#define MIDI_EVENT_KEYPRES_VOLUME 75
-#define MIDI_EVENT_SOSTENUTO 76
-#define MIDI_EVENT_MOD_PITCH 77
-#define MIDI_EVENT_MOD_FILTER 78
-#define MIDI_EVENT_MOD_VOLUME 79
-#define MIDI_EVENT_VIBRATO_RATE 80
-#define MIDI_EVENT_VIBRATO_DEPTH 81
-#define MIDI_EVENT_VIBRATO_DELAY 82
-#define MIDI_EVENT_MIXLEVEL 0x10000
-#define MIDI_EVENT_TRANSPOSE 0x10001
-#define MIDI_EVENT_SYSTEMEX 0x10002
-#define MIDI_EVENT_SPEED 0x10004
-
-#define MIDI_EVENT_END 0
-#define MIDI_EVENT_END_TRACK 0x10003
-
-#define MIDI_EVENT_NOTES 0x20000
-#define MIDI_EVENT_VOICES 0x20001
-
-#define MIDI_SYSTEM_DEFAULT 0
-#define MIDI_SYSTEM_GM1 1
-#define MIDI_SYSTEM_GM2 2
-#define MIDI_SYSTEM_XG 3
-#define MIDI_SYSTEM_GS 4
-
-typedef struct {
- DWORD event; // MIDI_EVENT_xxx
- DWORD param;
- DWORD chan;
- DWORD tick; // event position (ticks)
- DWORD pos; // event position (bytes)
-} BASS_MIDI_EVENT;
-
-// BASS_MIDI_StreamEvents modes
-#define BASS_MIDI_EVENTS_STRUCT 0 // BASS_MIDI_EVENT structures
-#define BASS_MIDI_EVENTS_RAW 0x10000 // raw MIDI event data
-#define BASS_MIDI_EVENTS_SYNC 0x1000000 // flag: trigger event syncs
-#define BASS_MIDI_EVENTS_NORSTATUS 0x2000000 // flag: no running status
-#define BASS_MIDI_EVENTS_CANCEL 0x4000000 // flag: cancel pending events
-#define BASS_MIDI_EVENTS_TIME 0x8000000 // flag: delta-time info is present
-#define BASS_MIDI_EVENTS_ABSTIME 0x10000000 // flag: absolute time info is present
-
-// BASS_MIDI_StreamGetChannel special channels
-#define BASS_MIDI_CHAN_CHORUS (DWORD)-1
-#define BASS_MIDI_CHAN_REVERB (DWORD)-2
-#define BASS_MIDI_CHAN_USERFX (DWORD)-3
-
-// BASS_CHANNELINFO type
-#define BASS_CTYPE_STREAM_MIDI 0x10d00
-
-// Additional attributes
-#define BASS_ATTRIB_MIDI_PPQN 0x12000
-#define BASS_ATTRIB_MIDI_CPU 0x12001
-#define BASS_ATTRIB_MIDI_CHANS 0x12002
-#define BASS_ATTRIB_MIDI_VOICES 0x12003
-#define BASS_ATTRIB_MIDI_VOICES_ACTIVE 0x12004
-#define BASS_ATTRIB_MIDI_STATE 0x12005
-#define BASS_ATTRIB_MIDI_SRC 0x12006
-#define BASS_ATTRIB_MIDI_KILL 0x12007
-#define BASS_ATTRIB_MIDI_SPEED 0x12008
-#define BASS_ATTRIB_MIDI_REVERB 0x12009
-#define BASS_ATTRIB_MIDI_VOL 0x1200a
-#define BASS_ATTRIB_MIDI_TRACK_VOL 0x12100 // + track #
-
-// Additional tag type
-#define BASS_TAG_MIDI_TRACK 0x11000 // + track #, track text : array of null-terminated ANSI strings
-
-// BASS_ChannelGetLength/GetPosition/SetPosition mode
-#define BASS_POS_MIDI_TICK 2 // tick position
-
-typedef BOOL (CALLBACK MIDIFILTERPROC)(HSTREAM handle, DWORD track, BASS_MIDI_EVENT *event, BOOL seeking, void *user);
-/* Event filtering callback function.
-handle : MIDI stream handle
-track : Track containing the event
-event : The event
-seeking: TRUE = the event is being processed while seeking, FALSE = it is being played
-user : The 'user' parameter value given when calling BASS_MIDI_StreamSetFilter
-RETURN : TRUE = process the event, FALSE = drop the event */
-
-// BASS_MIDI_FontLoadEx flags
-#define BASS_MIDI_FONTLOAD_NOWAIT 1 // don't want for the samples to load
-#define BASS_MIDI_FONTLOAD_COMPACT 2 // compact samples
-#define BASS_MIDI_FONTLOAD_NOLOAD 4 // don't load (only compact)
-#define BASS_MIDI_FONTLOAD_TIME 8 // length is in milliseconds
-#define BASS_MIDI_FONTLOAD_KEEPDEC 16 // keep decoders
-
-// BASS_MIDI_FontPack flags
-#define BASS_MIDI_PACK_NOHEAD 1 // don't send a WAV header to the encoder
-#define BASS_MIDI_PACK_16BIT 2 // discard low 8 bits of 24-bit sample data
-#define BASS_MIDI_PACK_48KHZ 4 // set encoding rate to 48000 Hz (else 44100 Hz)
-
-typedef struct {
- const char *name; // description
- DWORD id;
- DWORD flags;
-} BASS_MIDI_DEVICEINFO;
-
-typedef void (CALLBACK MIDIINPROC)(DWORD device, double time, const BYTE *buffer, DWORD length, void *user);
-/* MIDI input callback function.
-device : MIDI input device
-time : Timestamp
-buffer : Buffer containing MIDI data
-length : Number of bytes of data
-user : The 'user' parameter value given when calling BASS_MIDI_InInit */
-
-HSTREAM BASSMIDIDEF(BASS_MIDI_StreamCreate)(DWORD channels, DWORD flags, DWORD freq);
-HSTREAM BASSMIDIDEF(BASS_MIDI_StreamCreateFile)(BOOL mem, const void *file, QWORD offset, QWORD length, DWORD flags, DWORD freq);
-HSTREAM BASSMIDIDEF(BASS_MIDI_StreamCreateURL)(const char *url, DWORD offset, DWORD flags, DOWNLOADPROC *proc, void *user, DWORD freq);
-HSTREAM BASSMIDIDEF(BASS_MIDI_StreamCreateFileUser)(DWORD system, DWORD flags, const BASS_FILEPROCS *procs, void *user, DWORD freq);
-HSTREAM BASSMIDIDEF(BASS_MIDI_StreamCreateEvents)(const BASS_MIDI_EVENT *events, DWORD ppqn, DWORD flags, DWORD freq);
-BOOL BASSMIDIDEF(BASS_MIDI_StreamGetMark)(HSTREAM handle, DWORD type, DWORD index, BASS_MIDI_MARK *mark);
-DWORD BASSMIDIDEF(BASS_MIDI_StreamGetMarks)(HSTREAM handle, int track, DWORD type, BASS_MIDI_MARK *marks);
-BOOL BASSMIDIDEF(BASS_MIDI_StreamSetFonts)(HSTREAM handle, const void *fonts, DWORD count);
-DWORD BASSMIDIDEF(BASS_MIDI_StreamGetFonts)(HSTREAM handle, void *fonts, DWORD count);
-BOOL BASSMIDIDEF(BASS_MIDI_StreamLoadSamples)(HSTREAM handle);
-BOOL BASSMIDIDEF(BASS_MIDI_StreamEvent)(HSTREAM handle, DWORD chan, DWORD event, DWORD param);
-DWORD BASSMIDIDEF(BASS_MIDI_StreamEvents)(HSTREAM handle, DWORD mode, const void *events, DWORD length);
-DWORD BASSMIDIDEF(BASS_MIDI_StreamGetEvent)(HSTREAM handle, DWORD chan, DWORD event);
-DWORD BASSMIDIDEF(BASS_MIDI_StreamGetEvents)(HSTREAM handle, int track, DWORD filter, BASS_MIDI_EVENT *events);
-DWORD BASSMIDIDEF(BASS_MIDI_StreamGetEventsEx)(HSTREAM handle, int track, DWORD filter, BASS_MIDI_EVENT *events, DWORD start, DWORD count);
-BOOL BASSMIDIDEF(BASS_MIDI_StreamGetPreset)(HSTREAM handle, DWORD chan, BASS_MIDI_FONT *font);
-HSTREAM BASSMIDIDEF(BASS_MIDI_StreamGetChannel)(HSTREAM handle, DWORD chan);
-BOOL BASSMIDIDEF(BASS_MIDI_StreamSetFilter)(HSTREAM handle, BOOL seeking, MIDIFILTERPROC *proc, void *user);
-
-HSOUNDFONT BASSMIDIDEF(BASS_MIDI_FontInit)(const void *file, DWORD flags);
-HSOUNDFONT BASSMIDIDEF(BASS_MIDI_FontInitUser)(const BASS_FILEPROCS *procs, void *user, DWORD flags);
-BOOL BASSMIDIDEF(BASS_MIDI_FontFree)(HSOUNDFONT handle);
-BOOL BASSMIDIDEF(BASS_MIDI_FontGetInfo)(HSOUNDFONT handle, BASS_MIDI_FONTINFO *info);
-BOOL BASSMIDIDEF(BASS_MIDI_FontGetPresets)(HSOUNDFONT handle, DWORD *presets);
-const char *BASSMIDIDEF(BASS_MIDI_FontGetPreset)(HSOUNDFONT handle, int preset, int bank);
-BOOL BASSMIDIDEF(BASS_MIDI_FontLoad)(HSOUNDFONT handle, int preset, int bank);
-BOOL BASSMIDIDEF(BASS_MIDI_FontLoadEx)(HSOUNDFONT handle, int preset, int bank, DWORD length, DWORD flags);
-BOOL BASSMIDIDEF(BASS_MIDI_FontUnload)(HSOUNDFONT handle, int preset, int bank);
-BOOL BASSMIDIDEF(BASS_MIDI_FontCompact)(HSOUNDFONT handle);
-BOOL BASSMIDIDEF(BASS_MIDI_FontPack)(HSOUNDFONT handle, const void *outfile, const void *encoder, DWORD flags);
-BOOL BASSMIDIDEF(BASS_MIDI_FontUnpack)(HSOUNDFONT handle, const void *outfile, DWORD flags);
-BOOL BASSMIDIDEF(BASS_MIDI_FontSetVolume)(HSOUNDFONT handle, float volume);
-float BASSMIDIDEF(BASS_MIDI_FontGetVolume)(HSOUNDFONT handle);
-
-DWORD BASSMIDIDEF(BASS_MIDI_ConvertEvents)(const BYTE *data, DWORD length, BASS_MIDI_EVENT *events, DWORD count, DWORD flags);
-
-BOOL BASSMIDIDEF(BASS_MIDI_InGetDeviceInfo)(DWORD device, BASS_MIDI_DEVICEINFO *info);
-BOOL BASSMIDIDEF(BASS_MIDI_InInit)(DWORD device, MIDIINPROC *proc, void *user);
-BOOL BASSMIDIDEF(BASS_MIDI_InFree)(DWORD device);
-BOOL BASSMIDIDEF(BASS_MIDI_InStart)(DWORD device);
-BOOL BASSMIDIDEF(BASS_MIDI_InStop)(DWORD device);
-
-#ifdef __cplusplus
-}
-
-static inline BOOL BASS_MIDI_StreamSetFonts(HSTREAM handle, const BASS_MIDI_FONTEX *fonts, DWORD count)
-{
- return BASS_MIDI_StreamSetFonts(handle, (const void*)fonts, count|BASS_MIDI_FONT_EX);
-}
-
-static inline DWORD BASS_MIDI_StreamGetFonts(HSTREAM handle, BASS_MIDI_FONTEX *fonts, DWORD count)
-{
- return BASS_MIDI_StreamGetFonts(handle, (void*)fonts, count|BASS_MIDI_FONT_EX);
-}
-
-#ifdef _WIN32
-static inline HSTREAM BASS_MIDI_StreamCreateFile(BOOL mem, const WCHAR *file, QWORD offset, QWORD length, DWORD flags, DWORD freq)
-{
- return BASS_MIDI_StreamCreateFile(mem, (const void*)file, offset, length, flags|BASS_UNICODE, freq);
-}
-
-static inline HSTREAM BASS_MIDI_StreamCreateURL(const WCHAR *url, DWORD offset, DWORD flags, DOWNLOADPROC *proc, void *user, DWORD freq)
-{
- return BASS_MIDI_StreamCreateURL((const char*)url, offset, flags|BASS_UNICODE, proc, user, freq);
-}
-
-static inline HSOUNDFONT BASS_MIDI_FontInit(const WCHAR *file, DWORD flags)
-{
- return BASS_MIDI_FontInit((const void*)file, flags|BASS_UNICODE);
-}
-
-static inline BOOL BASS_MIDI_FontPack(HSOUNDFONT handle, const WCHAR *outfile, const WCHAR *encoder, DWORD flags)
-{
- return BASS_MIDI_FontPack(handle, (const void*)outfile, (const void*)encoder, flags|BASS_UNICODE);
-}
-
-static inline BOOL BASS_MIDI_FontUnpack(HSOUNDFONT handle, const WCHAR *outfile, DWORD flags)
-{
- return BASS_MIDI_FontUnpack(handle, (const void*)outfile, flags|BASS_UNICODE);
-}
-#endif
-#endif
-
-#endif
diff --git a/include/bassopus.h b/include/bassopus.h
deleted file mode 100644
index 3d8b131..0000000
--- a/include/bassopus.h
+++ /dev/null
@@ -1,64 +0,0 @@
-/*
- BASSOPUS 2.4 C/C++ header file
- Copyright (c) 2012-2015 Un4seen Developments Ltd.
-
- See the BASSOPUS.CHM file for more detailed documentation
-*/
-
-#ifndef BASSOPUS_H
-#define BASSOPUS_H
-
-#include "bass.h"
-
-#if BASSVERSION != 0x204
-#error conflicting BASS and BASSOPUS versions
-#endif
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#ifndef BASSOPUSDEF
-#define BASSOPUSDEF(f) WINAPI f
-#endif
-
-// BASS_CHANNELINFO type
-#define BASS_CTYPE_STREAM_OPUS 0x11200
-
-// Additional attributes
-#define BASS_ATTRIB_OPUS_ORIGFREQ 0x13000
-#define BASS_ATTRIB_OPUS_GAIN 0x13001
-
-HSTREAM BASSOPUSDEF(BASS_OPUS_StreamCreateFile)(BOOL mem, const void *file,
- QWORD offset, QWORD length,
- DWORD flags);
-HSTREAM BASSOPUSDEF(BASS_OPUS_StreamCreateURL)(const char *url, DWORD offset,
- DWORD flags, DOWNLOADPROC *proc,
- void *user);
-HSTREAM BASSOPUSDEF(BASS_OPUS_StreamCreateFileUser)(DWORD system, DWORD flags,
- const BASS_FILEPROCS *procs,
- void *user);
-
-#ifdef __cplusplus
-}
-
-#if defined(_WIN32) && !defined(NOBASSOVERLOADS)
-static inline HSTREAM BASS_OPUS_StreamCreateFile(BOOL mem, const WCHAR *file,
- QWORD offset, QWORD length,
- DWORD flags)
-{
- return BASS_OPUS_StreamCreateFile(mem, (const void *)file, offset, length,
- flags | BASS_UNICODE);
-}
-
-static inline HSTREAM BASS_OPUS_StreamCreateURL(const WCHAR *url, DWORD offset,
- DWORD flags, DOWNLOADPROC *proc,
- void *user)
-{
- return BASS_OPUS_StreamCreateURL((const char *)url, offset,
- flags | BASS_UNICODE, proc, user);
-}
-#endif
-#endif
-
-#endif
diff --git a/include/chatlogpiece.h b/include/chatlogpiece.h
deleted file mode 100644
index df6ccd0..0000000
--- a/include/chatlogpiece.h
+++ /dev/null
@@ -1,37 +0,0 @@
-#ifndef CHATLOGPIECE_H
-#define CHATLOGPIECE_H
-
-#include
-#include
-#include
-
-class chatlogpiece {
- Q_DECLARE_TR_FUNCTIONS(chatlogpiece)
-public:
- chatlogpiece();
- chatlogpiece(QString p_name, QString p_showname, QString p_message,
- QString p_action,int color, bool selfname);
- chatlogpiece(QString p_name, QString p_showname, QString p_message,
- QString p_action, int color, bool selfname, QDateTime p_datetime);
-
- QString get_name() { return name; };
- QString get_showname() { return showname; };
- QString get_message() { return message; };
- QString get_action() { return action; };
- bool get_selfname() const { return selfname; };
- QDateTime get_datetime() { return datetime; };
- QString get_datetime_as_string() { return datetime.toString(); };
- int get_chat_color() const { return color; };
- QString get_full();
-
-private:
- QString name;
- QString showname;
- QString message;
- QString action;
- bool selfname;
- QDateTime datetime;
- int color;
-};
-
-#endif // CHATLOGPIECE_H
diff --git a/include/datatypes.h b/include/datatypes.h
deleted file mode 100644
index 32bff59..0000000
--- a/include/datatypes.h
+++ /dev/null
@@ -1,137 +0,0 @@
-#ifndef DATATYPES_H
-#define DATATYPES_H
-
-#include
-#include
-
-enum connection_type {
- TCP,
- WEBSOCKETS,
-};
-
-static QMap to_connection_type = {
- {"tcp", connection_type::TCP},
- {"ws", connection_type::WEBSOCKETS}
-};
-
-struct server_type {
- QString name;
- QString desc;
- QString ip;
- int port;
- connection_type socket_type;
-};
-
-struct emote_type {
- QString comment;
- QString preanim;
- QString anim;
- int mod;
- QString sfx_name;
- int sfx_delay;
- int sfx_duration;
-};
-
-struct char_type {
- QString name;
- QString description;
- QString evidence_string;
- bool taken;
-};
-
-struct evi_type {
- QString name;
- QString description;
- QString image;
-};
-
-struct chatmessage_type {
- QString message;
- QString character;
- QString side;
- QString sfx_name;
- QString pre_emote;
- QString emote;
- int emote_modifier;
- int objection_modifier;
- int realization;
- int text_color;
- int evidence;
- int cid;
- int sfx_delay;
- int flip;
-};
-
-struct area_type {
- QString name;
- QString background;
- bool passworded;
-};
-
-struct pos_type {
- int x;
- int y;
-};
-
-struct pos_size_type {
- int x = 0;
- int y = 0;
- int width = 0;
- int height = 0;
-};
-
-enum CHAT_MESSAGE {
- DESK_MOD = 0,
- PRE_EMOTE,
- CHAR_NAME,
- EMOTE,
- MESSAGE,
- SIDE,
- SFX_NAME,
- EMOTE_MOD,
- CHAR_ID,
- SFX_DELAY,
- OBJECTION_MOD,
- EVIDENCE_ID,
- FLIP,
- REALIZATION,
- TEXT_COLOR,
- SHOWNAME,
- OTHER_CHARID,
- OTHER_NAME,
- OTHER_EMOTE,
- SELF_OFFSET,
- OTHER_OFFSET,
- OTHER_FLIP,
- IMMEDIATE,
- LOOPING_SFX,
- SCREENSHAKE,
- FRAME_SCREENSHAKE,
- FRAME_REALIZATION,
- FRAME_SFX,
- ADDITIVE,
- EFFECTS,
- BLIPNAME,
-};
-
-enum EMOTE_MOD_TYPE {
- IDLE = 0,
- PREANIM = 1,
- ZOOM = 5,
- PREANIM_ZOOM = 6,
-};
-
-enum DESK_MOD_TYPE {
- DESK_HIDE = 0,
- DESK_SHOW,
- DESK_EMOTE_ONLY,
- DESK_PRE_ONLY,
- DESK_EMOTE_ONLY_EX,
- DESK_PRE_ONLY_EX,
- //"EX" for "expanded"
- //dumb, i know, but throw the first stone if you have a better idea
-};
-
-enum MUSIC_EFFECT { FADE_IN = 1, FADE_OUT = 2, SYNC_POS = 4 };
-
-#endif // DATATYPES_H
diff --git a/include/debug_functions.h b/include/debug_functions.h
deleted file mode 100644
index 383431a..0000000
--- a/include/debug_functions.h
+++ /dev/null
@@ -1,10 +0,0 @@
-#ifndef DEBUG_FUNCTIONS_H
-#define DEBUG_FUNCTIONS_H
-
-#include
-#include
-
-void call_error(QString message);
-void call_notice(QString message);
-
-#endif // DEBUG_FUNCTIONS_H
diff --git a/include/demoserver.h b/include/demoserver.h
deleted file mode 100644
index 877d5cc..0000000
--- a/include/demoserver.h
+++ /dev/null
@@ -1,60 +0,0 @@
-#ifndef DEMOSERVER_H
-#define DEMOSERVER_H
-
-#include "aopacket.h"
-
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-
-class DemoServer : public QObject
-{
- Q_OBJECT
-public:
- explicit DemoServer(QObject *parent = nullptr);
-
- bool server_started = false;
- int port = 27088;
- int max_wait = -1;
-
- void set_demo_file(QString filepath);
-
-private:
- void handle_packet(AOPacket *packet);
- void load_demo(QString filename);
- void reset_state();
-
- QTcpServer* tcp_server;
- QTcpSocket* client_sock = nullptr;
- bool client_connected = false;
- bool partial_packet = false;
- bool debug_mode = false;
- QString temp_packet = "";
- QQueue demo_data;
- QString sc_packet;
- int num_chars = 0;
- QString p_path;
- QTimer *timer;
- int elapsed_time = 0;
- QString filename;
-
-private slots:
- void accept_connection();
- void destroy_connection();
- void recv_data();
- void client_disconnect();
- void playback();
-
-public slots:
- void start_server();
-
-signals:
- void skip_timers(qint64 msecs);
-};
-
-#endif // DEMOSERVER_H
diff --git a/include/discord-rpc.h b/include/discord-rpc.h
deleted file mode 100644
index 455f62a..0000000
--- a/include/discord-rpc.h
+++ /dev/null
@@ -1,87 +0,0 @@
-#pragma once
-#include
-
-// clang-format off
-
-#if defined(DISCORD_DYNAMIC_LIB)
-# if defined(_WIN32)
-# if defined(DISCORD_BUILDING_SDK)
-# define DISCORD_EXPORT __declspec(dllexport)
-# else
-# define DISCORD_EXPORT __declspec(dllimport)
-# endif
-# else
-# define DISCORD_EXPORT __attribute__((visibility("default")))
-# endif
-#else
-# define DISCORD_EXPORT
-#endif
-
-// clang-format on
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-typedef struct DiscordRichPresence {
- const char *state; /* max 128 bytes */
- const char *details; /* max 128 bytes */
- int64_t startTimestamp;
- int64_t endTimestamp;
- const char *largeImageKey; /* max 32 bytes */
- const char *largeImageText; /* max 128 bytes */
- const char *smallImageKey; /* max 32 bytes */
- const char *smallImageText; /* max 128 bytes */
- const char *partyId; /* max 128 bytes */
- int partySize;
- int partyMax;
- const char *matchSecret; /* max 128 bytes */
- const char *joinSecret; /* max 128 bytes */
- const char *spectateSecret; /* max 128 bytes */
- int8_t instance;
-} DiscordRichPresence;
-
-typedef struct DiscordJoinRequest {
- const char *userId;
- const char *username;
- const char *discriminator;
- const char *avatar;
-} DiscordJoinRequest;
-
-typedef struct DiscordEventHandlers {
- void (*ready)(void);
- void (*disconnected)(int errorCode, const char *message);
- void (*errored)(int errorCode, const char *message);
- void (*joinGame)(const char *joinSecret);
- void (*spectateGame)(const char *spectateSecret);
- void (*joinRequest)(const DiscordJoinRequest *request);
-} DiscordEventHandlers;
-
-#define DISCORD_REPLY_NO 0
-#define DISCORD_REPLY_YES 1
-#define DISCORD_REPLY_IGNORE 2
-
-DISCORD_EXPORT void Discord_Initialize(const char *applicationId,
- DiscordEventHandlers *handlers,
- int autoRegister,
- const char *optionalSteamId);
-DISCORD_EXPORT void Discord_Shutdown(void);
-
-/* checks for incoming messages, dispatches callbacks */
-DISCORD_EXPORT void Discord_RunCallbacks(void);
-
-/* If you disable the lib starting its own io thread, you'll need to call this
- * from your own */
-#ifdef DISCORD_DISABLE_IO_THREAD
-DISCORD_EXPORT void Discord_UpdateConnection(void);
-#endif
-
-DISCORD_EXPORT void Discord_UpdatePresence(const DiscordRichPresence *presence);
-DISCORD_EXPORT void Discord_ClearPresence(void);
-
-DISCORD_EXPORT void Discord_Respond(const char *userid,
- /* DISCORD_REPLY_ */ int reply);
-
-#ifdef __cplusplus
-} /* extern "C" */
-#endif
diff --git a/include/discord_register.h b/include/discord_register.h
deleted file mode 100644
index 655a3df..0000000
--- a/include/discord_register.h
+++ /dev/null
@@ -1,28 +0,0 @@
-#pragma once
-
-#if defined(DISCORD_DYNAMIC_LIB)
-#if defined(_WIN32)
-#if defined(DISCORD_BUILDING_SDK)
-#define DISCORD_EXPORT __declspec(dllexport)
-#else
-#define DISCORD_EXPORT __declspec(dllimport)
-#endif
-#else
-#define DISCORD_EXPORT __attribute__((visibility("default")))
-#endif
-#else
-#define DISCORD_EXPORT
-#endif
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-DISCORD_EXPORT void Discord_Register(const char *applicationId,
- const char *command);
-DISCORD_EXPORT void Discord_RegisterSteamGame(const char *applicationId,
- const char *steamId);
-
-#ifdef __cplusplus
-}
-#endif
diff --git a/include/discord_rpc.h b/include/discord_rpc.h
deleted file mode 100644
index 6bd4404..0000000
--- a/include/discord_rpc.h
+++ /dev/null
@@ -1,89 +0,0 @@
-#pragma once
-#include
-
-// clang-format off
-
-#if defined(DISCORD_DYNAMIC_LIB)
-# if defined(_WIN32)
-# if defined(DISCORD_BUILDING_SDK)
-# define DISCORD_EXPORT __declspec(dllexport)
-# else
-# define DISCORD_EXPORT __declspec(dllimport)
-# endif
-# else
-# define DISCORD_EXPORT __attribute__((visibility("default")))
-# endif
-#else
-# define DISCORD_EXPORT
-#endif
-
-// clang-format on
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-typedef struct DiscordRichPresence {
- const char *state; /* max 128 bytes */
- const char *details; /* max 128 bytes */
- int64_t startTimestamp;
- int64_t endTimestamp;
- const char *largeImageKey; /* max 32 bytes */
- const char *largeImageText; /* max 128 bytes */
- const char *smallImageKey; /* max 32 bytes */
- const char *smallImageText; /* max 128 bytes */
- const char *partyId; /* max 128 bytes */
- int partySize;
- int partyMax;
- const char *matchSecret; /* max 128 bytes */
- const char *joinSecret; /* max 128 bytes */
- const char *spectateSecret; /* max 128 bytes */
- int8_t instance;
-} DiscordRichPresence;
-
-typedef struct DiscordUser {
- const char *userId;
- const char *username;
- const char *discriminator;
- const char *avatar;
-} DiscordUser;
-
-typedef struct DiscordEventHandlers {
- void (*ready)(const DiscordUser *request);
- void (*disconnected)(int errorCode, const char *message);
- void (*errored)(int errorCode, const char *message);
- void (*joinGame)(const char *joinSecret);
- void (*spectateGame)(const char *spectateSecret);
- void (*joinRequest)(const DiscordUser *request);
-} DiscordEventHandlers;
-
-#define DISCORD_REPLY_NO 0
-#define DISCORD_REPLY_YES 1
-#define DISCORD_REPLY_IGNORE 2
-
-DISCORD_EXPORT void Discord_Initialize(const char *applicationId,
- DiscordEventHandlers *handlers,
- int autoRegister,
- const char *optionalSteamId);
-DISCORD_EXPORT void Discord_Shutdown(void);
-
-/* checks for incoming messages, dispatches callbacks */
-DISCORD_EXPORT void Discord_RunCallbacks(void);
-
-/* If you disable the lib starting its own io thread, you'll need to call this
- * from your own */
-#ifdef DISCORD_DISABLE_IO_THREAD
-DISCORD_EXPORT void Discord_UpdateConnection(void);
-#endif
-
-DISCORD_EXPORT void Discord_UpdatePresence(const DiscordRichPresence *presence);
-DISCORD_EXPORT void Discord_ClearPresence(void);
-
-DISCORD_EXPORT void Discord_Respond(const char *userid,
- /* DISCORD_REPLY_ */ int reply);
-
-DISCORD_EXPORT void Discord_UpdateHandlers(DiscordEventHandlers *handlers);
-
-#ifdef __cplusplus
-} /* extern "C" */
-#endif
diff --git a/include/eventfilters.h b/include/eventfilters.h
deleted file mode 100644
index 7847608..0000000
--- a/include/eventfilters.h
+++ /dev/null
@@ -1,36 +0,0 @@
-#ifndef EVENTFILTERS_H
-#define EVENTFILTERS_H
-
-#include
-#include
-
-class AOLineEditFilter : public QObject
-{
- Q_OBJECT
-public:
- bool preserve_selection = false;
-
-protected:
- bool eventFilter(QObject *obj, QEvent *event) override {
- QLineEdit *lineEdit = qobject_cast(obj);
- if (event->type() == QEvent::FocusOut && lineEdit != nullptr && preserve_selection) { // lost focus
- int start = lineEdit->selectionStart();
- #if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0)
- int len = lineEdit->selectionLength();
- #else
- int len = lineEdit->selectedText().length();
- #endif
- if (start != -1 && len != -1) {
- lineEdit->setSelection(start, len);\
- return true;
- }
- }
- return false;
- }
-signals:
- void double_clicked();
-};
-
-
-
-#endif // EVENTFILTERS_H
diff --git a/include/hardware_functions.h b/include/hardware_functions.h
deleted file mode 100644
index 05d3f2a..0000000
--- a/include/hardware_functions.h
+++ /dev/null
@@ -1,14 +0,0 @@
-#ifndef HARDWARE_FUNCTIONS_H
-#define HARDWARE_FUNCTIONS_H
-
-#include
-
-#include
-
-#ifdef ANDROID
-#include
-#endif
-
-QString get_hdid();
-
-#endif // HARDWARE_FUNCTIONS_H
diff --git a/include/interfaces/server_dialog.h b/include/interfaces/server_dialog.h
deleted file mode 100644
index 63817d0..0000000
--- a/include/interfaces/server_dialog.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#include
-#pragma once
-
-#ifndef AO_UI_FAVORITESERVERDIALOG
-#define AO_UI_FAVORITESRRVERDIALOG
-namespace AttorneyOnline {
- namespace UI {
- class FavoriteServerDialog : public QDialog {
- public:
- FavoriteServerDialog() = default;
- ~FavoriteServerDialog() = default;
-
- const QString DEFAULT_UI = "favorite_server_dialog.ui";
- const int TCP_INDEX = 0;
- private slots:
- virtual void onSavePressed() = 0;
- virtual void onCancelPressed() = 0;
- };
- } // namespace UI
-} // namespace AttorneyOnline
-#endif // AO_UI_FAVORITESERVERDIALOG
diff --git a/include/misc_functions.h b/include/misc_functions.h
deleted file mode 100644
index 5287bee..0000000
--- a/include/misc_functions.h
+++ /dev/null
@@ -1,9 +0,0 @@
-#ifndef MISC_FUNCTIONS_H
-#define MISC_FUNCTIONS_H
-
-#include
-#include
-
-void delay(int p_milliseconds);
-
-#endif // MISC_FUNCTIONS_H
diff --git a/include/networkmanager.h b/include/networkmanager.h
deleted file mode 100644
index 3e37222..0000000
--- a/include/networkmanager.h
+++ /dev/null
@@ -1,76 +0,0 @@
-#ifndef NETWORKMANAGER_H
-#define NETWORKMANAGER_H
-
-#include "aoapplication.h"
-#include "aopacket.h"
-
-#include
-#include
-#include
-#include
-#include
-
-#include
-
-enum MSDocumentType {
- PrivacyPolicy,
- Motd,
- ClientVersion
-};
-
-class NetworkManager : public QObject {
- Q_OBJECT
-
-private:
- AOApplication *ao_app;
- QNetworkAccessManager *http;
-
- union {
- QWebSocket *ws;
- QTcpSocket *tcp;
- } server_socket;
- connection_type active_connection_type;
- bool connected = false;
-
- QTimer *heartbeat_timer;
-
- const QString DEFAULT_MS_BASEURL = "http://servers.aceattorneyonline.com";
- QString ms_baseurl = DEFAULT_MS_BASEURL;
-
- const int heartbeat_interval = 60 * 5 * 1000;
-
- bool partial_packet = false;
- QString temp_packet = "";
-
- unsigned int s_decryptor = 5;
-
-public:
- explicit NetworkManager(AOApplication *parent);
- ~NetworkManager() = default;
-
- void connect_to_server(server_type p_server);
- void disconnect_from_server();
-
-signals:
- void server_connected(bool state);
-
-public slots:
- void get_server_list();
- void ship_server_packet(QString p_packet);
- void join_to_server();
- void handle_server_packet(const QString& p_data);
-
- void request_document(MSDocumentType document_type,
- const std::function &cb);
- void send_heartbeat();
-private slots:
- void ms_request_finished(QNetworkReply *reply);
-
-private:
- QString get_user_agent() const {
- return QStringLiteral("AttorneyOnline/%1 (Desktop)")
- .arg(ao_app->get_version_string());
- }
-};
-
-#endif // NETWORKMANAGER_H
diff --git a/include/serverdata.h b/include/serverdata.h
deleted file mode 100644
index 0c34266..0000000
--- a/include/serverdata.h
+++ /dev/null
@@ -1,153 +0,0 @@
-#ifndef SERVERDATA_H
-#define SERVERDATA_H
-
-#include
-#include
-#include
-
-namespace server {
- Q_NAMESPACE
-
- /// The base feature set that almost all servers are supposed to support.
- enum class BASE_FEATURE_SET {
- YELLOWTEXT, ///< Yellow text in in-character messages.
- ///< @since 2.1.0
- FLIPPING, ///< The ability to mirror a character in-game.
- ///< @since 2.1.0
- CUSTOMOBJECTIONS, ///< Enables the use of a single custom objection named
- ///< `custom`.
- ///< @since 2.1.0
- FASTLOADING, ///< Enables the use of "fast loading" instead of the legacy
- ///< loading protocol.
- ///< @since 2.1.0
- NOENCRYPTION, ///< Disables "FantaCrypt" for the remainder of the session.
- ///< @since 2.1.0
- DESKMOD, ///< Allows forcing the appearance or disappearance of the desk.
- ///< @since 2.3 to 2.5
- EVIDENCE, ///< Allows creating and presenting evidence.
- ///< @since 2.3 to 2.5
- CCCC_IC_SUPPORT, ///< The ability to pair up with another user's character,
- ///< the ability to change one's displayed name
- ///< in-character ("showname"), and the ability to perform
- ///< "immediate" preanimations (ones that happen alongside
- ///< text display).
- ///< @since 2.6.0
- ARUP, ///< Areas have more data about them than just their name (including
- ///< their status, their "lockedness", and who is the Case Master in
- ///< the area), and sets the client up to receive and send ARUP
- ///< packets.
- ///< @since 2.6.0
- CASING_ALERTS, ///< The client gains a new window to announce cases with,
- ///< and the settings to set itself up to receive case alerts
- ///< based on casing preferences. No longer used.
- ///< @since 2.6.0
- MODCALL_REASON, ///< Enables entering a custom reason for calling
- ///< moderators.
- ///< @since 2.6.0
- LOOPING_SFX, ///< Enables looping SFX extensions for the in-character
- ///< command.
- ///< @since 2.8.0
- ADDITIVE, ///< Enables "additive" text that allows in-character messages to
- ///< concatenate to the previous one sent by the same character.
- ///< @since 2.8.0
- EFFECTS, ///< Enables effect overlays.
- ///< @since 2.8.0
- Y_OFFSET, ///< Enables support for vertical offsets.
- ///< @since 2.9.0
- EXPANDED_DESK_MODS, ///< Enables desk modifiers 2 through 5.
- ///< @since 2.9.0
- AUTH_PACKET, ///< Enables the use of the AUTH packet.
- ///< @since 2.9.1
- PREZOOM, ///< Preanim zoom.
- CUSTOM_BLIPS ///< Allows the in-character messages to contain data about
- ///< what blips to use for the character's current message.
- };
- Q_ENUM_NS(BASE_FEATURE_SET)
-
- /**
- * @brief Arranges data about the server the client is connected to.
- */
- class ServerData {
- public:
- /**
- * @brief Returns true if one of the standard features exists on the server.
- *
- * @details Internally, this calls get_feature(const QString &f_feature)
- * with the enum's value converted to string.
- *
- * @param f_feature The feature to check for.
- *
- * @return True if the feature exists on the server.
- */
- bool get_feature(const BASE_FEATURE_SET &f_feature) const;
-
- /**
- * @brief Returns true if the feature exists on the server.
- *
- * @param f_feature The feature to check for. Case insensitive.
- *
- * @return True if the feature exists on the server.
- */
- bool get_feature(const QString &f_feature) const;
-
- /**
- * @brief Sets the feature list, overwriting the existing one.
- *
- * @param f_feature_list The new feature list of the server.
- */
- void set_features(const QStringList &f_feature_list);
-
- /**
- * @brief Self-explanatory: gets the software the server is running on.
- *
- * @return As brief description.
- */
- QString get_server_software() const;
-
- /**
- * @brief Self-explanatory: setter for server software.
- *
- * @param f_software The new server software.
- */
- void set_server_software(const QString &f_software);
-
- /**
- * @brief Getter for the server's asset URL.
- *
- * @return As brief description.
- *
- * @see m_asset_url
- */
- QString get_asset_url() const;
-
- /**
- * @brief Attempts to set the new asset URL for the server.
- *
- * @details The function converts the sole parameter into UTF-8, then
- * attempts to percent decode it. The URL is only set if all these steps
- * successfully happen.
- *
- * @param f_asset_url A QString that contains the URL.
- */
- void set_asset_url(const QString &f_asset_url);
-
- private:
- /// The features available on the server. Determines what
- QStringList m_features;
-
- /// The software the server is running.
- QString m_server_software;
-
- /**
- * @brief A QString of an URL that defines the content repository
- * send by the server.
- *
- * @details Introduced in Version 2.9.2.
- * Addresses the issue of contenturl devlivery for WebAO
- * without relying on someone adding the link manually.
- */
- QString m_asset_url;
- };
-} // namespace server
-
-#endif // SERVERDATA_H
diff --git a/include/text_file_functions.h b/include/text_file_functions.h
deleted file mode 100644
index 1da4d92..0000000
--- a/include/text_file_functions.h
+++ /dev/null
@@ -1,13 +0,0 @@
-#ifndef TEXT_FILE_FUNCTIONS_H
-#define TEXT_FILE_FUNCTIONS_H
-
-#include "aoapplication.h"
-#include "file_functions.h"
-#include
-#include
-#include
-#include
-#include
-#include
-
-#endif // TEXT_FILE_FUNCTIONS_H
diff --git a/include/widgets/add_server_dialog.h b/include/widgets/add_server_dialog.h
deleted file mode 100644
index db999bf..0000000
--- a/include/widgets/add_server_dialog.h
+++ /dev/null
@@ -1,44 +0,0 @@
-#pragma once
-
-#ifndef ADD_SERVER_DIALOG_H
-#define ADD_SERVER_DIALOG_H
-
-#include "interfaces/server_dialog.h"
-
-class QComboBox;
-class QDialogButton;
-class QDialogButtonBox;
-class QLabel;
-class QLineEdit;
-class QPlainTextEdit;
-class QPushButton;
-class QSpinBox;
-
-class AddServerDialog : public AttorneyOnline::UI::FavoriteServerDialog {
- Q_OBJECT
-public:
- AddServerDialog();
- ~AddServerDialog() = default;
-
-private:
- QWidget *ui_widget;
-
- QLineEdit *ui_server_display_name_edit;
- QLineEdit *ui_server_hostname_edit;
- QSpinBox *ui_server_port_box;
- QComboBox *ui_server_protocol_box;
- QPlainTextEdit *ui_server_description_edit;
- QDialogButtonBox *ui_server_dialog_button;
-
- // Legacy Server UI
- QLabel *ui_server_legacy_lbl;
- QLineEdit *ui_server_legacy_edit;
- QPushButton *ui_server_legacy_load_button;
-
-private slots:
- void onSavePressed() override;
- void onCancelPressed() override;
- void parseLegacyServerEntry();
-};
-
-#endif // ADD_SERVER_DIALOG_H
diff --git a/include/widgets/direct_connect_dialog.h b/include/widgets/direct_connect_dialog.h
deleted file mode 100644
index 9317524..0000000
--- a/include/widgets/direct_connect_dialog.h
+++ /dev/null
@@ -1,46 +0,0 @@
-#ifndef DIRECT_CONNECT_DIALOG_H
-#define DIRECT_CONNECT_DIALOG_H
-
-#include
-#include
-#include
-
-class QLabel;
-class QSpinBox;
-class QLineEdit;
-class QPushButton;
-class QComboBox;
-class QLabel;
-class NetworkManager;
-
-class DirectConnectDialog : public QDialog {
- Q_OBJECT
-public:
- DirectConnectDialog(NetworkManager* p_net_manager);
- ~DirectConnectDialog() = default;
-
-private slots:
- void onConnectPressed();
- void onServerConnected();
- void onConnectTimeout();
-
-private:
- NetworkManager* net_manager;
-
- QLineEdit* ui_direct_hostname_edit;
-
- QLabel* ui_direct_connection_status_lbl;
- QPushButton* ui_direct_connect_button;
- QPushButton* ui_direct_cancel_button;
-
- QWidget* ui_widget;
- QTimer connect_timeout;
-
- const int TCP_INDEX = 0;
- const QRegularExpression SCHEME_PATTERN{"^\\w+://.+$"};
- const int CONNECT_TIMEOUT = 5 * 1000;
- const QString DEFAULT_UI = "direct_connect_dialog.ui";;
-
-};
-
-#endif // DIRECT_CONNECT_DIALOG_H
diff --git a/include/widgets/edit_server_dialog.h b/include/widgets/edit_server_dialog.h
deleted file mode 100644
index 3c4595e..0000000
--- a/include/widgets/edit_server_dialog.h
+++ /dev/null
@@ -1,46 +0,0 @@
-#pragma once
-
-#ifndef EDIT_SERVER_DIALOG_H
-#define EDIT_SERVER_DIALOG_H
-
-#include "interfaces/server_dialog.h"
-
-class QPushButton;
-class QDialogButton;
-class QLabel;
-class QLineEdit;
-class QComboBox;
-class QSpinBox;
-class QPlainTextEdit;
-class QDialogButtonBox;
-
-class EditServerDialog : public AttorneyOnline::UI::FavoriteServerDialog {
- Q_OBJECT
-public:
- EditServerDialog(int index);
- ~EditServerDialog() = default;
-
-private:
- QWidget *ui_widget;
-
- QLineEdit *ui_server_display_name_edit;
- QLineEdit *ui_server_hostname_edit;
- QSpinBox *ui_server_port_box;
- QComboBox *ui_server_protocol_box;
- QPlainTextEdit *ui_server_description_edit;
- QDialogButtonBox *ui_server_dialog_button;
-
- // Legacy Server UI
- QLabel *ui_server_legacy_lbl;
- QLineEdit *ui_server_legacy_edit;
- QPushButton *ui_server_legacy_load_button;
-
- int index;
- void loadEntry();
-
-private slots:
- void onSavePressed() override;
- void onCancelPressed() override;
-};
-
-#endif // EDIT_SERVER_DIALOG_H
diff --git a/resource/logo_ao2.rc b/resource/logo_ao2.rc
deleted file mode 100644
index ed785de..0000000
--- a/resource/logo_ao2.rc
+++ /dev/null
@@ -1 +0,0 @@
-IDI_ICON1 ICON "logo_ao2.ico"
diff --git a/resource/logo_kfo.ico b/resource/logo_kfo.ico
deleted file mode 100644
index 3c68adf..0000000
Binary files a/resource/logo_kfo.ico and /dev/null differ
diff --git a/resource/logo_kfo.png b/resource/logo_kfo.png
deleted file mode 100644
index d800123..0000000
Binary files a/resource/logo_kfo.png and /dev/null differ
diff --git a/resources.qrc b/resources.qrc
deleted file mode 100644
index 2f8d264..0000000
--- a/resources.qrc
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
- resource/fonts/Ace-Attorney.ttf
- resource/logo_ao2.png
- resource/translations/ao_de.qm
- resource/translations/ao_en.qm
- resource/translations/ao_es.qm
- resource/translations/ao_jp.qm
- resource/translations/ao_pl.qm
- resource/translations/ao_pt.qm
- resource/translations/ao_ru.qm
- resource/ui/options_dialog.ui
- resource/ui/favorite_server_dialog.ui
- resource/ui/direct_connect_dialog.ui
- resource/ui/lobby.ui
- resource/ui/lobby_assets/down-arrow.png
- resource/ui/lobby_assets/up-arrow.png
-
-
diff --git a/shared-release/qrc_resources.cpp b/shared-release/qrc_resources.cpp
deleted file mode 100644
index ceb5bb8..0000000
--- a/shared-release/qrc_resources.cpp
+++ /dev/null
@@ -1,17660 +0,0 @@
-/****************************************************************************
-** Resource object code
-**
-** Created by: The Resource Compiler for Qt version 5.15.2
-**
-** WARNING! All changes made in this file will be lost!
-*****************************************************************************/
-
-static const unsigned char qt_resource_data[] = {
- // /media/stoned/SHARED/Git/AO2-Client/resource/logo_ao2.png
- 0x0,0x0,0x72,0x76,
- 0x89,
- 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
- 0x0,0x0,0x80,0x0,0x0,0x0,0x80,0x8,0x6,0x0,0x0,0x0,0xc3,0x3e,0x61,0xcb,
- 0x0,0x0,0x0,0x6,0x62,0x4b,0x47,0x44,0x0,0xff,0x0,0xff,0x0,0xff,0xa0,0xbd,
- 0xa7,0x93,0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x13,0x0,0x0,
- 0xb,0x13,0x1,0x0,0x9a,0x9c,0x18,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x78,
- 0xda,0xec,0xbd,0x79,0x90,0x65,0xe9,0x59,0xde,0xf9,0xfb,0xb6,0x73,0xce,0xdd,0x6f,
- 0xee,0x95,0x95,0x95,0xb5,0x74,0x55,0x77,0x55,0x77,0x75,0xab,0xd5,0xdd,0xa2,0x25,
- 0xb4,0xa0,0x15,0x81,0x41,0x20,0xc2,0x63,0x4f,0xc0,0xc4,0xd8,0xe0,0x19,0xdb,0x98,
- 0x1,0xcf,0xe2,0x98,0x9,0xec,0xb1,0xac,0xc0,0xa3,0x89,0xf0,0x2c,0x8e,0x98,0x18,
- 0x22,0x8,0x87,0xed,0x19,0xa1,0x99,0x0,0x83,0x85,0xc1,0x3,0x8,0x24,0x4,0x48,
- 0x20,0x9,0xa9,0x1b,0xb5,0xba,0xbb,0x5a,0xd5,0x5b,0x55,0xd7,0x9e,0x4b,0xe5,0x76,
- 0x6f,0xde,0xfd,0x2c,0xdf,0x32,0x7f,0x9c,0x5b,0x59,0x55,0x52,0xb7,0xc4,0x26,0x90,
- 0xb0,0x6f,0xc5,0x89,0xcc,0xbc,0x71,0xb3,0xee,0x3d,0xdf,0xf7,0x7e,0xef,0xf2,0x3c,
- 0xcf,0xfb,0xa6,0xe0,0x2f,0xc1,0x23,0x84,0x70,0xeb,0xdb,0x18,0x58,0x0,0x16,0x81,
- 0x63,0xc0,0x71,0x60,0x15,0x38,0x2,0x2c,0x1,0x33,0x40,0x13,0xa8,0x2,0x11,0xa0,
- 0xa7,0xbf,0x67,0x81,0x2,0x18,0x1,0x3,0xa0,0xb,0x6c,0x3,0x37,0xa6,0xd7,0xb5,
- 0xe9,0xb5,0x5,0xec,0x0,0x29,0x80,0x10,0xe2,0x5b,0x7e,0xed,0xbe,0x25,0xef,0xa0,
- 0x28,0x8a,0xe9,0xfa,0x8b,0x9a,0x52,0x6a,0x15,0x38,0x3,0x3c,0xc,0x3c,0x8,0x1c,
- 0xf7,0xde,0x2f,0x17,0x45,0xd1,0xb2,0xd6,0x9a,0x2c,0xcb,0xcc,0x64,0x32,0x11,0x59,
- 0x9e,0xe3,0x9d,0x23,0x84,0x80,0x73,0xe,0x1f,0x42,0xb9,0x81,0xd3,0xaf,0x4a,0x6b,
- 0xb4,0x52,0x8,0x29,0x51,0x4a,0x11,0x47,0x11,0x95,0x4a,0x25,0x68,0x63,0xa,0xad,
- 0x54,0xa1,0xb5,0xee,0xb,0x21,0x36,0xa7,0x86,0x70,0x1e,0x38,0x7,0xbc,0xe4,0xbd,
- 0xbf,0xde,0xeb,0xf5,0x46,0x95,0x4a,0xc5,0x27,0x49,0x72,0xf7,0xe2,0x7e,0xb,0x18,
- 0x88,0xf8,0x16,0x38,0xd5,0x0,0x78,0xe7,0x40,0x8,0xe5,0x43,0x58,0x94,0x42,0x3c,
- 0x2c,0xa5,0x7c,0x33,0x21,0xbc,0xd1,0x87,0x70,0x26,0x4d,0xd3,0xa5,0xd1,0x68,0x14,
- 0xf7,0x7a,0x3d,0x6,0xc3,0x21,0x69,0x9a,0x62,0x8b,0x2,0x13,0x45,0x28,0xa5,0xd0,
- 0x5a,0x53,0x49,0x12,0xe2,0x24,0x21,0x8e,0x22,0xa4,0x94,0x77,0x6d,0x50,0x98,0x2e,
- 0x84,0xf,0x81,0xa2,0x28,0xc8,0xf3,0x9c,0x3c,0xcf,0x9,0xde,0xe3,0xbd,0xc7,0x79,
- 0x4f,0x1c,0x45,0x44,0x51,0x44,0xad,0x56,0xa3,0x5a,0xad,0x92,0x24,0x49,0xae,0xb5,
- 0xde,0x12,0x52,0xbe,0x4c,0x8,0x4f,0x86,0x10,0x3e,0x1f,0x42,0x78,0x56,0x49,0xb9,
- 0xd,0x58,0x31,0x7d,0x8f,0xff,0x68,0x0,0x7f,0x9a,0x93,0x6e,0x2d,0x3e,0x4,0x21,
- 0xa5,0x9c,0x27,0x84,0x37,0x48,0x29,0xbf,0x8b,0x10,0xbe,0x23,0xcf,0xf3,0x53,0xfb,
- 0xbd,0x5e,0x7d,0x6f,0x77,0x57,0x74,0xf7,0xf7,0xc9,0xf3,0x9c,0x24,0x49,0x68,0x34,
- 0x1a,0xb4,0x5b,0x2d,0xea,0xf5,0x3a,0x71,0x1c,0x13,0x27,0x9,0xea,0x4f,0xb9,0x11,
- 0xce,0x7b,0xf2,0x2c,0xa3,0xb0,0x96,0xc9,0x78,0xcc,0x68,0x3c,0x26,0x4d,0x53,0x9c,
- 0x73,0x44,0xc6,0x50,0xaf,0xd7,0x69,0x34,0x1a,0x21,0xa9,0x54,0x46,0x5a,0xa9,0x4b,
- 0x1,0x3e,0x1b,0x42,0xf8,0xa4,0x80,0x3f,0xcc,0xb2,0x6c,0x5b,0x69,0x1d,0x92,0x38,
- 0xfe,0x8f,0x6,0xf0,0xc7,0x79,0x8c,0xc7,0x23,0x94,0x52,0xb1,0x94,0xea,0x8c,0x94,
- 0xf2,0x7d,0x21,0xf0,0xbd,0x59,0x96,0x3e,0xb4,0xd7,0xe9,0xd4,0x37,0x37,0x37,0x19,
- 0xc,0x6,0x18,0xad,0x99,0x9b,0x9b,0x63,0x61,0x61,0x81,0x66,0xb3,0x49,0x1c,0xc7,
- 0x7f,0x6e,0x2e,0x37,0x78,0x4f,0x61,0x2d,0xa3,0xd1,0x88,0xc1,0x60,0xc0,0x70,0x38,
- 0x24,0x0,0xd5,0x6a,0x95,0x76,0xbb,0x4d,0xb5,0x52,0x19,0x6b,0xad,0xcf,0x3,0xbf,
- 0xe9,0x43,0xf8,0x98,0x77,0xf6,0xbc,0x73,0x21,0xab,0x56,0x2b,0xdf,0x74,0xe1,0xe1,
- 0x9b,0xc6,0x0,0xbc,0xf7,0xf4,0xfa,0x63,0xaa,0x49,0x54,0xf,0x84,0x37,0x2b,0x25,
- 0x7f,0xd0,0x39,0xff,0x9d,0xfb,0xfb,0xdd,0x95,0x1b,0x37,0xae,0x8b,0xbd,0xbd,0x5d,
- 0x2a,0xd5,0x3a,0x87,0x97,0x97,0x59,0x5a,0x5a,0xa2,0x56,0xab,0x1d,0xb8,0xf2,0x6f,
- 0x86,0x70,0x35,0x99,0x4c,0xe8,0xf5,0xfb,0xec,0x77,0x6e,0xe2,0x51,0x34,0x1a,0x2d,
- 0xda,0xad,0x76,0x48,0x92,0x64,0x13,0xf8,0x14,0xf0,0xb,0x21,0xf0,0xb9,0xa2,0x70,
- 0xfd,0x7a,0xfd,0x9b,0xc7,0x10,0xfe,0xc2,0xd,0x60,0xbf,0xd7,0xa3,0x5a,0xa9,0xe2,
- 0xbc,0xaf,0x4b,0x29,0xde,0x29,0x10,0x7f,0x2b,0xcb,0xb2,0x77,0xde,0xbc,0xb9,0xd9,
- 0xbe,0x72,0xf5,0x32,0xd6,0xa6,0x1c,0x3e,0x7c,0x88,0xd5,0x23,0x73,0xcc,0xcc,0xac,
- 0x22,0x44,0xf4,0x4d,0x1c,0xb4,0x2c,0x79,0xb6,0xcb,0x24,0xb,0xec,0xef,0xf7,0x18,
- 0xe,0x26,0x18,0x53,0x65,0x66,0x66,0x8e,0x7a,0xbd,0xde,0x53,0x4a,0x7d,0x6,0xc2,
- 0x47,0x7c,0x8,0xbf,0x93,0xc4,0x71,0x7f,0x6d,0x73,0x93,0xd5,0xc3,0x87,0xff,0xc3,
- 0x35,0x80,0x7e,0xbf,0xf,0x42,0x54,0x94,0x52,0x6f,0x57,0x4a,0xfd,0xdd,0x34,0x4d,
- 0xdf,0x73,0xfd,0xfa,0xf5,0xc6,0xb5,0x6b,0xd7,0x48,0x12,0xc5,0xc9,0x93,0x2b,0x2c,
- 0x2d,0xce,0x13,0x45,0x15,0x84,0x10,0x48,0x59,0x45,0x8,0xfd,0x4d,0x1a,0xb9,0x2,
- 0x21,0x58,0x9c,0x1b,0x13,0x82,0x27,0x4,0x8b,0x75,0x8e,0xc1,0xc0,0xb2,0xdf,0x1d,
- 0xe3,0x83,0xa7,0xdd,0x6e,0xd3,0x68,0x34,0x86,0x4a,0xa9,0xdf,0x3,0xfe,0xa5,0xf3,
- 0xee,0x53,0x1,0x31,0x6e,0xd6,0x6a,0xff,0x61,0x19,0xc0,0xfe,0x60,0x80,0xf,0x41,
- 0x29,0xc4,0xeb,0xa5,0x94,0x3f,0x5e,0x14,0xc5,0xf,0x5c,0xbf,0x7e,0x75,0xe6,0xca,
- 0xe5,0x4b,0xb4,0xdb,0xb3,0x9c,0x3e,0x7d,0x1f,0x73,0x73,0x2d,0x84,0x48,0x11,0xc2,
- 0xa0,0x54,0xd,0x21,0xe4,0xb7,0x48,0xd5,0x1a,0x8,0xc1,0xe3,0xdc,0x18,0xe7,0x73,
- 0x84,0xa8,0x42,0xd0,0x8c,0x46,0x43,0x6e,0xdc,0x78,0x1e,0xe7,0x60,0x71,0xe9,0x4,
- 0x8d,0x46,0xb3,0x27,0xa5,0xfc,0x75,0x2,0x3f,0x63,0x2d,0x4f,0x49,0x89,0x6d,0xb5,
- 0xea,0x7f,0xb9,0xd,0x60,0x6b,0x67,0xb,0xad,0x22,0x2,0xe1,0x90,0x56,0xfa,0xbf,
- 0x8,0x21,0xfc,0x9d,0x8d,0x8d,0x8d,0xe3,0x2f,0xbd,0xf4,0x3c,0x36,0xbd,0xce,0xfd,
- 0x67,0x4e,0x71,0xfa,0xec,0xbb,0x50,0xaa,0x74,0xf3,0x52,0x4a,0x84,0x50,0xdf,0xc2,
- 0x0,0x95,0xc3,0xfb,0x80,0xf7,0xe0,0x5c,0xc6,0xd6,0xe6,0x93,0x8c,0x86,0x3,0x84,
- 0x3e,0xa,0x22,0xa2,0xd5,0x9e,0xa3,0x5a,0xa9,0xde,0x10,0x42,0x7c,0xb8,0xb0,0xc5,
- 0xbf,0x9e,0x6d,0x37,0xd7,0x2f,0x5f,0x59,0xe3,0xde,0x53,0x27,0xfe,0xf2,0x19,0xc0,
- 0xcd,0xed,0x6d,0x2,0x41,0x47,0xda,0xbc,0x4b,0x4a,0xf5,0xf,0xf7,0xf7,0xf7,0xdf,
- 0xf6,0xfc,0xf3,0x5f,0xd6,0x45,0x31,0xe6,0x75,0xaf,0x3b,0x4d,0x2c,0xfb,0x8c,0xfa,
- 0x1b,0xcc,0x2c,0x3e,0xc0,0xec,0xfc,0x69,0x94,0x32,0xfc,0x65,0x79,0x38,0x67,0xe9,
- 0xec,0x5e,0xa4,0xbb,0xfb,0x2,0xb5,0xc6,0x12,0xb3,0xb,0xa7,0x18,0x8e,0xc6,0xec,
- 0xec,0xf6,0x51,0xb2,0x42,0xab,0x35,0xe3,0xa2,0x28,0xfa,0x2,0xc1,0xff,0xaf,0xd9,
- 0x24,0xfd,0xad,0x5a,0xbd,0x5e,0xb4,0xda,0xad,0xbf,0x1c,0x6,0xf0,0xdb,0xbf,0xfd,
- 0x65,0xde,0xfa,0xb6,0x13,0xc,0x6,0xd9,0xa2,0x90,0xe2,0xc7,0xbd,0xb3,0x7f,0xef,
- 0x95,0x57,0x5e,0x59,0xbc,0x76,0xed,0x1a,0x67,0xce,0x1c,0xe3,0xbe,0xfb,0x8e,0x61,
- 0x8c,0x66,0x3c,0xe8,0xb2,0xbd,0xf1,0x65,0x82,0x10,0x1c,0x3a,0xfc,0x8,0x8d,0xe6,
- 0xca,0xad,0x34,0xf9,0xf6,0x7,0x7d,0xd5,0x8c,0x59,0x94,0x48,0xce,0x1,0xa4,0x73,
- 0xeb,0x75,0xe1,0x8e,0xe7,0xbf,0xf2,0x57,0xc4,0x57,0xdc,0x7e,0x78,0x8d,0x9f,0xbf,
- 0xea,0x48,0xdf,0x7e,0x9d,0x78,0x8d,0xd7,0x85,0x70,0xc7,0xc7,0x29,0xbf,0x1b,0xe,
- 0x6e,0x72,0x73,0xe3,0x69,0x84,0xf7,0xcc,0x2f,0x3f,0x48,0xa5,0xde,0x46,0x8,0xb0,
- 0x4e,0xd2,0xed,0x66,0xec,0x77,0x7b,0xd4,0x6a,0x35,0xea,0xf5,0xfa,0x9e,0x10,0xe2,
- 0x5f,0x23,0xc4,0xff,0x99,0x54,0xaa,0x37,0xb7,0x36,0xd6,0x38,0x79,0xf2,0xd4,0x37,
- 0xb4,0x52,0xf8,0x86,0x1a,0xc0,0xb5,0xb5,0x35,0xba,0x59,0x8f,0xf9,0x64,0xe6,0xdb,
- 0xa2,0x28,0xfa,0xa9,0x5e,0xaf,0xf7,0xde,0xa7,0x9f,0xfd,0x92,0x4e,0x62,0xc5,0x9b,
- 0xde,0xf8,0x16,0x5a,0xad,0xa,0x21,0x4c,0xa6,0xb,0xa9,0x19,0xf6,0x77,0x99,0x8c,
- 0x76,0x49,0xe2,0xa,0x49,0x52,0x47,0xe9,0x18,0x21,0x24,0x81,0x80,0x14,0x25,0x44,
- 0x7b,0xf7,0x43,0xe2,0xf,0xe0,0x7c,0x10,0xf8,0xd7,0xb8,0x21,0x71,0x57,0x8c,0x46,
- 0x8,0x2,0x12,0x1,0x84,0x5b,0x68,0x60,0x8,0x7,0xaf,0x93,0xb8,0xe9,0x46,0xa,
- 0x2,0xb7,0xc,0x30,0x20,0xf0,0x4,0xe4,0xc1,0x73,0x12,0xb,0xb8,0xaf,0x38,0xed,
- 0x1e,0x1f,0x3c,0x2,0x51,0xe6,0x2,0x36,0x23,0xcf,0x53,0x84,0x4a,0x88,0x93,0x19,
- 0x4c,0x14,0xe1,0x43,0x3a,0x7d,0xaf,0xa,0x42,0x26,0xc,0x6,0x1d,0x36,0x37,0x6e,
- 0x50,0x64,0x8e,0xa5,0xe5,0x63,0xd6,0x18,0xf3,0x69,0xef,0xfd,0x4f,0xbd,0xf0,0xf2,
- 0x8b,0x5f,0x38,0xb2,0xbc,0x12,0x4e,0xdf,0x77,0xef,0xb7,0x9e,0x1,0x5c,0xbd,0x7a,
- 0x8d,0x3c,0xcf,0xa3,0x7a,0xa3,0xf1,0x57,0x3,0xfc,0xd3,0xab,0x57,0x2e,0xdf,0xf7,
- 0xd4,0x13,0x9f,0xe4,0xbe,0x93,0x8b,0xbc,0xf1,0xed,0xdf,0x4f,0x1c,0xb5,0xa6,0x27,
- 0x29,0x47,0x49,0x8f,0xd1,0x4d,0x84,0xd0,0x84,0xe0,0xbf,0xfa,0x13,0x86,0x5b,0x1e,
- 0xe0,0x9b,0xad,0x8a,0xd,0xaf,0xfa,0x54,0xf8,0xaa,0x4f,0x29,0x40,0x48,0x4a,0xea,
- 0xc1,0x53,0xd8,0x3e,0xd6,0x7,0xa4,0xa8,0x12,0x82,0x23,0xcf,0xfb,0x6c,0x5d,0x7e,
- 0x92,0x6b,0x97,0x5e,0x46,0x37,0x4f,0xb2,0x7a,0xfc,0x61,0x6a,0xf5,0xc6,0xe5,0x10,
- 0xc2,0x87,0x26,0x79,0xfe,0x8b,0x5a,0x88,0xf4,0xf8,0xb1,0xa3,0xdf,0x90,0x3b,0xf8,
- 0x86,0x64,0x58,0x37,0xd6,0xd6,0x91,0x52,0x36,0x22,0x63,0xfe,0xfb,0xbc,0x28,0xfe,
- 0xe7,0x67,0x9e,0x7d,0xfa,0xc8,0xf3,0xcf,0x7c,0x92,0x33,0x47,0x24,0xf3,0x33,0x9,
- 0x2a,0xae,0x51,0xa9,0xcf,0x20,0x84,0x46,0xeb,0x18,0xa3,0x2b,0xd3,0xf2,0xae,0x4,
- 0x46,0xee,0xba,0x28,0xbf,0x96,0x6e,0xfb,0x5b,0xe0,0x12,0x2,0x21,0xe4,0x1d,0x97,
- 0xb8,0x23,0xe4,0x4,0x42,0x8,0x4,0x21,0xc9,0x6d,0x81,0xb3,0x13,0xbc,0xcf,0xe8,
- 0xed,0x5c,0xa5,0x7f,0xfd,0x69,0xa4,0x28,0x28,0xdc,0x8,0x47,0x4c,0x51,0xf8,0x99,
- 0x28,0x4a,0xde,0x15,0x69,0x9d,0x84,0x10,0x9e,0xfe,0xc7,0xff,0xf8,0x3,0xe9,0x7d,
- 0xf7,0xde,0xc3,0xaf,0xff,0xfa,0xc7,0xbe,0xb9,0x3d,0xc0,0xb5,0xeb,0x37,0x28,0x8a,
- 0xe2,0x50,0x9c,0x24,0x3f,0x35,0xe8,0xf,0x7e,0xf8,0xf,0x3e,0xf7,0xbb,0x49,0x24,
- 0xfb,0x3c,0xfa,0xe8,0x3,0xf4,0x37,0x5e,0x40,0x6a,0x4d,0xa3,0xb5,0xc0,0xe1,0x53,
- 0x6f,0x23,0xa9,0x1f,0x22,0x36,0x5f,0xf,0xc2,0xfd,0x5a,0x71,0x59,0xbc,0xc6,0xa9,
- 0x14,0xdf,0xb8,0x13,0xfe,0x9a,0xa5,0x5f,0x98,0xd6,0xff,0x8e,0x10,0x3c,0x3e,0x38,
- 0xbc,0xb7,0x77,0x5c,0xe,0x1f,0xee,0xf8,0x7e,0xfa,0x3c,0xd6,0xb1,0x7f,0xe3,0x3c,
- 0xa3,0xee,0xd,0x52,0xaf,0x98,0x39,0xfa,0x6,0xd2,0xfd,0x1b,0x6c,0x6d,0xed,0xb2,
- 0x70,0xfc,0x6d,0xcc,0xcf,0x2f,0xe7,0x4a,0xe9,0x5f,0xb0,0xb6,0xf8,0x27,0x52,0xaa,
- 0x1b,0x27,0x8e,0x1f,0xfd,0xe6,0x34,0x80,0xa7,0xbf,0x74,0x8e,0xa5,0xe5,0x5,0x46,
- 0xa3,0xf1,0x29,0x63,0xcc,0xff,0xde,0xe9,0x74,0xbe,0xff,0xe9,0x67,0x9e,0x96,0xb,
- 0xad,0x9c,0x43,0xf3,0x8a,0xc5,0x95,0xd3,0xf4,0x76,0xd7,0x49,0xf7,0x2e,0x61,0xb4,
- 0xa2,0x31,0x77,0x8c,0xe6,0xdc,0x89,0x69,0x5c,0x2f,0x4f,0x4f,0x79,0x5a,0x40,0x20,
- 0x41,0x80,0x36,0x35,0xe2,0xc6,0x62,0xe9,0x42,0xcb,0x65,0xa6,0x48,0xb7,0x8,0x3e,
- 0x7,0x4,0xca,0x34,0x51,0xa6,0x3d,0xc5,0x8,0xfe,0x9c,0x5c,0xfc,0x9d,0xcf,0x6,
- 0x4f,0x96,0xf7,0x70,0x2e,0xc3,0x7,0x4b,0xf0,0xe,0x1f,0xdc,0x6d,0x63,0x20,0x10,
- 0xbc,0x7f,0xf5,0x44,0x52,0x8,0x6c,0x3e,0x66,0xff,0xda,0x39,0x8a,0x74,0x80,0x75,
- 0x81,0x64,0xf6,0x24,0x8d,0xd9,0x45,0xd6,0x2e,0x3c,0x41,0xa5,0x7d,0x98,0xd6,0xc2,
- 0xc3,0x64,0x99,0x21,0xa9,0x54,0x82,0xd6,0xfa,0xb7,0x2,0xe1,0x1f,0xcc,0xb4,0xe7,
- 0x5e,0x9c,0x9d,0x69,0xfe,0x99,0x25,0x86,0x7f,0x26,0xff,0xcb,0xf9,0x17,0x5e,0xa0,
- 0x5e,0x6d,0x90,0xe5,0xd9,0x59,0xa5,0xe4,0x4f,0x6f,0x6e,0x6e,0xbe,0xeb,0xc5,0x97,
- 0x5e,0xe4,0xad,0x6f,0x79,0x33,0xcb,0x87,0x66,0xb8,0xfa,0xf2,0x67,0x70,0x6e,0x42,
- 0xab,0xb5,0x4c,0x3e,0xd8,0xc5,0x18,0x83,0x9f,0xa6,0x6f,0xbe,0xc8,0x4b,0x94,0x4f,
- 0x47,0x98,0x4a,0x13,0xa1,0xd,0x84,0x80,0xd6,0x12,0xa5,0x13,0x4c,0xa4,0xf,0xc,
- 0xa0,0xe4,0xc,0xa,0x82,0x14,0x7,0x49,0x81,0x8,0x1a,0xa4,0x2,0x59,0x72,0xfb,
- 0xf8,0x0,0x4a,0xfd,0x91,0x6f,0x5d,0x7c,0xed,0x73,0xfd,0xf5,0xa,0x7d,0x7c,0x28,
- 0xc0,0xb9,0xf2,0x12,0xb7,0x13,0xc2,0x2,0x85,0x45,0x22,0xb2,0x14,0x11,0x0,0x21,
- 0x9,0xce,0xe2,0x8a,0x1c,0xe7,0xb,0x9c,0xcd,0x9,0x22,0x10,0x6c,0x81,0x40,0xe0,
- 0x90,0x34,0xe7,0x4f,0xb1,0xb1,0xf6,0x1c,0x59,0x9e,0xb1,0x74,0xec,0x21,0x56,0x56,
- 0x1e,0x22,0x9d,0x38,0xd6,0xd6,0xd7,0xd1,0xda,0x10,0x45,0xf1,0x67,0x85,0x10,0x7f,
- 0x5f,0x4a,0x75,0xee,0xb9,0x73,0xcf,0xf2,0xfd,0xdf,0xff,0xbe,0x3f,0xb5,0x21,0xfc,
- 0xa9,0xd,0xe0,0x17,0x7f,0xe9,0xdf,0xf1,0xce,0xb7,0xbf,0x83,0xfd,0xfd,0xfd,0x87,
- 0x94,0x92,0x3f,0x73,0xed,0xda,0xb5,0xb7,0x5d,0xbe,0x72,0x89,0xef,0x7c,0xcf,0xbb,
- 0x59,0x5a,0x5a,0x24,0x84,0xc0,0xb0,0xb7,0xc5,0xd6,0xc6,0x73,0x34,0xdb,0x4b,0xb4,
- 0x66,0x57,0x91,0x52,0x95,0xc9,0x5e,0xf0,0x84,0x69,0xc6,0xac,0x84,0x47,0x48,0x81,
- 0x52,0x6a,0x1a,0xfb,0x6f,0x97,0x6b,0x1,0x41,0x11,0xf4,0x34,0x6f,0x17,0x77,0x95,
- 0x79,0xaf,0xb6,0x49,0x5f,0x2f,0xa0,0x28,0xe1,0x41,0x56,0xca,0x7c,0xdf,0xa7,0x77,
- 0x57,0x91,0xe2,0x8f,0xb7,0x34,0xe2,0x2b,0x4e,0xb6,0x14,0x96,0x0,0x78,0x24,0x10,
- 0x50,0xc1,0x95,0x15,0xc1,0xb4,0x42,0x80,0x40,0xf0,0xe,0xe7,0x3d,0xa8,0x8,0x21,
- 0x4,0xde,0x4f,0xc9,0xb0,0xce,0x1a,0x83,0xe1,0x2e,0x49,0x63,0x96,0xb9,0xd9,0x63,
- 0xb4,0x9b,0xcb,0x40,0x60,0x67,0x67,0x8b,0x2f,0xfe,0xe1,0x17,0x58,0x3d,0x76,0x1f,
- 0xb5,0x5a,0xed,0x9,0xe0,0xbf,0x4a,0x92,0xf8,0x99,0x6e,0xaf,0xcf,0x43,0xf,0xdc,
- 0xff,0x17,0x67,0x0,0x5f,0xfc,0xc3,0xa7,0x98,0x5d,0x58,0x20,0x9d,0x8c,0xcf,0x6a,
- 0x6d,0xfe,0xc5,0x95,0x2b,0x97,0xdf,0xf6,0xdb,0x9f,0xf8,0x15,0xbe,0xf7,0x7b,0xbe,
- 0x87,0x37,0xbd,0xe5,0x9d,0xd3,0x72,0x2b,0x10,0xe9,0x18,0x6b,0xc7,0x84,0xe0,0xa6,
- 0x49,0x92,0xfa,0xaa,0xf,0x21,0x70,0x10,0xdc,0x14,0xfd,0x13,0x77,0x95,0x7a,0x1,
- 0x70,0xa8,0x3b,0x3c,0x41,0xf8,0x13,0x7c,0xfc,0xe9,0x6b,0xdd,0xa4,0x8c,0xd3,0x44,
- 0x40,0xa0,0xb0,0x23,0xac,0x2f,0x10,0x42,0x11,0x47,0x8d,0x29,0xa,0xf9,0x27,0xcf,
- 0x23,0x24,0x6e,0x5a,0x5a,0x96,0x46,0x2a,0xa7,0xa5,0x69,0xe9,0x9c,0xc2,0x6d,0xcf,
- 0xc1,0xad,0x52,0x34,0xe0,0xc3,0x6d,0x1,0x4c,0x98,0x1a,0x76,0x64,0x2a,0x18,0x93,
- 0x30,0x99,0x8c,0x78,0xf2,0x73,0x9f,0xe4,0xe9,0x2f,0x7e,0x86,0xa5,0x23,0xa7,0x39,
- 0xfb,0xf0,0x5b,0xa8,0x56,0xab,0x4f,0xfa,0x10,0xfe,0x5e,0xb3,0xd5,0x78,0x76,0xe3,
- 0xfa,0x6,0xdf,0xf6,0xf8,0xa3,0x7f,0xbe,0x6,0xf0,0x91,0x8f,0x7c,0x84,0x1f,0xfe,
- 0xe1,0x1f,0xe6,0xc5,0x97,0x2e,0x52,0xe4,0xd9,0x29,0x13,0x99,0x7f,0x79,0xed,0xda,
- 0xb5,0x77,0x7d,0xf2,0xe3,0xff,0x8e,0xf9,0xa6,0xa0,0x56,0xab,0x73,0xfa,0x81,0xc7,
- 0x78,0xfb,0x7b,0xde,0x4f,0x9c,0x54,0x90,0xe2,0x2f,0x9e,0xb6,0x75,0x45,0x1f,0x97,
- 0xad,0x91,0x8f,0x2f,0xe3,0x7d,0x3e,0xb5,0xa1,0x40,0x40,0x11,0xcc,0x3c,0x42,0xc6,
- 0x44,0xd1,0xc,0x49,0x75,0x15,0x21,0xbf,0x39,0x4,0x1c,0x45,0x91,0xf3,0x85,0xcf,
- 0x7c,0x82,0x27,0xff,0xe0,0x93,0x28,0x55,0xe2,0xf,0x4b,0x47,0xce,0xf0,0xc0,0xeb,
- 0xde,0x4c,0xa5,0x52,0xf9,0x6c,0x8,0xfe,0x47,0xa5,0x14,0x2f,0xce,0xce,0x2c,0x72,
- 0xee,0xdc,0x53,0xbc,0xf7,0xbd,0xef,0xfd,0xf3,0xf3,0x0,0xe7,0xce,0x9d,0x27,0x10,
- 0x96,0xb5,0xd6,0xff,0x62,0x7d,0x7d,0xfd,0xfd,0x1f,0xff,0xd8,0xbf,0x65,0xb1,0x25,
- 0xa8,0x56,0x2b,0x78,0xef,0x9,0x41,0x70,0xfa,0x81,0x47,0x68,0xb5,0x67,0x4b,0xbd,
- 0x9d,0x8e,0x90,0x12,0xa4,0x2a,0xcf,0x71,0xa4,0x35,0xfa,0x16,0x9f,0x2f,0x40,0x45,
- 0xd1,0x81,0x6b,0xbf,0xe5,0x32,0x83,0x77,0xf8,0x52,0xff,0x77,0xf0,0xa8,0xd4,0xea,
- 0x48,0xa5,0xf,0x5e,0xc7,0xd7,0x30,0x2e,0x21,0xa0,0x5e,0x93,0x98,0x28,0x66,0xd2,
- 0x7d,0x1e,0xc5,0x26,0x42,0xda,0xd7,0x58,0x6,0x41,0x8,0x1a,0xd4,0x29,0xaa,0x73,
- 0xaf,0xc7,0x87,0x18,0xef,0x2d,0xc1,0xfb,0x69,0x76,0x3f,0xbd,0xbc,0xbf,0x9d,0xc5,
- 0x3b,0x8b,0xf3,0xe,0xef,0x2c,0xde,0xe6,0xd8,0xc1,0x10,0xe7,0x1c,0xe,0x8f,0x17,
- 0xa0,0xe2,0x4,0x94,0x42,0x4,0xf0,0x53,0x7c,0x43,0x8,0x49,0xb0,0x96,0xe0,0x1c,
- 0x3e,0x40,0xee,0x6f,0x55,0x10,0x1,0xef,0x1c,0xde,0x7b,0xac,0x75,0x14,0x79,0x41,
- 0x6f,0xbf,0xc3,0xc5,0x97,0x9e,0xbd,0xb,0x1b,0x99,0x64,0x19,0xcb,0xab,0x67,0x79,
- 0xf8,0xb1,0xb7,0x11,0x45,0xd1,0x6f,0x59,0xe7,0xff,0xae,0x12,0xe2,0xfa,0x43,0xf,
- 0x9d,0x3d,0x28,0xa3,0xbf,0xa1,0x6,0x10,0x42,0xe0,0x99,0x67,0xce,0x21,0x2,0x4d,
- 0x13,0xc7,0xff,0x7c,0x7b,0x67,0xfb,0xbf,0xfc,0x95,0x5f,0xfe,0x39,0x59,0xd3,0x63,
- 0xe6,0xe6,0xda,0x10,0x42,0x19,0xc7,0xa7,0x5b,0x24,0x95,0x44,0x1a,0x81,0x12,0x2,
- 0xad,0x4,0xc2,0x24,0x54,0x84,0x43,0x1b,0xd0,0x5a,0xe0,0x30,0x68,0x1f,0xd0,0xf5,
- 0x1a,0x5a,0x8a,0xbb,0x6e,0xa2,0x48,0x33,0x5c,0x3a,0x42,0x8,0x81,0x96,0x2,0xe7,
- 0x3,0xf5,0x99,0x39,0x6a,0x8d,0xd6,0x1f,0xb1,0xfa,0xb,0x2c,0x2e,0xc4,0xcc,0x34,
- 0x14,0x4a,0xec,0x53,0xd2,0xb,0x82,0x20,0x6b,0x5f,0x1,0x81,0x38,0x84,0x1f,0x1,
- 0x1,0x67,0x5,0x9e,0x45,0x3a,0xfb,0x9a,0xde,0x70,0x52,0x22,0x82,0xd3,0xcc,0xbe,
- 0x4c,0xfa,0xfc,0x34,0xde,0x4f,0x37,0x6d,0xfa,0x7c,0x3e,0x1a,0x33,0xde,0xe9,0xe0,
- 0x15,0xb8,0x50,0x94,0xa2,0xd3,0x4a,0xd,0x53,0xa9,0xdc,0x81,0x34,0x82,0xb,0xe0,
- 0xc7,0x63,0xbc,0x17,0x58,0xa,0x8a,0xc2,0x22,0x7c,0xc0,0xfb,0x40,0x9a,0x3b,0xa,
- 0x5b,0xe6,0x9,0x45,0x11,0xb0,0x2e,0xe0,0xbc,0x47,0x6,0xf0,0xd3,0x8a,0x62,0x98,
- 0x67,0x60,0x3d,0xa7,0xee,0x7f,0x23,0xf,0xbe,0xee,0xdb,0x83,0x31,0xfa,0xe7,0xbd,
- 0x73,0xff,0x75,0x92,0x24,0xdd,0xfb,0xef,0x3f,0xfd,0x8d,0xf5,0x0,0x3f,0xfb,0xb3,
- 0x1f,0xe6,0xd1,0x6f,0x7b,0x13,0x83,0x61,0x3f,0xaa,0x57,0x6a,0xff,0x70,0x30,0x1c,
- 0xfe,0x8f,0x1f,0xff,0xcd,0x5f,0x8a,0x35,0x3b,0xcc,0x35,0xeb,0x4,0x5,0x4a,0x28,
- 0x94,0x89,0x31,0x4a,0x23,0xcb,0xac,0x88,0xa0,0x14,0x46,0xa,0x8c,0xd4,0x18,0x15,
- 0x61,0x34,0x60,0x14,0xad,0x66,0x82,0xd6,0x31,0xc2,0x39,0x52,0x63,0xa8,0xa,0x8b,
- 0xa,0x81,0x10,0x4,0x42,0x69,0xc6,0xfd,0x11,0x83,0xdd,0xe,0xed,0x44,0x52,0x8b,
- 0x24,0x37,0x47,0x5,0xb3,0x2b,0x47,0x98,0x3f,0xb4,0x30,0x3d,0x35,0xa5,0xb1,0x84,
- 0x10,0xa6,0x27,0xb5,0x8c,0xb3,0x4a,0x48,0xb4,0x31,0x78,0x59,0x5,0x97,0xd1,0x92,
- 0x7b,0xd4,0x9a,0x39,0x3e,0x5e,0x22,0xc8,0x16,0x5e,0x2d,0x10,0x30,0x7,0xb9,0x84,
- 0xc0,0x21,0xdd,0xe,0xb8,0x1e,0xa2,0x58,0x23,0xed,0x47,0xf4,0xf3,0x36,0x41,0x27,
- 0x48,0x21,0x49,0xd3,0x21,0x52,0x82,0xd2,0xf2,0xae,0x32,0x2e,0x84,0x40,0x66,0x3,
- 0xa,0xcb,0x60,0x7f,0xc4,0xcd,0xab,0xd7,0x59,0xa9,0x6b,0x32,0xeb,0xe9,0x4e,0x1c,
- 0xd5,0xb9,0x19,0x6a,0xcd,0x3a,0x1,0x7f,0x80,0x5,0x8d,0x82,0x22,0xf6,0x81,0xc2,
- 0x3a,0x26,0x79,0x46,0x70,0x5,0x21,0x2f,0x48,0x1d,0xe4,0x99,0xc3,0x86,0x2,0x5,
- 0xd8,0xdc,0xe2,0x9c,0xc5,0x6,0x87,0xcf,0x2d,0x5,0x1e,0xe1,0x1c,0xce,0x79,0x8a,
- 0x0,0x52,0x1a,0x4e,0xde,0xf7,0x66,0x8e,0x1c,0x7b,0xa0,0x50,0x52,0xfd,0xf3,0x34,
- 0x9d,0xfc,0x4f,0x21,0x84,0xf4,0x4d,0x6f,0x7a,0xfc,0x8f,0xe5,0x5,0xf4,0x1f,0xf5,
- 0x85,0x7b,0x7b,0x7b,0xfc,0xa3,0x7f,0xf8,0x4f,0x78,0xdf,0xfb,0xff,0x13,0xae,0x5d,
- 0xcd,0xff,0xda,0x64,0x32,0xf9,0xef,0x7e,0xef,0x77,0x3f,0x11,0x57,0x45,0x8f,0xe3,
- 0x47,0xf,0x97,0xa7,0xd4,0x94,0x31,0xb5,0x84,0xdb,0x15,0x46,0x2b,0x94,0x36,0xc4,
- 0xc2,0x22,0xb5,0xa6,0x12,0xc7,0x28,0x1d,0x11,0xa4,0x24,0xd2,0x86,0x4a,0xb5,0x56,
- 0xc6,0xb6,0xe0,0x71,0x14,0xa8,0x90,0xa0,0xa6,0x47,0x59,0x28,0x4f,0x12,0x72,0x44,
- 0x4f,0xd3,0x8c,0x35,0xaa,0x12,0x11,0x65,0x7d,0x16,0xe6,0xeb,0xb4,0xeb,0xd1,0xed,
- 0xec,0x3f,0x4c,0x13,0x2e,0x29,0x9,0xaa,0xc,0x7,0x91,0x52,0x98,0x28,0x6,0xe1,
- 0xb1,0xe3,0x31,0x3e,0x73,0x64,0x72,0x19,0x11,0x9f,0x41,0xa9,0x6,0xc2,0x17,0x4,
- 0x5f,0x10,0x0,0x29,0xc,0x52,0x19,0x30,0x33,0x38,0x3b,0x40,0xb8,0x21,0xa6,0x3a,
- 0x66,0x71,0xbe,0x8e,0x94,0x1a,0x17,0xea,0x58,0x5b,0x23,0xb8,0x49,0x59,0xb5,0xd8,
- 0xa9,0x3b,0x16,0xb7,0xbc,0x40,0x19,0x6a,0x2a,0x91,0xa2,0xb7,0x29,0x30,0xd5,0x84,
- 0x28,0xb3,0x14,0xb9,0xa5,0x5d,0xab,0x51,0xad,0xd7,0xca,0x8f,0x8,0x20,0x2c,0x6d,
- 0xa1,0x40,0x1a,0x64,0x70,0xd8,0x0,0x79,0x96,0x31,0x1a,0x8d,0x11,0xc1,0xe3,0xbc,
- 0x23,0xb3,0xe,0x3b,0x49,0xb1,0x56,0x92,0x53,0x45,0xb8,0x14,0x6b,0xdd,0xb4,0x4,
- 0x6,0xe7,0x2,0xce,0x5,0xf2,0xc2,0xb1,0x79,0xf5,0x1c,0x51,0x54,0x33,0xf3,0x4b,
- 0xab,0x3f,0xa1,0x8d,0xb9,0xd4,0xff,0xd4,0x6f,0xfe,0xdf,0x9f,0xd8,0xdc,0x24,0x38,
- 0x87,0x50,0xea,0xcf,0xce,0x0,0x3e,0xf0,0x81,0xf,0xf0,0xcf,0xfe,0xb7,0xff,0x83,
- 0x1f,0xfb,0x89,0x1f,0xe3,0xd2,0xc5,0xb,0x8f,0x4b,0xa9,0x7e,0xea,0xe9,0x2f,0x3d,
- 0xd1,0x9e,0x8f,0xb7,0x38,0xfb,0xe0,0x2a,0xca,0x68,0xa4,0x2a,0x6b,0x71,0xef,0x15,
- 0x2,0x87,0x16,0x10,0x49,0x5,0x4a,0x23,0x5,0xf8,0xb8,0x46,0xac,0x25,0x41,0x6b,
- 0x3c,0x82,0xaa,0x12,0xe8,0x38,0x46,0x28,0x43,0x89,0x96,0x6,0x40,0x4e,0x4f,0x4a,
- 0x19,0x40,0x72,0xeb,0x70,0x84,0x72,0x73,0xb5,0x41,0x8,0x41,0x52,0x8d,0x51,0x71,
- 0x7c,0x87,0x6c,0xfc,0x4e,0x66,0xcf,0x81,0x1f,0x13,0xb2,0x1,0x32,0x9e,0xc5,0xe5,
- 0x19,0xc5,0xb8,0x4f,0xaf,0xa8,0xa0,0xa2,0x39,0xea,0xc1,0xa0,0x11,0xf8,0xe0,0x28,
- 0x9c,0x63,0x67,0x67,0x8b,0xb9,0xd9,0x23,0xd4,0xeb,0x49,0x19,0xd3,0x31,0x64,0xea,
- 0x7e,0x8a,0xfe,0x79,0xcc,0x70,0xd,0xd3,0x98,0x2f,0xef,0xcd,0xed,0xe1,0xa,0xb,
- 0x51,0x1d,0x79,0x4b,0xe1,0x7b,0x7,0x1b,0x28,0x90,0x54,0xbd,0x22,0x56,0x12,0x54,
- 0x44,0x90,0x9e,0x20,0x2,0xba,0x16,0x51,0x9f,0x6d,0xa2,0xe3,0x68,0x7a,0x2a,0x43,
- 0x99,0xd3,0x38,0x4f,0xf0,0x8e,0x22,0xb7,0x14,0x4a,0x60,0x8c,0x2,0x5f,0x20,0x9c,
- 0x25,0xf5,0x2,0x6a,0x11,0xca,0xe5,0xb8,0x20,0x29,0x7c,0x82,0x73,0xe,0x84,0x42,
- 0x8,0x8f,0x77,0x1e,0x5f,0x38,0xfc,0xd4,0x1b,0xb8,0xc9,0xcb,0x8c,0xfa,0xb5,0x46,
- 0xb5,0x31,0xfb,0x81,0xfa,0xdb,0xbf,0xeb,0xc2,0xac,0x89,0x3e,0x2b,0x94,0x22,0xdc,
- 0xea,0x7b,0xf8,0xb3,0x30,0x80,0xf7,0xbe,0xe7,0x3d,0x98,0x4a,0x8d,0xc9,0x78,0xbc,
- 0xa4,0xb5,0xfe,0xa9,0xb,0x17,0x5e,0xbc,0xb7,0xbf,0xf5,0xc,0x6f,0x7a,0xf8,0x10,
- 0x5e,0xe4,0xb8,0x22,0x3,0x2b,0xf0,0x41,0x12,0x47,0x75,0xaa,0x15,0x83,0x8,0xa1,
- 0x3c,0x59,0x52,0x23,0x9,0xa5,0xc5,0x4f,0xd2,0x72,0xd1,0xa4,0x24,0x35,0x8a,0x4a,
- 0xb0,0x28,0x1d,0x97,0x89,0x92,0x94,0x28,0x33,0xcd,0x1d,0x82,0xc0,0x23,0xf1,0x1,
- 0xac,0xf7,0xf8,0x0,0xd2,0x97,0x49,0x9f,0xb7,0x2,0x97,0xa5,0x7,0x37,0x98,0x7,
- 0x89,0x91,0x39,0x91,0x12,0x14,0x59,0xf,0x37,0x1e,0x30,0x1a,0x67,0x34,0xbd,0xc7,
- 0x68,0x85,0x30,0x31,0x85,0xab,0xa0,0x64,0x84,0x50,0x92,0x40,0x81,0xd4,0x9,0x79,
- 0xee,0xd9,0xef,0xed,0xd1,0x6a,0x2d,0x12,0x44,0x1d,0x81,0x7,0x29,0xf1,0x18,0x26,
- 0xb2,0x89,0xa,0x7b,0xb8,0x6c,0x40,0x70,0x39,0xc5,0xfe,0x3a,0x4a,0x6,0x64,0x54,
- 0xc7,0xd4,0xe7,0xf0,0x44,0x78,0x3f,0x2d,0x69,0x83,0x47,0x8,0x41,0x36,0x29,0x48,
- 0x5d,0x40,0x3a,0x8b,0xb,0xe0,0x44,0x40,0xea,0x32,0x1,0x14,0x2e,0x47,0xc9,0xf2,
- 0xe4,0xda,0xc2,0x83,0x77,0xf8,0x74,0x8c,0xb3,0x96,0x3c,0x2d,0x70,0x79,0x76,0x80,
- 0x18,0x6a,0xad,0x10,0x4a,0x10,0x54,0x82,0xcc,0x33,0x4c,0xb0,0xc4,0x95,0xa,0xe3,
- 0x49,0xce,0x64,0x32,0x44,0xca,0x29,0xdb,0x24,0x41,0x49,0x81,0x66,0xc0,0xa8,0x7b,
- 0x1e,0xa1,0x1e,0x3d,0x1e,0x57,0xaa,0xff,0x34,0xcd,0xb3,0xbf,0xf1,0xf2,0xc5,0x4b,
- 0xeb,0xef,0xfd,0xce,0x77,0xf3,0xbe,0xf7,0xbd,0x8f,0x8f,0x7d,0xec,0x63,0x7f,0x3a,
- 0x3,0xb8,0x7e,0xfd,0x3a,0xcf,0x9d,0x7f,0x81,0xa8,0x28,0x74,0xa3,0xd1,0xfa,0x89,
- 0xed,0x9d,0x9d,0xf7,0xbe,0xfc,0xe5,0xdf,0xe7,0xf1,0x7,0xda,0x38,0x1f,0x8,0xce,
- 0x97,0x4e,0x5b,0xc6,0x78,0x2f,0x9,0x61,0x4c,0x12,0x55,0xa9,0xd4,0x1a,0xa0,0x2b,
- 0xe5,0x51,0xc9,0x52,0x32,0xeb,0x88,0xa5,0x20,0xae,0xd6,0xa9,0x54,0x93,0x72,0x71,
- 0x92,0x1a,0xaa,0xc8,0x4a,0xa6,0xcc,0xc4,0x28,0x29,0xf0,0x24,0xd3,0xee,0x1d,0x4b,
- 0x62,0x46,0x28,0xef,0x70,0xb6,0x40,0x8d,0x3,0xce,0x4b,0xa4,0xa9,0x80,0x50,0x78,
- 0x3b,0xc1,0xba,0x82,0xe0,0x27,0xe4,0xd9,0x90,0xfe,0xee,0x18,0x17,0x32,0xb0,0xe,
- 0x33,0x93,0xe0,0xdc,0x84,0xd1,0x0,0x7a,0x85,0x41,0x56,0x9a,0x18,0x6d,0x28,0xf2,
- 0x8c,0xee,0xb0,0xb,0x28,0x7a,0x83,0x1,0xd5,0x5a,0x83,0xed,0xdd,0x75,0x26,0xd9,
- 0x88,0x80,0xa4,0xd1,0x68,0xe1,0x5d,0x81,0x57,0x86,0xdd,0xbe,0x67,0x36,0xf4,0x19,
- 0x8f,0xc6,0x44,0xc2,0x91,0xd,0xa,0x44,0x31,0x42,0xc6,0x1d,0x6a,0x33,0xd,0x44,
- 0xa5,0x8a,0x94,0x31,0x42,0x27,0xe8,0xb8,0x89,0x8a,0x3c,0x2,0x8d,0x4c,0x53,0x2c,
- 0x2,0xe1,0x1d,0x5a,0x55,0x88,0xab,0x2d,0xf0,0x96,0x60,0xc7,0x48,0x3c,0x51,0xa5,
- 0x82,0x74,0x5,0x4a,0x5,0x2c,0x8a,0xa4,0xad,0x71,0xce,0x91,0xd,0x87,0x64,0x93,
- 0x31,0xa9,0xf3,0x44,0x4a,0x23,0xa5,0x44,0x47,0x31,0xa1,0x48,0x99,0x4c,0xc6,0x8c,
- 0xd2,0x21,0xde,0x5a,0xa4,0x14,0xb7,0xf1,0x10,0x51,0x1e,0xa,0xed,0x77,0x18,0x76,
- 0x2e,0x20,0x17,0x1e,0x78,0x87,0x52,0xea,0x1f,0x6c,0xae,0xaf,0xff,0xa3,0xff,0xe1,
- 0x27,0x3f,0x90,0x3f,0x72,0xf6,0xc,0xb,0x5f,0x47,0x74,0xfa,0x75,0xd,0xe0,0xe8,
- 0xd1,0xa3,0x3c,0xf3,0xe5,0xf3,0xc,0x7a,0xfd,0xef,0x4c,0xb3,0xec,0x47,0x9f,0xfe,
- 0xc3,0xcf,0xa8,0xd3,0xab,0x9a,0x5a,0x25,0x29,0x33,0x5d,0x4a,0x60,0x47,0x88,0x98,
- 0x6a,0x2d,0xa1,0x5a,0xd1,0x74,0x7a,0x5d,0xea,0xb,0x2b,0x28,0x53,0xc1,0xa6,0x23,
- 0xa,0x65,0x58,0x58,0x3e,0x4c,0x5c,0x69,0xa0,0x74,0x54,0x7a,0x7,0xa,0x82,0xd2,
- 0x98,0xca,0x14,0xd2,0x35,0x55,0x84,0x88,0x4a,0xbe,0x3d,0x38,0x6c,0x31,0x41,0xc5,
- 0x13,0x9c,0xb,0x78,0x1b,0xf0,0xc1,0x81,0x7,0x6d,0x34,0x2a,0xa9,0xe1,0x95,0xc6,
- 0x76,0xd6,0xb0,0xbd,0x6d,0x26,0xa3,0x9,0xde,0x6,0x90,0x82,0xf6,0x6c,0x8d,0xda,
- 0x62,0x9d,0x41,0x7f,0xc0,0x53,0x5f,0xd8,0xa6,0x75,0xe2,0x24,0x47,0x4f,0xd5,0x51,
- 0x2a,0x66,0xd8,0xdf,0xa3,0xd3,0xdd,0x23,0x8,0x4d,0x9a,0x8e,0xcb,0x7c,0x21,0x8a,
- 0x19,0xf,0x25,0x59,0x3a,0x46,0x8b,0x9c,0xb8,0x5a,0x47,0x47,0x9,0x9b,0x7d,0xc7,
- 0x2b,0x2f,0xac,0xf1,0xba,0x33,0x2d,0x66,0xe7,0x2b,0x8c,0x95,0x61,0xd4,0xcd,0xc8,
- 0x46,0x29,0x38,0x47,0xdc,0xb4,0x98,0x5a,0xb,0x53,0x99,0x45,0x45,0x4d,0x12,0x11,
- 0xd0,0x42,0xe1,0xbd,0xc5,0x79,0xc8,0x6d,0x40,0x28,0x83,0x89,0xaa,0x28,0x15,0xe1,
- 0x9c,0x45,0x90,0x81,0xb0,0x48,0x67,0x9,0x26,0x81,0xa0,0x90,0xb2,0xf4,0x7a,0x95,
- 0xfa,0xc,0x85,0xf3,0x64,0xd9,0x84,0xe1,0xde,0x56,0x59,0x49,0x45,0x9,0x4e,0x19,
- 0xf6,0xb6,0x76,0x98,0x69,0xcf,0x62,0xf3,0x94,0xc9,0x64,0xf4,0xd5,0x9b,0xa8,0x5,
- 0xae,0xd8,0x60,0xb0,0x3f,0x2b,0xea,0xed,0xe5,0xbf,0xa5,0xb4,0xf9,0x5c,0xbb,0xde,
- 0xfc,0xf7,0xf3,0xcb,0xcb,0x5f,0x37,0x14,0x7c,0x4d,0x3,0x18,0x8f,0xc7,0x7c,0xe6,
- 0xb3,0x7f,0x40,0x77,0x67,0x77,0xd9,0x44,0xf1,0x4f,0xbe,0xf0,0xfc,0x97,0x17,0xea,
- 0xba,0xc3,0xea,0xca,0x2,0x45,0x7e,0xbb,0x3e,0x17,0xca,0x50,0x89,0x24,0xd5,0x6a,
- 0x4c,0x90,0x2,0x15,0x6b,0x4c,0x54,0x45,0xc7,0x15,0x82,0x4d,0x9,0xaa,0x42,0xd2,
- 0x68,0x21,0x85,0x80,0x20,0x8,0x42,0xe0,0x88,0x51,0xc2,0x20,0xa3,0xfa,0x57,0x57,
- 0xe4,0x52,0xa3,0x48,0xd0,0x52,0x81,0xf7,0xd8,0xd2,0x3b,0xa3,0x95,0x41,0xeb,0x26,
- 0x1,0x87,0xeb,0xef,0x50,0xdc,0x5c,0x23,0x2b,0x1c,0x9e,0x80,0x50,0x82,0xfa,0x6c,
- 0x9d,0xda,0x42,0x85,0x61,0x2f,0x25,0xdd,0x1b,0x73,0xef,0x91,0x84,0xac,0x5e,0x1a,
- 0x95,0xf3,0x81,0x71,0x11,0x8,0x2a,0xa2,0xdd,0x9a,0x67,0x38,0xd8,0x67,0x30,0xe8,
- 0x92,0xc4,0x9,0x8d,0x7a,0x9d,0x3c,0xeb,0xd3,0x1f,0xf6,0x99,0x89,0x12,0x10,0x86,
- 0x56,0x23,0x61,0x6e,0xc9,0x30,0xee,0x59,0xba,0x91,0xa5,0x39,0x5b,0x45,0x54,0x12,
- 0xec,0xfa,0x1e,0x36,0x2d,0xf0,0xe9,0x3e,0x79,0x3c,0xa6,0x1e,0x2,0xba,0x25,0x90,
- 0xaa,0x8d,0x72,0x8e,0x4c,0x96,0x9b,0x1f,0xf2,0x82,0xa2,0x0,0x15,0x55,0x91,0x42,
- 0x21,0x55,0x44,0xd9,0x93,0x9a,0x83,0x71,0x38,0x6b,0xf1,0xe9,0xe4,0xe,0x5,0x91,
- 0x44,0x9b,0x18,0x65,0x12,0xb2,0xf1,0x98,0xe0,0x73,0xe2,0x5a,0x8b,0x22,0xaa,0x12,
- 0xd7,0x37,0x31,0x26,0x22,0x8e,0x62,0x9c,0xb3,0xe4,0x79,0xf6,0x55,0xac,0xbe,0x51,
- 0x92,0xc9,0xe8,0x12,0x93,0xa8,0x36,0x93,0x54,0xea,0x3f,0x39,0x1c,0xd,0xbe,0xf4,
- 0x99,0xcf,0x3f,0x71,0x7d,0xf3,0xc6,0xd5,0x3f,0x99,0x1e,0xe0,0x53,0x9f,0xfa,0x1d,
- 0x2e,0x5d,0x5b,0x67,0x92,0xa6,0xb2,0x5a,0xad,0xfe,0xb7,0x3b,0x3b,0xbb,0x7f,0xf3,
- 0x95,0xf3,0xbf,0x2f,0x1f,0x7d,0xf0,0x30,0x52,0x45,0x84,0x60,0xa7,0xf1,0x5c,0x21,
- 0xa3,0x2a,0xb1,0x51,0x28,0x15,0x21,0x95,0x24,0x4e,0x6a,0xc4,0xcd,0x79,0x84,0x2f,
- 0xf0,0x4e,0x60,0xb4,0xa6,0x5a,0x8b,0xef,0x50,0xec,0x94,0xd9,0xba,0x52,0xd1,0xab,
- 0x6a,0xff,0x84,0x82,0x20,0x35,0xe9,0x60,0xc0,0x8d,0xeb,0x57,0x88,0x8c,0x46,0x49,
- 0x85,0xcd,0x2d,0xf3,0x47,0x56,0x20,0xdf,0x65,0xb8,0x7e,0x89,0x2c,0xcd,0x9,0x1e,
- 0x84,0x12,0xd4,0xda,0x55,0xea,0xcd,0xa,0xbd,0xfd,0x8c,0xfd,0xad,0x7d,0x12,0x19,
- 0x68,0x36,0x24,0x23,0x9a,0x84,0xa8,0x89,0xf7,0x5,0xfd,0xc1,0x0,0x9b,0xe,0x99,
- 0x14,0x5,0x85,0xb3,0xc4,0x91,0xa6,0x3f,0x1a,0x32,0xce,0x73,0x32,0x9b,0x13,0xbc,
- 0x20,0x38,0x47,0xf0,0x60,0x7,0x7b,0xcc,0xa9,0x21,0xd2,0x7,0x26,0xa3,0x1c,0x2f,
- 0x15,0x49,0x25,0x6,0xef,0x29,0xf2,0x2,0xe1,0xcb,0xb6,0x31,0x13,0x7,0xf0,0x19,
- 0xe8,0x6,0x3b,0xd7,0x6f,0xa0,0x25,0x64,0xc1,0xd3,0xc9,0x33,0xe,0x1d,0xbf,0x97,
- 0xf6,0xec,0x4c,0xd9,0xc0,0x72,0x90,0xb4,0xba,0x12,0x21,0x11,0x2,0xef,0x8a,0xdb,
- 0x10,0xb0,0x80,0x20,0x2,0x52,0x6,0x5c,0x9e,0x97,0xdc,0x92,0x89,0x91,0xda,0x20,
- 0x6c,0x8e,0x2a,0x91,0x31,0x82,0x8,0x14,0xce,0x23,0xe,0xc0,0x21,0x49,0x8,0x11,
- 0x20,0xd0,0x8c,0xc9,0x72,0x87,0x8c,0x67,0x57,0xa4,0x90,0xe9,0xee,0xde,0xce,0xef,
- 0x3f,0x70,0xf6,0x75,0x7e,0x3c,0xea,0xf3,0xec,0xb3,0xe7,0x5e,0x3,0xba,0x7e,0xd,
- 0xb0,0xa7,0xbb,0x3b,0x26,0x38,0x4b,0xa3,0x56,0x7b,0x43,0x9e,0x17,0x7f,0xfb,0xfc,
- 0xb9,0x2f,0xa8,0xd3,0x47,0xd,0xb1,0x91,0x84,0x20,0x1,0x85,0x10,0xa0,0xa2,0x18,
- 0x2d,0x24,0x52,0x29,0xc2,0x54,0xd4,0x71,0xb,0xfa,0xf5,0x32,0x42,0x6a,0x4d,0x14,
- 0xab,0x69,0xd9,0x74,0x2b,0x6f,0x9e,0xda,0xbc,0x7c,0x75,0xfb,0xb,0x6e,0xca,0xf5,
- 0x4,0xb0,0xa9,0xc7,0xfb,0xb2,0xdc,0x72,0xce,0x91,0xf5,0xd7,0xc9,0x7,0x1b,0x8c,
- 0xd3,0x1,0x85,0xb7,0xa0,0x1c,0x95,0x9a,0xa6,0xde,0xaa,0xd0,0xeb,0x67,0xc,0x76,
- 0x86,0x18,0x69,0x9,0xd2,0x91,0xe7,0x96,0x6c,0xd8,0x61,0xbc,0xbf,0x47,0xaf,0x37,
- 0x64,0x38,0xe8,0xa3,0x8,0x78,0xeb,0xd0,0x52,0xa3,0x90,0x68,0xad,0x71,0x4,0x12,
- 0xa9,0x18,0xf,0x47,0x64,0x69,0xc1,0xa8,0xbb,0x4b,0xba,0xbf,0x43,0xf0,0x1e,0xa9,
- 0x3c,0x5a,0xa,0xd2,0x4e,0x9f,0x71,0xa7,0x4f,0xa4,0x25,0x71,0xd5,0xe0,0xb4,0xc7,
- 0xa,0x87,0x75,0x8e,0xe0,0x52,0xb2,0xc1,0x3a,0x2e,0x4c,0xc9,0x1e,0x2,0x2e,0x94,
- 0x32,0x26,0x25,0x41,0xa9,0x92,0xe4,0x92,0x4a,0x1e,0x5c,0x5a,0x2b,0xb4,0x89,0x6e,
- 0xbb,0xe7,0x0,0xde,0x5,0x82,0x2f,0xd0,0x46,0xa2,0x8d,0x3a,0xe8,0x7c,0x3a,0x58,
- 0xcf,0xa0,0x1,0x83,0x50,0x15,0x98,0x36,0xc8,0xdc,0x76,0xef,0xe,0xa9,0x2,0x76,
- 0x70,0x85,0xdd,0x8d,0x6b,0xc2,0x87,0xf0,0x23,0xed,0x66,0xfb,0xdb,0x7,0x83,0x1,
- 0xa7,0x4e,0xde,0xc3,0x47,0x3f,0xfa,0xd1,0x3f,0x7a,0x8,0xf8,0xd5,0x5f,0xfd,0x55,
- 0x6a,0xad,0x3a,0xd6,0xe6,0x15,0x19,0xc5,0x3f,0xfe,0xca,0xa5,0x8b,0x47,0x75,0xb1,
- 0xce,0xe1,0xa5,0x15,0x82,0xf,0x20,0x4b,0x37,0x4d,0x90,0x84,0xa0,0xd0,0x53,0xee,
- 0x4b,0xa,0x10,0x5a,0xdf,0x2d,0xde,0x54,0xa5,0xa6,0xcf,0x5b,0x8f,0x54,0xb2,0x34,
- 0x84,0x29,0x80,0xf3,0x5a,0x6,0x70,0xbb,0xcc,0xe,0x90,0x7b,0xec,0x24,0xc3,0x4b,
- 0x4d,0xee,0xa,0xd6,0xaf,0x5d,0x65,0x69,0xde,0xa0,0x45,0x8c,0xb,0x1e,0x11,0x41,
- 0x2c,0x3c,0x79,0x67,0x9f,0xd1,0xbe,0x47,0xc9,0x1c,0xad,0x24,0x4a,0xa,0x8c,0x96,
- 0xa8,0x42,0x30,0x1e,0xf5,0x58,0x9c,0x99,0xa7,0x3d,0x7b,0x82,0x61,0x56,0x10,0x17,
- 0xe,0x21,0x5,0xfd,0xfd,0x2d,0x6a,0xcd,0x19,0xe2,0xb8,0x42,0xe1,0x2c,0x33,0xf3,
- 0x31,0x2e,0x1d,0xb3,0xb6,0xb6,0x41,0xd3,0xe7,0x44,0x91,0xc0,0xe7,0xae,0x84,0x72,
- 0xad,0x65,0x6f,0x67,0x9f,0xf9,0x7a,0x82,0x91,0x82,0x5c,0x4b,0x82,0xf5,0xf8,0xc2,
- 0x12,0x42,0x60,0x6b,0xed,0x3a,0xe3,0x74,0x4c,0x55,0x57,0xb1,0x79,0x81,0xcd,0xb,
- 0xf6,0x76,0xf7,0x71,0xee,0x6,0x83,0x61,0xca,0x78,0x9c,0x32,0x9e,0x64,0x84,0x50,
- 0x50,0x49,0xc,0xb5,0x6a,0x54,0x5e,0x15,0x4d,0xa3,0x51,0x25,0x8e,0xc,0xa,0x81,
- 0xb5,0xa5,0x96,0x0,0x65,0xa6,0xda,0xc3,0x50,0xc2,0xc7,0x4a,0x43,0x10,0xc8,0x50,
- 0x52,0xe1,0x4a,0x83,0x2b,0x22,0x10,0x12,0x29,0x7c,0x29,0x2e,0x1,0x8a,0xc9,0x90,
- 0x2b,0x5f,0xfe,0x7d,0x1a,0xb3,0x8b,0xcb,0x51,0x94,0xfc,0xfd,0xee,0x5e,0xe7,0x99,
- 0x77,0xbf,0xe7,0xfb,0x86,0xbf,0xf1,0x1b,0xff,0xfe,0x8f,0x6e,0x0,0x3f,0xf0,0x3,
- 0x3f,0xc0,0x93,0xbf,0xfb,0x19,0xba,0x42,0xbc,0x6b,0x34,0x1e,0xbf,0xff,0xe9,0xcf,
- 0x7f,0x8a,0xb7,0xbc,0xae,0x8a,0x10,0x8a,0x70,0x8b,0xc9,0x13,0x1a,0xa1,0x2,0x41,
- 0x68,0x82,0x4,0xa9,0x12,0x4c,0xac,0x21,0x8a,0xc0,0xdd,0xae,0xcd,0x9d,0xb5,0x48,
- 0xef,0x70,0x36,0x46,0xaa,0x88,0x92,0x1f,0xbc,0x2d,0xc4,0x7c,0xad,0xfc,0x44,0x88,
- 0xc0,0x68,0x3c,0x22,0x77,0x39,0xde,0x95,0x12,0xaa,0xcc,0x5a,0xd6,0xd7,0xf6,0xc9,
- 0x87,0x86,0x85,0xb9,0x2a,0x71,0x3c,0xa5,0x91,0x5,0x8c,0x26,0x8e,0x40,0x81,0xd6,
- 0x1,0x94,0xc1,0x3b,0xf,0xa,0xa2,0x71,0x87,0x81,0x56,0x74,0xb7,0xae,0xb3,0x72,
- 0xcf,0x3,0x44,0x5a,0xd1,0xed,0xde,0x24,0xaa,0x34,0x68,0xcf,0x2d,0x32,0x1a,0xf6,
- 0xc8,0xf3,0x94,0x46,0xa3,0x85,0x74,0x39,0x1b,0xd7,0x2f,0x90,0x4f,0x46,0x78,0x32,
- 0x7c,0x30,0x38,0xb,0x22,0x38,0xa4,0x14,0x38,0xeb,0x49,0x9d,0xa3,0x2a,0x34,0x91,
- 0x94,0xe4,0x4a,0x60,0x73,0xcf,0xfa,0xf5,0x1e,0x5b,0x3b,0x3,0x86,0xe3,0x8c,0xcd,
- 0xad,0x1,0xd7,0x6f,0xf6,0xd9,0x9b,0x78,0x9e,0xbd,0xf2,0x5,0x4c,0x94,0xa0,0x94,
- 0x2e,0x93,0xbd,0xa9,0xcc,0x2d,0x84,0x30,0xe5,0x13,0x1c,0x52,0x78,0xea,0x35,0xc3,
- 0xe1,0x43,0x6d,0x4e,0xdd,0x73,0x88,0x95,0xc3,0x2d,0x94,0xb0,0x84,0x30,0x65,0x3f,
- 0x43,0x40,0xa9,0x98,0x10,0x81,0xc8,0x73,0x42,0x11,0x48,0xa4,0xa7,0x8,0x72,0x8a,
- 0x46,0xde,0x12,0xae,0xba,0xa9,0xf7,0x11,0xe4,0xbb,0x17,0xe9,0xad,0x3f,0xcf,0xec,
- 0xb1,0x47,0xff,0x8a,0xd2,0xea,0xbb,0xf6,0xfb,0xdd,0x5f,0xfe,0xd0,0x87,0x3e,0xc4,
- 0x87,0x3e,0xf4,0xa1,0xaf,0x4a,0x8,0xbf,0xca,0x0,0x7e,0xfa,0xa7,0x9f,0xe0,0xcc,
- 0xfd,0x37,0xd8,0x1c,0xe,0x9b,0x49,0x25,0xfe,0xd1,0xb,0x2f,0x3d,0xdf,0xa,0x7b,
- 0x17,0x49,0xa2,0x37,0x94,0x9b,0x7f,0x7,0xf9,0x22,0xa4,0x42,0x28,0x89,0xd2,0x2,
- 0xa9,0x25,0x44,0x6,0xa4,0x3c,0xc8,0x6c,0x6f,0x41,0xa6,0xde,0xdd,0xc6,0xcf,0xf,
- 0xa2,0x4e,0x28,0x59,0xf3,0xaf,0x85,0x52,0xe7,0x85,0xc5,0xa,0x4b,0xc0,0x93,0x65,
- 0x19,0x3e,0x4,0x96,0x8f,0x1f,0xa3,0xd1,0x6a,0xd1,0xeb,0x6e,0x60,0xb2,0x3e,0x8d,
- 0x9a,0xa6,0x50,0x82,0xe1,0xc0,0x21,0x15,0xe0,0x5,0xc2,0x5a,0x10,0x81,0x3c,0x17,
- 0x18,0x37,0x1,0xa,0x7a,0x9d,0xe,0xda,0x5c,0xa6,0x3a,0x7f,0x88,0xda,0xcc,0x22,
- 0x95,0x5a,0x1b,0x23,0x24,0xb5,0x4a,0x93,0xe1,0x68,0x87,0x60,0xc7,0xac,0xdf,0xb8,
- 0xca,0x60,0xbf,0x43,0x10,0x1,0x1f,0x1b,0x86,0x23,0x4b,0x8,0x20,0xa7,0x62,0x13,
- 0x2d,0x4,0xa3,0xd4,0x11,0x55,0x15,0x21,0xc0,0x5e,0x3f,0x45,0xc5,0x9,0xde,0x34,
- 0xb8,0xb0,0xb1,0xcd,0x97,0x9e,0xbb,0xc6,0x28,0x83,0xb9,0xc5,0x45,0xda,0xed,0x16,
- 0x95,0x4a,0x42,0x1c,0xc7,0x44,0x91,0x41,0x29,0x85,0xb5,0x16,0x5b,0x14,0x78,0x1f,
- 0xd0,0x3a,0xc1,0x98,0x8,0x21,0x5,0xd6,0x3a,0x2e,0x5f,0x1f,0xf3,0xe2,0x85,0x2f,
- 0x13,0x19,0xcf,0xca,0x52,0xcc,0xd9,0xb3,0x27,0x58,0x39,0x51,0x36,0xc0,0xa,0x63,
- 0x20,0xd8,0xb2,0x4c,0x36,0x9,0x51,0xb0,0x14,0x5e,0x12,0xa4,0x2f,0x85,0x28,0x8,
- 0x10,0x6,0x44,0x5e,0x3a,0x5d,0x51,0xd0,0xbf,0xf2,0x87,0xc4,0xb3,0xf7,0xd4,0xab,
- 0xf5,0xe6,0x8f,0x3a,0x67,0x3f,0xfd,0x1b,0xbf,0xf8,0xd1,0xce,0xe0,0x91,0x87,0xbf,
- 0xb6,0x7,0x8,0x21,0xf0,0xc4,0x13,0xcf,0xb0,0x71,0x33,0x26,0x8e,0xd5,0x7b,0xfa,
- 0x83,0xc1,0x3b,0xaf,0x9e,0xff,0x2c,0x2b,0xad,0x69,0xd4,0x9e,0xc6,0xf8,0xd2,0x30,
- 0x5,0x91,0x51,0x18,0x4d,0x9,0x92,0x68,0x59,0x2a,0x73,0x0,0x19,0x99,0x3,0x66,
- 0x4f,0x99,0x4,0x57,0x4,0xac,0xf7,0x18,0x4,0x42,0xe8,0x69,0xd9,0x78,0x5b,0x4,
- 0x52,0xca,0xc1,0x6e,0xa3,0x7a,0xa5,0xa9,0x28,0x84,0x2c,0x11,0x2d,0x37,0x5,0x82,
- 0xb4,0x36,0xac,0xde,0xfb,0x0,0x49,0x5d,0xb1,0xb7,0x2e,0xd8,0x7e,0xa9,0x4b,0x25,
- 0x91,0x64,0x7d,0xcb,0x78,0x6c,0x69,0xcf,0x44,0x78,0x57,0xc6,0x52,0x27,0x40,0x78,
- 0x81,0x8c,0x2b,0xf8,0xdd,0x6d,0x42,0xee,0xb9,0xd2,0xe9,0x50,0xb4,0x76,0x39,0x73,
- 0xdf,0x43,0x34,0xab,0x1a,0x63,0x14,0x85,0xcb,0x19,0xf5,0x7,0x5c,0xbb,0x7e,0x8d,
- 0x74,0x7f,0x8f,0xd9,0x30,0x22,0x52,0x82,0x46,0x35,0xc1,0x7a,0x81,0xa4,0x84,0x5f,
- 0x1,0x8c,0x94,0x14,0x1e,0xb2,0x3c,0x27,0x4,0xc8,0xa,0xd8,0x1a,0xe6,0xbc,0x7c,
- 0xe9,0x32,0x69,0x96,0x70,0xdf,0x43,0x8f,0xa1,0x55,0x29,0x76,0x49,0xd3,0x8c,0x74,
- 0x32,0xa1,0xb3,0xb7,0x47,0x9e,0xe7,0x28,0xa5,0xa8,0xd7,0xeb,0x54,0xab,0x55,0xbc,
- 0x77,0x6c,0x6d,0xf5,0x49,0x27,0x13,0x92,0x24,0xa6,0x3d,0xd3,0xa6,0xd1,0x68,0xd0,
- 0x6a,0x35,0x28,0xa,0xcb,0xb5,0x8d,0x2e,0x2f,0xbe,0xfc,0x45,0x96,0x96,0x5e,0xe0,
- 0xf1,0x37,0x3d,0xc8,0xea,0x91,0x59,0x82,0x2d,0x75,0x6,0xc6,0x28,0x42,0x50,0x24,
- 0x94,0x1b,0x5f,0x1c,0x78,0xdb,0x32,0x2f,0xb,0x8,0x84,0x56,0x8c,0x3a,0x1b,0xa4,
- 0x17,0xce,0x73,0xea,0xe1,0x37,0xbe,0x55,0x8,0xf9,0xdd,0x69,0x5c,0xf9,0x37,0xa3,
- 0x67,0x9f,0x62,0x73,0x73,0x93,0xe5,0xe5,0xe5,0x57,0x37,0x80,0x27,0x9f,0x78,0x82,
- 0x6b,0x6b,0x1b,0xc4,0x91,0x69,0x0,0x3f,0x72,0xe1,0xa5,0x17,0xeb,0x66,0xb4,0x45,
- 0x54,0xd3,0x8,0x14,0x95,0x38,0x26,0x78,0xca,0x8d,0x16,0x9e,0xc8,0x48,0x22,0x63,
- 0x40,0x69,0x84,0x89,0x11,0x80,0x54,0x9a,0x4a,0x5c,0x45,0x49,0x75,0x7b,0xf2,0x86,
- 0xae,0xa2,0x8d,0x80,0xe0,0x11,0xd2,0x0,0x11,0x45,0x61,0x19,0xc,0x33,0xc6,0x93,
- 0x3e,0xa3,0xd1,0x84,0xe1,0x60,0x44,0xaf,0x3f,0xa4,0xdb,0xed,0xd3,0x1f,0x8c,0x70,
- 0x41,0x21,0x27,0x7b,0xcc,0x29,0x85,0x10,0x12,0x1f,0x4,0xca,0x7,0x86,0xbb,0x37,
- 0xa9,0x36,0x8e,0xa2,0x22,0x4d,0x52,0x53,0xe0,0x2c,0xe3,0x14,0xc6,0x85,0xa7,0x7d,
- 0xa7,0x31,0x7b,0x41,0xf0,0x12,0xa1,0x4,0x26,0x58,0xbc,0x73,0xd4,0xfc,0x90,0xfd,
- 0xdd,0x1b,0xbc,0xdc,0xd9,0xa4,0x40,0x60,0xaa,0xd,0xbc,0xd6,0xc,0x7b,0x5d,0x94,
- 0xcd,0x69,0xcb,0xc,0x25,0x1c,0x46,0x29,0x4c,0x88,0x9,0x41,0x81,0xf4,0x77,0xe8,
- 0xbd,0x5,0x45,0xe1,0x49,0x5d,0xa0,0xb0,0x5,0xcf,0x9c,0xdf,0x61,0x63,0xd8,0x64,
- 0x7e,0xf1,0x10,0xad,0x76,0x7c,0x47,0x58,0x13,0x54,0x2a,0x15,0x98,0x69,0xe3,0xbd,
- 0xa7,0xc8,0x73,0x86,0x83,0x21,0xbd,0x5e,0x8f,0xbd,0x9d,0x1d,0xbc,0x77,0xb4,0x67,
- 0x66,0x98,0x5f,0x98,0x67,0x30,0x18,0x72,0xed,0xca,0x35,0x94,0x84,0xf6,0xec,0x2c,
- 0x33,0xb3,0xb3,0xd4,0xeb,0x75,0x94,0x10,0xac,0xdf,0xd8,0xe3,0x17,0x2e,0xfc,0xe,
- 0xab,0xc7,0xda,0x3c,0xfe,0x86,0x53,0x34,0xea,0x9,0xe3,0x5e,0x9f,0x22,0x4f,0x99,
- 0x9d,0xad,0x51,0x8d,0x15,0xd9,0x34,0xa1,0xf6,0x28,0x64,0x30,0x50,0x4,0xc6,0x23,
- 0x9,0x95,0x84,0xe2,0xfa,0x4b,0xc,0x4f,0x9c,0xa9,0xd4,0x1a,0xcd,0x1f,0xd1,0x5a,
- 0x7d,0xfc,0x70,0xed,0x50,0xf7,0xe7,0x7f,0xfe,0xe7,0x5e,0xdd,0x3,0x7c,0xf4,0xa3,
- 0x1f,0x45,0x44,0x6,0xad,0x34,0x20,0xdf,0x3a,0x1c,0xe,0xbf,0xe3,0xe2,0x97,0x9f,
- 0xe2,0x68,0xd2,0x20,0x2f,0xa,0xf2,0x89,0x25,0x1d,0x8d,0xf,0xe2,0x58,0x99,0x70,
- 0xc0,0x58,0x94,0x27,0x55,0xc8,0x41,0x79,0xaa,0xa5,0x62,0x30,0x95,0x75,0xf9,0x10,
- 0xc8,0xa,0xcf,0xfe,0x20,0xa3,0x37,0x48,0xe9,0xd,0x33,0xfa,0x43,0xc7,0x60,0x58,
- 0x30,0x18,0x4e,0x18,0xc,0xc6,0xc,0x47,0x13,0x46,0xe3,0x31,0xa3,0xd1,0x84,0x34,
- 0xcd,0x98,0x6b,0x27,0xbc,0xe1,0x75,0xc7,0x78,0xf0,0xf4,0xa,0x83,0xe1,0x0,0xab,
- 0x35,0x7b,0x93,0x1c,0x1f,0x40,0xbb,0xc0,0x95,0x57,0x2e,0xb1,0x72,0xfc,0x10,0x6e,
- 0xdc,0x47,0x89,0x40,0xa2,0xb,0xb2,0x58,0x80,0x55,0x44,0xb1,0x22,0x58,0x4f,0x6a,
- 0x21,0xcb,0x3d,0xd8,0x40,0x10,0x96,0xb4,0xf0,0x74,0x6,0x19,0xce,0x5a,0xa,0x1b,
- 0x70,0x48,0xaa,0x95,0x88,0xa4,0x18,0x60,0x85,0xa2,0x8e,0xc7,0xe0,0x91,0x1e,0x82,
- 0x57,0x24,0x75,0x41,0x6e,0x3,0xd6,0x7,0x84,0x82,0xc4,0x48,0x12,0x55,0x90,0x2a,
- 0x43,0xc8,0x3d,0xc3,0x49,0xc1,0xe7,0x9e,0xeb,0xd0,0xb,0x87,0x58,0x59,0x9d,0x2f,
- 0xe3,0xfa,0x2d,0xc,0xe3,0xae,0x46,0x93,0xf2,0xe7,0x28,0x8e,0x99,0x4b,0x12,0x66,
- 0xe7,0xe7,0xc8,0xd2,0x8c,0xce,0xde,0x2e,0x5b,0x9b,0x37,0x29,0xf2,0x4d,0x5a,0xed,
- 0x16,0x47,0x8e,0x1e,0x21,0xcf,0x32,0x36,0xd6,0xd6,0xd8,0xda,0xdc,0xa4,0xd5,0x6a,
- 0x13,0x47,0x6,0xef,0x1d,0x79,0xe1,0x79,0xf2,0xf3,0x2f,0xf3,0xec,0x97,0x2e,0x32,
- 0x37,0x3f,0x4b,0x51,0x38,0xd6,0x37,0xb6,0x78,0xf4,0xbe,0x39,0x1e,0x7f,0xf8,0x18,
- 0x7e,0x8a,0xc4,0x7a,0x2f,0x88,0x62,0x83,0x4f,0xb,0x94,0x30,0x38,0xaf,0x18,0x77,
- 0x77,0xd8,0xbc,0xf2,0x12,0x27,0xce,0x3e,0xf6,0x66,0x8,0xef,0x9c,0x8c,0xc7,0xbf,
- 0x52,0x6f,0xb4,0xef,0x2,0x87,0xe,0xc,0xe0,0xda,0xb5,0x9b,0x54,0x1b,0xd,0xf2,
- 0x3c,0x8d,0xab,0xd5,0xfa,0xf,0x5d,0xb9,0xfc,0x4a,0xab,0xb7,0x79,0x8d,0xad,0x4a,
- 0x84,0xf3,0x8e,0xeb,0x9f,0x7e,0x6,0x1d,0x19,0x94,0x14,0x77,0x32,0xa2,0xe5,0x8d,
- 0x8b,0xd2,0x85,0x2b,0x21,0xa9,0x19,0x43,0xee,0x60,0x82,0x21,0x97,0x31,0x32,0xaa,
- 0x82,0xd0,0xe4,0x99,0xc5,0x5a,0x4b,0xb3,0xd5,0x2a,0x4b,0xa7,0x10,0x8,0xbe,0xcc,
- 0xf,0x24,0x2,0xa3,0x15,0x18,0x45,0x91,0x15,0xbc,0x7c,0x71,0x9d,0xad,0xcd,0xe,
- 0x1,0x88,0x2a,0x31,0xcd,0x5a,0x44,0xb3,0xa2,0x69,0xc6,0x11,0x71,0x77,0x97,0x17,
- 0xfe,0xe0,0x77,0xd9,0xd8,0x9b,0x30,0xca,0x72,0x8c,0x16,0x8c,0x33,0xcb,0x28,0x75,
- 0x9c,0xbb,0x60,0x49,0x33,0x4f,0xb7,0x97,0xd3,0x1f,0x66,0x38,0x1b,0xc8,0x73,0xcb,
- 0x70,0x9c,0x31,0x18,0x95,0x3c,0xc4,0xf1,0xd5,0x19,0xbe,0xfd,0xb1,0x55,0x8e,0xae,
- 0xce,0x50,0x4d,0xc,0x52,0x28,0x82,0xd,0x78,0x77,0x4b,0xbf,0x20,0x70,0xc1,0x32,
- 0xc1,0x13,0x64,0xc0,0x5a,0x8,0x46,0x11,0xd7,0x6a,0x28,0xeb,0x30,0xf9,0x84,0x27,
- 0xce,0xf,0x99,0x98,0x15,0x16,0x5a,0x2d,0x9c,0x73,0x58,0x6b,0xf1,0xde,0x1f,0x80,
- 0x3a,0xb7,0xc,0xe1,0xd6,0xc0,0x29,0x29,0xe5,0x41,0x7f,0x43,0x52,0x49,0x38,0x7c,
- 0xe4,0x8,0xf3,0x8b,0x8b,0xec,0x6e,0xef,0xb0,0xb9,0xbe,0xce,0xd6,0xcd,0x2d,0xe,
- 0x2d,0x2f,0x73,0xff,0x83,0xf,0x72,0xe9,0xc2,0x5,0x5e,0x79,0xf9,0xe5,0x69,0xe5,
- 0x64,0xb9,0xef,0x81,0x7,0x38,0x75,0x7a,0x6,0x63,0xc,0x69,0x96,0x73,0xe3,0xf2,
- 0x35,0x6e,0xee,0xec,0xf3,0xf9,0xee,0xe,0x97,0x5e,0xbc,0x42,0xa4,0x4,0xd5,0xc4,
- 0xa0,0xd5,0xed,0xfe,0x3,0xef,0xc0,0x18,0xcd,0x4c,0x33,0x42,0xec,0x5d,0x26,0x1d,
- 0x9f,0xae,0x45,0x49,0xf5,0x87,0x2,0xe1,0x13,0x28,0x3d,0xbe,0x71,0xe3,0xc6,0x57,
- 0x7b,0x80,0xc7,0x1e,0x4b,0xd8,0xeb,0xa,0x8c,0x89,0x1e,0xcc,0xb2,0xec,0xdd,0xe7,
- 0x9f,0x79,0xa,0x91,0xe5,0xc,0x42,0x20,0x8e,0x14,0xca,0x6,0xac,0xcd,0xb0,0x40,
- 0x10,0x12,0x57,0x14,0x98,0xd8,0x20,0xa5,0xc0,0xa3,0x91,0x42,0x30,0xb4,0x39,0x6b,
- 0x59,0x41,0x65,0xf6,0x10,0xcd,0x99,0x39,0xaa,0xc6,0x60,0x8b,0x82,0x4e,0x67,0x8f,
- 0xe0,0x3d,0x8b,0x4b,0x4b,0xc4,0x71,0x8c,0xb3,0x96,0xc9,0x64,0x82,0x2b,0xb2,0x32,
- 0xe3,0x76,0x9e,0x4a,0xa4,0xa9,0x57,0x12,0x84,0x10,0xa4,0x85,0x67,0x6d,0x27,0xa5,
- 0x28,0xa,0xb2,0x74,0x97,0xc2,0x16,0x18,0xe1,0x68,0x35,0xeb,0x28,0x63,0xd0,0x26,
- 0x2e,0xab,0xf,0x21,0xe,0x92,0x4a,0xe7,0x3c,0x59,0x9e,0x93,0x66,0x39,0xd6,0xda,
- 0x92,0x37,0x2f,0x2c,0x45,0x91,0xd1,0xaa,0x8,0x1e,0x7d,0x60,0x99,0xb7,0x3e,0x7e,
- 0x8c,0x7,0xef,0x6d,0xd1,0x6a,0x26,0xb8,0x10,0x21,0x84,0x47,0x62,0xf,0x4e,0x11,
- 0x22,0x42,0x28,0x85,0x9b,0x38,0x7c,0x1,0x58,0x87,0xf0,0x63,0xd6,0xb7,0x3d,0x17,
- 0x2f,0x39,0x94,0xc,0x9c,0xdf,0xb0,0xc,0xcd,0x32,0xcd,0x66,0x9d,0x3c,0xcb,0xe,
- 0xa6,0x8e,0xdd,0x52,0xf5,0x1c,0x4c,0x21,0x9b,0xe,0x98,0xa,0xbe,0xac,0x74,0x94,
- 0xd6,0x65,0x42,0x18,0xc7,0x28,0xad,0x89,0xa2,0x88,0xc3,0x47,0x56,0x98,0x9d,0x9b,
- 0x63,0xeb,0xe6,0x26,0xd7,0x2e,0x5d,0xa6,0xb3,0xb7,0x8b,0x94,0x12,0xef,0x3d,0xad,
- 0x99,0x19,0x4e,0x3f,0x70,0x3f,0x73,0xb,0xb,0x74,0xb6,0xb7,0xe9,0x76,0xba,0x9c,
- 0x7f,0xe1,0x25,0xba,0xfb,0x7d,0x62,0xa3,0x38,0xf1,0xc0,0x59,0x76,0x77,0x3b,0xc,
- 0x8b,0x8c,0xbe,0x15,0x90,0x8e,0x68,0x1a,0x4f,0xac,0x24,0x22,0x40,0x91,0x59,0x8e,
- 0x55,0xea,0xec,0xac,0xdf,0xc0,0xcf,0x5f,0xe6,0xe8,0xe9,0xb3,0x6f,0xf,0x3e,0xbc,
- 0xbe,0xd5,0x6a,0x7f,0xfe,0xb7,0x3e,0xfe,0xf1,0xbb,0xd,0xe0,0x83,0x1f,0xfc,0x20,
- 0xef,0x7a,0xd7,0xff,0x42,0x78,0xfb,0x65,0x7e,0xf9,0xbf,0xf9,0xd5,0xef,0xdb,0xd8,
- 0xb8,0x7e,0x78,0xeb,0xea,0x2b,0xcc,0x68,0x49,0x35,0x56,0x24,0x91,0xe2,0xae,0xa1,
- 0x5d,0x42,0xe0,0x5,0x44,0xb1,0x4,0x99,0xe0,0xd1,0xec,0x8f,0x73,0xb6,0xc6,0x82,
- 0xc5,0xe5,0x23,0x1c,0x5a,0x9c,0x47,0x8,0x18,0xc,0x46,0x6c,0x6d,0xdd,0xa4,0x5e,
- 0xab,0xb1,0xb0,0xbc,0x4c,0x9e,0x65,0x6c,0x6f,0x6d,0x91,0xe7,0x39,0x52,0x4a,0x8c,
- 0x89,0x98,0x9d,0x9b,0x67,0x32,0x99,0x94,0x93,0xb9,0xb2,0x14,0x6b,0xed,0x14,0x60,
- 0x54,0xc4,0x71,0x44,0xa3,0xd1,0xc0,0x18,0x83,0xbc,0x75,0x92,0xa4,0x2c,0x41,0x13,
- 0xef,0xc8,0xf2,0x9c,0xf1,0x38,0x65,0x34,0x9e,0x30,0x49,0x53,0xf2,0xc2,0x96,0xa0,
- 0x11,0x1,0x57,0x14,0x24,0x3a,0xf0,0xd8,0x3,0x8b,0xbc,0xfd,0xf1,0x63,0xac,0x1e,
- 0x6a,0x61,0xb4,0x64,0x67,0x77,0xcc,0x76,0xb7,0xc0,0xbb,0xb2,0xb3,0x50,0x69,0x71,
- 0xa0,0x2e,0xf6,0x2e,0x1c,0x8,0x4d,0x42,0x0,0x6c,0x81,0x74,0x23,0xba,0x3,0xcd,
- 0xc6,0xbe,0x67,0xb3,0x93,0x21,0x9b,0x27,0x68,0x36,0x1a,0xa5,0x1b,0x95,0x92,0x74,
- 0x92,0x62,0x8b,0x9c,0x3c,0xcb,0x88,0xa2,0x8,0xef,0x3d,0x83,0x7e,0xbf,0x8c,0xfd,
- 0x45,0x71,0x30,0x9a,0xe,0x4,0x52,0xa,0x4c,0x14,0x51,0xad,0xd5,0x68,0xb5,0xdb,
- 0x68,0x63,0x18,0x8d,0x86,0x10,0x2,0xab,0xc7,0x8f,0xa1,0xb5,0x66,0x63,0x7d,0x9d,
- 0xf9,0xc5,0x45,0x4e,0x9e,0xbe,0x8f,0x85,0xc5,0x45,0x9c,0x73,0x74,0xf7,0x7b,0x7c,
- 0xe9,0xe9,0x67,0x18,0x4d,0x32,0xa4,0x36,0xc4,0x91,0x41,0x6a,0xc3,0xf2,0xca,0xe1,
- 0x52,0x94,0x92,0x95,0xd9,0xbf,0xc,0x8e,0xd1,0xb0,0x87,0x29,0x86,0x44,0x58,0xce,
- 0x5d,0xde,0x23,0xcd,0xb,0xe,0x9b,0x73,0x2c,0x1d,0x3b,0xb9,0x60,0x8c,0xf9,0x81,
- 0xb5,0xf5,0xcb,0x5f,0xf8,0xf4,0xb9,0x2f,0x86,0x5f,0xfc,0xa5,0x5f,0xe2,0x7,0xe4,
- 0x36,0xc0,0x93,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0xff,0xfa,0x5f,0x2f,0xd,
- 0xe0,0x8d,0x8f,0x3f,0xce,0x87,0x3f,0x72,0x1f,0xff,0x26,0x8e,0x96,0xb4,0x73,0xdf,
- 0xf3,0xca,0x4b,0x2f,0x30,0x17,0x79,0x5a,0xb5,0xe4,0x40,0xb7,0x27,0xef,0x28,0x1f,
- 0x9d,0xf7,0x4,0x1,0xde,0xa,0xac,0xcf,0xd8,0x4b,0x73,0xd6,0x6,0x9e,0xd5,0xd5,
- 0x23,0x2c,0x2d,0xcc,0x21,0x84,0x60,0x3c,0x9e,0xb0,0xbd,0xb5,0x45,0xbb,0xd5,0x26,
- 0xaa,0x24,0x74,0xba,0x5d,0x44,0x8,0xd4,0x6a,0x35,0xe6,0x17,0x16,0x10,0x42,0x30,
- 0xe8,0xf7,0xd9,0xdc,0xd8,0x24,0xcb,0x33,0xa2,0x28,0xa6,0x5a,0xab,0x61,0xa2,0xf8,
- 0x60,0x5e,0xdf,0xad,0x18,0x7a,0xeb,0x54,0xa5,0x69,0xb9,0xd9,0xe3,0xd1,0x98,0x71,
- 0x9a,0x92,0x67,0x39,0x6e,0xba,0x11,0xc1,0x97,0x0,0x8a,0xb7,0x5,0x5a,0xa,0x8e,
- 0xaf,0xb4,0x39,0x75,0x6a,0x89,0xd9,0xd9,0x6,0x57,0xf6,0x1c,0x97,0x77,0xf7,0xa6,
- 0x4d,0x27,0xe2,0x55,0xfa,0x34,0xc2,0xb4,0xfd,0x33,0xdc,0x21,0x3a,0xe,0xb7,0x1b,
- 0x13,0x29,0xd8,0xde,0x9d,0xa0,0x93,0x43,0x1c,0x6f,0xb5,0xe,0xe2,0x7b,0x51,0x14,
- 0x78,0xef,0xcb,0xf1,0x73,0x71,0x8c,0xf3,0x9e,0x74,0x92,0x92,0x54,0x6b,0xd3,0x44,
- 0xb4,0x6c,0x14,0xf5,0xce,0x93,0x67,0x29,0xa3,0xe1,0x88,0xbd,0xdd,0x3d,0x7a,0xfb,
- 0xfb,0x34,0x5b,0x4d,0x1a,0xcd,0x26,0x9d,0xdd,0x5d,0x1e,0x7a,0xe4,0x11,0x5a,0xed,
- 0x36,0xe7,0xcf,0x9d,0xa3,0xc8,0x73,0x4e,0xde,0x57,0x6e,0x3e,0xc0,0xce,0xce,0x2e,
- 0x5f,0x7a,0xfa,0x19,0xfa,0xfd,0x1,0x71,0xad,0x8e,0xb7,0x96,0x76,0x7b,0x9e,0x7a,
- 0xad,0x46,0x96,0x65,0x68,0x63,0x68,0x37,0x9b,0x68,0x5d,0x56,0x60,0xd6,0x2d,0x31,
- 0x18,0xc,0x19,0x74,0xb6,0x11,0xe3,0x2e,0xed,0x9a,0xa0,0xe8,0x6e,0xd0,0xdf,0xdb,
- 0x66,0x66,0xe9,0xf0,0x77,0x2d,0x2f,0xad,0xfe,0xf4,0x8f,0x7d,0xef,0xc9,0xb5,0x2f,
- 0x8e,0x7a,0x77,0x84,0x0,0x71,0x86,0x24,0xf9,0x3c,0x20,0x1e,0xef,0xf5,0xfb,0x67,
- 0xf7,0x6e,0xbc,0xc2,0x52,0xbb,0x36,0xd5,0xe8,0x7,0xea,0x89,0x27,0x51,0xe5,0x62,
- 0xb9,0x10,0xe8,0x8c,0x3,0x9d,0x89,0xa4,0xe7,0x14,0x5b,0x7b,0x3,0x5a,0x8b,0x87,
- 0x59,0xac,0x1a,0x16,0x17,0xe6,0x90,0x52,0x52,0x58,0xcb,0xd6,0xd6,0x4d,0x5a,0xad,
- 0x26,0x26,0x8e,0x99,0x4c,0x52,0x66,0x5a,0x2d,0xa2,0xc8,0x90,0x65,0x39,0x7b,0x9d,
- 0xe,0xc3,0x5e,0x1f,0x63,0x34,0x2b,0x47,0x56,0x48,0xf3,0x7c,0xaa,0x99,0xe7,0x8e,
- 0x6,0x90,0xf2,0x4,0x8d,0xc6,0x63,0x86,0x83,0x11,0xc3,0xd1,0x90,0x2c,0xcd,0xb0,
- 0xce,0x95,0x9d,0x40,0xd3,0xde,0x81,0x40,0x20,0xe4,0x8e,0xe0,0x4b,0x40,0x68,0xa6,
- 0x19,0x71,0xe6,0xcc,0x11,0xe,0x1d,0x2a,0x5b,0xb0,0xf3,0x2c,0xc7,0xf9,0x12,0x90,
- 0x2a,0x3b,0x77,0xc1,0xf9,0x40,0x61,0x3,0x71,0xa4,0x99,0x69,0x26,0x28,0x75,0x67,
- 0x9f,0x1,0x4c,0x0,0xe5,0x4a,0xe1,0x76,0x8,0xd0,0xed,0x67,0xc,0xc7,0x86,0x53,
- 0x47,0x16,0xee,0x16,0xa8,0x56,0x2a,0x18,0xad,0x29,0x8a,0x2,0xeb,0xdc,0x41,0x6e,
- 0x53,0x6e,0x44,0x29,0xec,0xb4,0xb6,0xc0,0x5a,0x87,0x2b,0x32,0xac,0x2d,0x67,0x10,
- 0x36,0x5a,0x4d,0xce,0x9c,0x3d,0xcb,0xee,0xce,0x2e,0xaf,0x7b,0xf4,0x31,0xe6,0x17,
- 0x17,0x78,0xf9,0xf9,0xe7,0x19,0x8f,0x46,0xac,0x1e,0x3b,0xce,0xa1,0x29,0x85,0xdb,
- 0xed,0xee,0xf3,0xb9,0xdf,0xff,0xc,0xc3,0xe1,0xa8,0xa4,0x86,0x3,0x54,0x62,0xc3,
- 0xf1,0x63,0x47,0x71,0xce,0xa1,0x94,0xa2,0x5a,0x49,0xe,0xc2,0x86,0x9b,0x8a,0x44,
- 0xe2,0x28,0x42,0x2d,0x2c,0x53,0xe4,0xb3,0x54,0xd2,0x35,0x16,0x2b,0x23,0xb2,0xbd,
- 0x4b,0xb8,0xf9,0x43,0xf7,0x49,0x21,0xde,0x52,0x98,0xe8,0xdf,0xce,0xf7,0x7a,0x84,
- 0x10,0xd0,0x1f,0xfc,0xe0,0x7,0xc9,0xe4,0x15,0xd6,0xb6,0x7a,0xea,0xc8,0x52,0xe5,
- 0xbb,0xd7,0xd7,0x6e,0x54,0x47,0x9d,0x1d,0x46,0xf5,0x8,0x3f,0x25,0x7c,0x7a,0xa3,
- 0x0,0x42,0xe2,0xa4,0x21,0x17,0x15,0xbc,0xa9,0x11,0xcf,0x36,0xe8,0x6e,0x6e,0xd0,
- 0x5a,0x5c,0xa1,0x52,0x6f,0x10,0x47,0x86,0x38,0x8a,0x8,0x21,0xd0,0xd9,0xdd,0x25,
- 0x89,0x13,0x2a,0xd5,0x1a,0xc6,0x18,0x5a,0xcd,0x6,0x59,0x96,0x73,0xf1,0xd2,0x55,
- 0x6e,0x6e,0x6d,0xd1,0xac,0x25,0x9c,0x38,0x7e,0x9c,0x46,0xb3,0x49,0x8,0x81,0x34,
- 0x2f,0xe,0x54,0xb1,0x93,0xc9,0x84,0xd1,0xb0,0x1c,0xbf,0x36,0x4e,0x33,0xa,0xe7,
- 0x4a,0xa4,0x6b,0xea,0x97,0xa5,0x54,0xb7,0x67,0x6,0x4c,0x49,0x16,0x6f,0x2d,0xae,
- 0xc8,0x58,0x9d,0xaf,0x73,0xe8,0xd8,0x12,0x93,0xd4,0x71,0xf5,0xf2,0x2e,0xd6,0x81,
- 0xf3,0xe0,0xd0,0x38,0xeb,0xc8,0xf2,0x82,0x2c,0x2f,0x13,0xb6,0xc3,0xf3,0x75,0x1e,
- 0x3a,0xb9,0xc8,0x72,0xa3,0xc6,0xb4,0x87,0x3,0x2f,0x3c,0xe5,0x3f,0x10,0x53,0x94,
- 0x72,0xb7,0x97,0x72,0xb9,0x1b,0x58,0x5c,0x3e,0x44,0xbd,0xd9,0x0,0xef,0xf,0xa6,
- 0x8c,0x3a,0x57,0x4a,0xb5,0x92,0x4a,0xe5,0xae,0xea,0xe8,0x96,0xe7,0xf2,0xde,0xb3,
- 0xdf,0xed,0xf2,0xca,0x4b,0x2f,0x93,0xe7,0x19,0xb6,0xb0,0xd4,0xea,0xd,0x8e,0x9f,
- 0xbc,0x7,0xa5,0x35,0xf5,0x46,0x9d,0xb9,0x85,0x79,0xb6,0x6f,0xde,0x64,0xeb,0xe6,
- 0x16,0xcb,0x47,0x8e,0x70,0xe4,0xd8,0x51,0x84,0x10,0x8c,0x46,0x23,0xfe,0xe0,0x33,
- 0x9f,0x65,0x77,0x67,0x17,0x93,0x54,0x90,0x4a,0x13,0xbc,0x63,0x7e,0x76,0x81,0x51,
- 0x9a,0x13,0x19,0x8d,0xd6,0x9a,0xed,0x9d,0x3d,0x7a,0xfd,0x72,0x54,0xdd,0x64,0x32,
- 0xa1,0xc8,0xf3,0x32,0x27,0x1,0x8e,0x1d,0x3f,0xc6,0x6c,0x7d,0x8e,0xcb,0x37,0xfb,
- 0x34,0xdd,0x45,0xea,0x47,0x1e,0x4e,0x2a,0xd5,0xea,0x77,0xed,0x77,0x76,0x7f,0xa5,
- 0x35,0xbb,0x58,0x7c,0xf8,0xc3,0x1f,0x46,0x77,0xbb,0x1d,0x64,0x61,0x99,0x6b,0xb4,
- 0xe,0x59,0xe7,0xde,0x7a,0xe9,0xe5,0x17,0xe8,0xef,0xef,0xe3,0xb3,0x4,0x25,0x5,
- 0x4e,0x68,0xa,0x5d,0xa5,0x3e,0xb3,0x40,0x7b,0x76,0x8e,0xb9,0x5a,0x8d,0x28,0x32,
- 0x6c,0x6d,0x6e,0xd2,0xed,0x74,0x59,0x7e,0x70,0x85,0xd1,0x24,0x65,0xa6,0xd5,0x9c,
- 0xba,0xfe,0x31,0xd6,0x3a,0xea,0xcd,0x6,0xc6,0x68,0xa2,0xc8,0x30,0x18,0xe,0x79,
- 0xf1,0xc2,0x65,0xfa,0xfb,0x5d,0x4e,0x1e,0x5f,0xe5,0xe8,0xd1,0xa3,0x28,0xad,0xa7,
- 0xc9,0x9b,0x63,0x3c,0x1a,0xd1,0xed,0xee,0xd3,0xeb,0xf7,0x49,0xb3,0x1c,0x17,0x6e,
- 0x91,0x41,0x7e,0x1a,0x3b,0x25,0xc1,0x4d,0x15,0x38,0xd3,0xc6,0x11,0x25,0x40,0x49,
- 0x59,0xbe,0x47,0xb3,0x46,0x64,0xc,0xd5,0x5a,0x95,0xd4,0x1a,0x94,0xd2,0x8,0x29,
- 0x29,0xbc,0x23,0x73,0x45,0x9,0xca,0x64,0x39,0xde,0x3b,0x66,0xda,0x31,0x47,0x57,
- 0x67,0x38,0x34,0x5b,0xc3,0x4b,0xc9,0xe6,0x60,0x42,0x14,0x6b,0x84,0x80,0xb4,0x70,
- 0x78,0x11,0xd0,0xce,0x23,0xa5,0xa0,0x28,0x1c,0x57,0xd6,0x53,0x92,0x4a,0x8b,0xf9,
- 0x85,0x39,0x6,0xfb,0x3d,0xb2,0x2c,0x25,0xb7,0x65,0xb7,0x8f,0x89,0xc,0x8d,0x7a,
- 0xed,0xe0,0x5e,0xee,0x2c,0xfd,0x6,0xfd,0x3e,0x9b,0xeb,0xeb,0x68,0xad,0x99,0x99,
- 0x9b,0x43,0x29,0xc5,0xde,0xee,0xe,0xca,0xc4,0xd4,0xeb,0x75,0x76,0xb7,0xb7,0x59,
- 0x3a,0xbc,0x8c,0xb5,0x96,0x6b,0x97,0xaf,0x90,0xd4,0xea,0xac,0xac,0xae,0xa2,0x94,
- 0x22,0xcf,0x73,0x9e,0xf8,0xfc,0x13,0xac,0xaf,0xad,0x63,0x92,0xa,0x78,0x4f,0x10,
- 0x1e,0x19,0x3c,0xe,0xc1,0x70,0x34,0x66,0x32,0x99,0xb0,0xb3,0xbb,0xcb,0x78,0x34,
- 0xc2,0x4d,0xa5,0xf3,0xe2,0x60,0x7d,0x24,0x36,0xcf,0xd8,0xdc,0xbc,0x49,0xe3,0xd4,
- 0x49,0xd6,0xf7,0x72,0x74,0xf7,0x32,0x2b,0xf,0x6d,0x70,0xe4,0xd8,0xc9,0x37,0x4b,
- 0xa5,0x8e,0xe4,0x59,0x7a,0xe5,0xf8,0xea,0x2a,0xfa,0xa1,0x87,0x5e,0x4f,0xaf,0xdf,
- 0x43,0x69,0xf5,0xfa,0xc1,0x60,0x70,0xcf,0x8d,0xcb,0x17,0xc9,0x6d,0xc1,0x30,0x85,
- 0xc6,0xdc,0x32,0xcb,0xab,0xf7,0x50,0x6d,0x94,0xee,0xfb,0xd6,0x63,0x38,0x18,0x30,
- 0x18,0xc,0x99,0x99,0x9b,0x43,0xc8,0x92,0xd9,0x8a,0x22,0x53,0x5a,0x7c,0x6f,0x40,
- 0x14,0xc7,0x44,0xa6,0x1c,0xad,0xba,0xdf,0xeb,0x73,0xfe,0xc5,0xb,0xd8,0x2c,0xe5,
- 0x75,0x67,0xef,0x67,0x71,0x71,0xe1,0x40,0x51,0x3b,0xe8,0xf,0xb8,0xb1,0xb6,0xc6,
- 0xe6,0xd6,0x2e,0xd6,0x87,0xe9,0x6,0x97,0x6a,0xe2,0xe0,0x7d,0xa9,0x36,0xa,0x65,
- 0xff,0x5c,0x8,0xe5,0x90,0x88,0x24,0x32,0x98,0xc8,0x10,0x45,0x31,0x49,0x12,0x63,
- 0xa2,0x8,0xa3,0x75,0x99,0x28,0x4a,0x89,0xb5,0x96,0xe1,0x68,0x4c,0x7f,0x38,0x62,
- 0x92,0x96,0x13,0x3e,0xa5,0x80,0xf9,0x76,0x85,0xe3,0xab,0x33,0x34,0x5b,0x55,0x84,
- 0x56,0xa4,0xd6,0x51,0x8d,0x2,0x43,0xe7,0x9,0x63,0xb,0xde,0xe3,0x7c,0x38,0xe0,
- 0xc8,0xd3,0xcc,0xb1,0xb1,0x9d,0xd1,0x1f,0x16,0x2c,0x2f,0x37,0xd9,0xdd,0xda,0xa6,
- 0xdf,0xef,0x53,0x6b,0x34,0x98,0x9b,0x9b,0xa3,0x5a,0xab,0xa2,0xb5,0xfe,0xa,0xfe,
- 0x42,0x90,0xe7,0x39,0xeb,0xd7,0xaf,0x73,0xf9,0xe2,0x45,0xce,0x3c,0xf8,0x20,0xf3,
- 0xb,0xb,0xec,0x77,0xf7,0xd9,0xd9,0xde,0xc2,0xb9,0xc0,0xd2,0xe1,0x5,0x26,0x93,
- 0x31,0xb5,0x7a,0x9d,0x4a,0xa5,0xc2,0xd5,0x4b,0x97,0xc8,0x8b,0x82,0x53,0x67,0x4e,
- 0x1e,0xf4,0x54,0x3c,0xf7,0xec,0x73,0x5c,0x7c,0xf1,0x45,0x74,0x52,0xb9,0xdd,0x5,
- 0x15,0xca,0xe1,0x94,0x3b,0x9d,0x1e,0x5b,0xdb,0xbb,0x64,0x93,0x31,0x8,0x81,0xd2,
- 0x86,0xa8,0x52,0x2b,0xbd,0xe1,0x1d,0x1e,0x48,0x45,0x11,0x93,0xf1,0x84,0x2c,0x2f,
- 0x88,0x2a,0x35,0xec,0x68,0x8f,0x9b,0xd7,0xaf,0x70,0x78,0xf5,0xf8,0xd1,0x10,0xc2,
- 0x63,0x8d,0x46,0xeb,0xca,0xcd,0x9d,0x6d,0x74,0xb5,0x11,0xf8,0xdd,0x8f,0xef,0x88,
- 0x77,0x7c,0xe7,0xdc,0x5b,0xb6,0x6e,0x6e,0xd6,0x9b,0x91,0x63,0xf9,0xec,0x71,0x9c,
- 0xb5,0x8c,0x44,0x8b,0x7a,0x7b,0x16,0xad,0xe4,0x6d,0x5d,0xfb,0xd4,0x4d,0xd7,0x9b,
- 0x4d,0xc4,0x70,0x88,0xf7,0xa1,0x64,0xb2,0x94,0x62,0x38,0x1a,0x93,0x17,0x5,0xf5,
- 0x7a,0x95,0x24,0x89,0x19,0xc,0x87,0x9c,0x7f,0xf1,0x2,0xbe,0xc8,0x79,0xf8,0xa1,
- 0x7,0x98,0x99,0x9d,0x2d,0x9b,0x1b,0xc6,0x63,0xae,0x5d,0xbf,0xce,0xc6,0xe6,0x36,
- 0x99,0xf5,0x48,0xa5,0xa6,0x90,0xf0,0x6d,0x48,0x1a,0x51,0x66,0xfc,0xc1,0xf9,0x92,
- 0x13,0x9f,0x92,0x29,0x45,0x10,0xe4,0x69,0xc1,0x28,0x2d,0xa0,0x3f,0x3c,0x70,0xbb,
- 0x52,0x94,0xed,0x24,0xce,0xda,0x92,0x61,0x98,0xe6,0x9,0x33,0xb5,0x88,0x63,0xf3,
- 0x55,0xda,0x33,0x15,0x54,0xa4,0xf0,0xb9,0xa7,0x66,0xe1,0xa1,0x15,0xcd,0x89,0x96,
- 0xe4,0xe2,0xbe,0xe3,0xf9,0x1d,0x87,0x98,0x64,0x58,0x6b,0x29,0x8,0xec,0x74,0x26,
- 0x6c,0xf5,0x1d,0x4a,0x48,0xac,0xf3,0xd8,0x3c,0x63,0xd0,0xf7,0x34,0xea,0x75,0x66,
- 0xe7,0x66,0xa9,0xbc,0xc6,0xe6,0x77,0x76,0x77,0xd9,0xde,0x2a,0xd5,0x3c,0xb5,0x46,
- 0x83,0xf9,0xc5,0x45,0xd2,0xc9,0x4,0x29,0x5,0xe9,0x24,0x25,0x4a,0x62,0xda,0x33,
- 0x2d,0x86,0xfd,0x3e,0xb,0x4b,0x4b,0x8c,0x47,0x23,0x6e,0x6e,0x6c,0x70,0xf8,0xc8,
- 0x11,0x16,0x16,0xe6,0xa7,0x12,0xbc,0x35,0x9e,0x7b,0xe6,0x19,0xe4,0xb4,0x49,0x96,
- 0x50,0x32,0xac,0xbe,0x28,0x90,0x4a,0x31,0xe9,0xef,0x97,0x87,0x2e,0x8a,0xcb,0x83,
- 0xe4,0xcb,0xc4,0x37,0xdc,0x6a,0x94,0x1,0x84,0x2a,0x45,0xba,0x2e,0x4,0xfa,0xfd,
- 0x1e,0xcd,0x56,0x93,0x6a,0xd5,0xe1,0x7,0xbb,0xa4,0x93,0x71,0xc5,0xc4,0xf1,0x5b,
- 0x37,0x37,0xaf,0xfd,0x4a,0xb5,0xde,0xf2,0xba,0x56,0x3f,0xcc,0x63,0x6f,0x5a,0x6b,
- 0x58,0x6b,0xdf,0xd4,0xd9,0xdd,0xe4,0x3d,0x6f,0x3f,0xcb,0x1b,0xbe,0xed,0x38,0xde,
- 0x79,0x7e,0xed,0xb7,0x5e,0xe0,0xb9,0x97,0x2e,0x70,0xff,0x99,0x7b,0x51,0x53,0xd7,
- 0x3b,0x18,0x8e,0xa8,0x54,0x6b,0x8c,0xc6,0x63,0xd4,0x54,0x7d,0x1a,0x99,0xd2,0x3b,
- 0xf4,0xfa,0x3,0x92,0x38,0xa2,0x56,0xad,0x92,0xe7,0x5,0x2f,0xbc,0x7c,0x9,0x6f,
- 0xcb,0xcd,0x6f,0xcf,0xcc,0x60,0xad,0xe5,0xe6,0xe6,0x26,0x97,0xaf,0x5c,0x67,0x98,
- 0x66,0xc8,0xe9,0x7,0xbd,0x2d,0x6d,0x52,0x28,0xa9,0x50,0xb7,0xf8,0x72,0xa5,0xcb,
- 0x53,0x55,0x14,0x8c,0xc6,0x93,0x69,0xc7,0x51,0xb8,0xcb,0x50,0x9c,0x2d,0xf0,0xb6,
- 0xcc,0x55,0x84,0x54,0x48,0xad,0x11,0x42,0x92,0x44,0x8a,0x23,0xf3,0x55,0x8e,0xb4,
- 0x2b,0x34,0x62,0x5,0x5a,0x62,0x23,0xcd,0x91,0x59,0xc3,0xa9,0x76,0x42,0xab,0xe8,
- 0x21,0x87,0x19,0x27,0xa3,0x88,0x99,0xa3,0x6d,0xd6,0xb7,0xe1,0x95,0x6d,0xc7,0x60,
- 0x52,0x10,0xac,0xe7,0x48,0x53,0x53,0xaf,0x69,0x6e,0xe,0xa7,0xc3,0xa6,0x2b,0x49,
- 0xd9,0xeb,0x27,0xef,0x1e,0xfa,0x20,0xa7,0xb9,0xc0,0x85,0x97,0x5e,0x62,0xed,0xea,
- 0x55,0xbe,0xfd,0x3b,0xbe,0x83,0x2c,0xcd,0x18,0xd,0x87,0x28,0xa5,0x70,0xce,0x51,
- 0xe4,0x39,0xb6,0x28,0x68,0xcd,0xcc,0x82,0xf,0x65,0xb5,0x63,0xc,0x57,0x2f,0x5d,
- 0xa2,0x52,0xad,0x71,0xe4,0xe8,0x2a,0x52,0x4a,0xc6,0xe3,0x31,0x4f,0x3d,0xf9,0x24,
- 0x93,0x34,0x23,0x4a,0x2a,0x53,0x90,0x4d,0x4e,0x15,0xc0,0x16,0x5c,0xf9,0x5e,0x5a,
- 0x2a,0x6c,0x9e,0x1d,0xb8,0x7c,0x98,0xba,0x7e,0xa9,0xf0,0xb6,0xc0,0x17,0x19,0x52,
- 0x55,0x91,0xda,0x30,0x1c,0x8d,0x39,0x7a,0x78,0x85,0xb7,0x3c,0x74,0xf,0xdb,0x7b,
- 0x3,0xf2,0x74,0x88,0x32,0xd1,0xe3,0xb5,0x6a,0xab,0x3d,0x1e,0xa5,0x1d,0xbd,0xb7,
- 0xdb,0x21,0x8a,0xcc,0xb1,0x49,0x9a,0xde,0xab,0x19,0xf2,0x96,0xb7,0xdd,0xcf,0xe1,
- 0x43,0xb,0x48,0x65,0x78,0x53,0xd7,0xf2,0xf1,0x4f,0xfd,0x1a,0x26,0x8a,0x38,0x75,
- 0xe2,0x28,0x7a,0x3a,0x52,0xbd,0xb0,0xf6,0xa0,0x3c,0x33,0x46,0xa3,0xb4,0xa2,0x28,
- 0x2c,0x21,0x78,0x1a,0xf5,0x26,0x42,0x48,0x2e,0x5d,0xbd,0x42,0x3a,0x1e,0xf2,0xf0,
- 0x43,0x67,0x69,0xcf,0xcc,0x30,0x18,0xc,0x78,0xe5,0x95,0x4b,0x6c,0xed,0x76,0x9,
- 0x42,0x4e,0xdb,0xbb,0x4a,0x23,0xaf,0x24,0x11,0xf3,0x73,0x33,0xd4,0x6b,0x65,0x9f,
- 0x0,0x21,0x90,0x17,0x96,0xd1,0x78,0xc2,0x70,0x34,0x22,0x4d,0xb3,0xdb,0x8d,0x95,
- 0x94,0x93,0xc3,0xbd,0x2d,0x8,0xde,0x21,0xa4,0x42,0x4d,0x71,0x82,0xb2,0xbd,0xb,
- 0xe6,0x9b,0x31,0xef,0x78,0x68,0x81,0x34,0x2f,0x98,0x8c,0x2d,0x4,0x85,0xf2,0x9e,
- 0x90,0x16,0x34,0xc7,0x5,0x73,0x95,0x94,0xdf,0xb8,0xe6,0xb9,0x3e,0x90,0x1c,0xa9,
- 0x3b,0xbe,0x7d,0x76,0x9b,0x4a,0x1e,0x88,0x94,0x66,0xa5,0x19,0x23,0x6a,0x31,0x93,
- 0x2c,0xe7,0xca,0x76,0x17,0xd3,0x5a,0x45,0xa,0x49,0xaf,0x3f,0x64,0x71,0x61,0x8e,
- 0x61,0xbf,0x8f,0x73,0x8e,0x5a,0xa3,0x41,0x9e,0x65,0xec,0x6e,0x6f,0xb3,0xb1,0xb6,
- 0xce,0xc5,0x57,0x2e,0x73,0x78,0x79,0x89,0x6a,0xad,0xc6,0xa0,0x3f,0x40,0x29,0x8d,
- 0x9d,0xc6,0xe6,0xd1,0x68,0x4,0x42,0xd0,0x6a,0xb7,0xb1,0xce,0xd2,0x68,0x36,0x99,
- 0x8c,0xc7,0x74,0xf7,0x3a,0x9c,0x3a,0x73,0x1a,0x63,0xc,0x21,0xc0,0xb,0xcf,0xbf,
- 0x88,0x4a,0x7,0xbc,0xf1,0xec,0x9,0xc6,0x5,0xf4,0xc7,0x29,0xb9,0x7,0x8d,0x23,
- 0x89,0x66,0xa8,0x45,0x92,0x58,0x6,0xe,0xcd,0xb7,0xb9,0xb9,0xd7,0xe3,0xdc,0xd5,
- 0x5d,0x84,0x52,0xe5,0x7a,0x38,0x7b,0x9b,0x5d,0xcc,0xd2,0xa9,0xe0,0x46,0x92,0x5b,
- 0x8f,0x32,0x9a,0x87,0x5e,0x7f,0x82,0xad,0xbd,0x5d,0x36,0xfa,0x39,0xde,0xf9,0x7b,
- 0x10,0xe1,0x9e,0x24,0x89,0x3a,0x3a,0x32,0x86,0xd4,0xda,0xfb,0xfb,0xfd,0xfe,0xe2,
- 0xd1,0xc3,0x55,0x56,0xe,0xcf,0x10,0xb0,0xb8,0x10,0x38,0x73,0x66,0x89,0xf9,0x99,
- 0x88,0xcb,0x97,0xaf,0x62,0xad,0xe5,0xde,0x7b,0x8e,0x53,0xab,0x55,0xe9,0xee,0xf7,
- 0x4b,0x43,0x28,0x8a,0xd2,0x0,0xa4,0x62,0x30,0x9a,0x22,0x7a,0x95,0x84,0xed,0xdd,
- 0x5d,0x76,0xb6,0xb7,0x39,0x7b,0xe6,0x34,0xed,0x56,0x8b,0xf5,0xf5,0x75,0x2e,0x5e,
- 0xbc,0xc4,0x38,0x77,0xa5,0xbb,0x9f,0x46,0xb6,0x48,0x6b,0xda,0xad,0x26,0xf3,0x73,
- 0x6d,0x22,0x53,0x96,0x88,0xfb,0xbd,0x92,0xc,0x9a,0x4c,0xd2,0x83,0xb2,0x4a,0x8,
- 0x41,0xf0,0x6e,0x5a,0x8,0xf8,0xa9,0x52,0x47,0x23,0xa7,0x6e,0xf0,0xce,0x9a,0xbe,
- 0x51,0xd5,0xbc,0xfd,0xfe,0x19,0x1e,0x38,0x12,0xf1,0xf4,0xa5,0xb4,0x44,0xf9,0x74,
- 0x20,0xb7,0x65,0x9b,0xd5,0x78,0xc,0x3b,0x26,0xf0,0xe2,0x5e,0x60,0x27,0x85,0xfd,
- 0xd4,0x73,0x3a,0x2e,0x48,0x24,0x68,0x27,0x49,0xf3,0xb2,0xdd,0x6b,0x58,0x78,0x6,
- 0x85,0x62,0x29,0x8e,0xe8,0xf,0x87,0x1c,0x3e,0xb4,0x58,0x12,0x5b,0xce,0xd1,0xef,
- 0x76,0x59,0xbb,0x7a,0x95,0x4e,0xa7,0xc3,0xcd,0x8d,0xd,0x8e,0xdf,0x73,0xf,0x51,
- 0x52,0x41,0x4d,0x6b,0xf1,0xa2,0xc8,0x29,0xb2,0x94,0xce,0xce,0xe,0x51,0x92,0x30,
- 0xec,0xf,0xd0,0x26,0x22,0x8e,0x4b,0x15,0x8f,0x31,0x86,0x1b,0xd7,0xae,0x51,0x6b,
- 0xd4,0x69,0xb5,0x4b,0xa,0x6b,0x77,0x77,0x97,0xfd,0x8d,0x6b,0xfc,0xed,0xf7,0xbf,
- 0x95,0xe5,0xb9,0x19,0x72,0xeb,0x40,0x1b,0xe6,0x96,0xf,0x33,0xbf,0x30,0x8f,0x51,
- 0x8a,0xdd,0x8d,0x1b,0xec,0x6d,0x6d,0x61,0xb4,0xe2,0xf2,0xfa,0x2e,0x17,0xb7,0x6,
- 0x64,0xae,0x54,0x56,0x15,0xd9,0xe4,0x76,0xef,0xe1,0x14,0x13,0x11,0xa2,0xcc,0x89,
- 0x6,0xc3,0x31,0x51,0x2c,0x38,0x75,0x7c,0x89,0xe1,0x45,0x47,0x27,0xb5,0xf3,0x4a,
- 0xc9,0xb3,0x21,0xf0,0x94,0xfe,0x9b,0xff,0xf9,0xf,0xf2,0xaf,0xfe,0xaf,0x8f,0x3c,
- 0x3c,0x1c,0xf4,0xa2,0xfb,0x4e,0xb5,0xd0,0x5a,0x93,0xe5,0x25,0xd0,0xb3,0xb4,0xd8,
- 0xe0,0xd1,0x87,0x8f,0xf1,0x6b,0x9f,0x78,0x81,0xb5,0x8d,0x9b,0xa4,0x59,0xc6,0xe9,
- 0x53,0xf7,0xd0,0x9e,0xd2,0x96,0xde,0x97,0xa5,0x9b,0x56,0x8a,0x7e,0x7f,0x78,0x80,
- 0x4a,0x5d,0xb9,0x7a,0x9d,0x7b,0x8e,0xad,0xd2,0x6e,0xb7,0x78,0xf9,0xe5,0xb,0x5c,
- 0xbd,0xb1,0x4e,0x90,0xea,0xc0,0xdd,0x4b,0x29,0x69,0xb7,0x1a,0x2c,0xcc,0xce,0xa0,
- 0xb5,0x66,0x38,0x1e,0xb3,0x79,0x73,0x87,0xd1,0x78,0x42,0x61,0xed,0xed,0x4d,0x9f,
- 0x6a,0x8,0x5c,0x9e,0x97,0x4a,0x2,0xad,0x51,0x52,0x83,0x7e,0x75,0x15,0xc9,0x7c,
- 0x2b,0xe6,0xd0,0x6c,0x82,0xf3,0x70,0xe1,0x66,0xc1,0x5a,0x2f,0x30,0x1a,0x7,0xcc,
- 0xa4,0xec,0xb9,0x9b,0xa4,0x29,0xba,0x90,0x8c,0x42,0x83,0xfd,0x2,0xb4,0x84,0xa1,
- 0x15,0xac,0x4d,0x24,0x67,0xea,0x8e,0xdc,0x65,0xc,0xf3,0xf2,0xbd,0x47,0xe3,0x94,
- 0xa4,0xda,0x60,0x38,0x9a,0x70,0x68,0x69,0xa1,0xc4,0xfa,0x1,0x6b,0x2d,0x59,0x96,
- 0x51,0xad,0x55,0xc9,0xb3,0x8c,0x63,0xc7,0x8f,0xb3,0x78,0xe8,0x10,0x97,0xae,0xae,
- 0x81,0xf7,0xf4,0xbb,0x5d,0x86,0x83,0x72,0x2d,0xac,0xb5,0xe4,0xfd,0x1,0x6b,0xeb,
- 0x9b,0x2c,0x1e,0x2e,0x7b,0xfd,0xa3,0x28,0x22,0xcf,0x32,0x2e,0xbf,0x72,0x99,0xd3,
- 0xf,0xdc,0x5f,0x4e,0x1e,0x77,0x8e,0xe7,0x9f,0xfb,0x32,0xf,0x1f,0x9f,0x67,0x65,
- 0x71,0x16,0xef,0x3,0x4b,0x87,0x16,0x39,0x76,0xea,0x14,0x8d,0x46,0xe3,0xa0,0xf7,
- 0xa5,0xdd,0xa8,0x52,0x64,0x19,0x83,0x5e,0x8f,0xf9,0x56,0x8d,0x76,0xa2,0xd9,0x1c,
- 0x16,0x65,0xfe,0x33,0x5d,0xaf,0x32,0x2c,0x94,0xb9,0x81,0x50,0x12,0x1f,0x2,0x93,
- 0xb4,0xc0,0x7,0xc1,0x4c,0xab,0xc1,0x52,0x7b,0x40,0x67,0xd3,0x29,0xef,0x79,0xfd,
- 0xcf,0xfd,0x3f,0x3f,0xfb,0xff,0xca,0x9f,0xfe,0x99,0x7f,0x55,0xc9,0xf3,0xfc,0x6c,
- 0x36,0xe9,0x73,0xcf,0xea,0x61,0x92,0xb8,0x85,0xf3,0x31,0xc6,0x8,0xb4,0x96,0x3c,
- 0x74,0x76,0x5,0xad,0x5,0xde,0x16,0xec,0xee,0x75,0x39,0x77,0xfe,0x45,0x3a,0xdd,
- 0x1e,0x49,0x52,0x96,0x33,0xa3,0x51,0x29,0xaf,0x4e,0xb3,0x8c,0x56,0xb3,0xc1,0xf5,
- 0x1b,0x6b,0xd4,0xe2,0x88,0x76,0xbb,0xc5,0xb3,0xe7,0x9e,0xe3,0xf2,0x8d,0xd,0x50,
- 0x66,0x6a,0x99,0x9e,0xd8,0x28,0xe,0x1f,0x5a,0xa0,0xd5,0xa8,0xd3,0xe9,0x76,0xb9,
- 0x74,0xf9,0xa,0x97,0x2f,0x5f,0xa1,0xd3,0xdd,0xa7,0xb0,0xf6,0x8e,0x76,0xee,0x1c,
- 0xef,0x6c,0x59,0x6,0x9a,0x8,0x1d,0xc5,0x77,0x61,0x0,0xaf,0xd6,0x9,0x1c,0x10,
- 0xf4,0x52,0xcd,0xb,0xbb,0x8a,0x73,0x1b,0x8a,0x4c,0x34,0xf1,0xa6,0xc1,0xde,0xb0,
- 0x60,0xbf,0xdb,0xa5,0x1d,0x39,0x4e,0xce,0x27,0xf4,0xad,0xe0,0x16,0xee,0xe4,0x3,
- 0x6c,0x67,0xd3,0x6e,0xe4,0x3b,0x66,0xfc,0x59,0x6b,0xe9,0xf5,0x47,0xd4,0x6b,0x55,
- 0xc6,0xe3,0x9,0x91,0x31,0x84,0x69,0xe3,0x6b,0x14,0xc5,0xdc,0xdc,0xdc,0xe2,0x85,
- 0x17,0x5e,0x42,0x4a,0x89,0x14,0xa5,0xce,0xcf,0x18,0xc3,0x78,0x38,0x64,0x6f,0x77,
- 0xef,0xa0,0x34,0x1c,0xd,0xfa,0x74,0xf6,0x7b,0x54,0xab,0x35,0xf2,0x34,0x65,0x3c,
- 0x18,0x70,0xe9,0xe5,0xb,0x64,0x85,0x9d,0x86,0xc6,0x21,0xd7,0xae,0x5e,0x27,0xdf,
- 0xdf,0xe6,0xd,0x67,0x8e,0x13,0x42,0x60,0x71,0x79,0x99,0x7b,0xcf,0x9e,0xa5,0xde,
- 0x68,0xe0,0x43,0x98,0x4e,0x1b,0xd,0x44,0x71,0xcc,0xe2,0x94,0xcb,0x8f,0x23,0x4d,
- 0xa3,0x62,0xbe,0xa2,0x43,0xea,0x16,0xe4,0xac,0x6e,0x8b,0x50,0x43,0xa0,0xb0,0x1e,
- 0x29,0x2a,0x54,0xe2,0x26,0x87,0xe6,0xeb,0x44,0xda,0xe3,0x9c,0x7b,0xe0,0x3f,0xfd,
- 0xc1,0xff,0xac,0xa1,0xbd,0x2b,0x16,0x83,0x90,0xc7,0x8,0x19,0x4b,0x87,0xe7,0x50,
- 0x51,0x84,0x56,0x29,0x46,0x68,0x6e,0xdc,0xd8,0x62,0x32,0x1e,0x73,0x68,0xa1,0xce,
- 0xcd,0x4e,0xe,0xce,0xd2,0xef,0xf7,0x79,0xe6,0xb9,0xf3,0x9c,0xbe,0xf7,0x14,0x8b,
- 0xf3,0xb3,0xec,0xee,0xee,0x92,0xe7,0x5,0x52,0xa,0xf2,0x2c,0xa5,0xdf,0xed,0x30,
- 0xbf,0xb4,0xc8,0xf3,0x2f,0xbe,0xcc,0xde,0xfe,0x0,0xa9,0x24,0xc2,0x3b,0x8,0x9e,
- 0x46,0xad,0x4a,0xb5,0x12,0x13,0x63,0x99,0xaf,0xc5,0x2c,0x56,0xea,0x9c,0xdb,0xdb,
- 0xc6,0xa6,0x13,0xa2,0x4a,0x15,0xef,0xc5,0x94,0x39,0x3,0xa5,0xcd,0x6b,0x6e,0xf6,
- 0x6b,0x4c,0x6b,0xa1,0xd3,0x4f,0x19,0x4e,0x1c,0x95,0x4a,0x9,0x94,0xa4,0xa3,0x21,
- 0x83,0xfd,0xe,0x4b,0xad,0x84,0x53,0xcb,0x25,0xfb,0xe7,0x9c,0x63,0x38,0x29,0x6e,
- 0xf3,0x60,0x2,0xfa,0x85,0xc0,0x85,0x12,0xc,0xbe,0x85,0x0,0xbb,0x29,0x4b,0x39,
- 0x9e,0xa4,0xcc,0xcd,0xb6,0xf,0x12,0xde,0xce,0x7e,0x8f,0xf5,0xf5,0x4d,0xf6,0x7b,
- 0x7d,0x32,0xe7,0xf,0x2a,0x80,0x3b,0xff,0x30,0x85,0xb5,0xf6,0xa0,0x43,0x3a,0xcb,
- 0xb,0x94,0xd6,0xb4,0x9a,0xd,0x8a,0x2c,0x7,0x2,0xeb,0xeb,0xeb,0xcc,0xcd,0xcd,
- 0x32,0x1a,0xe,0x18,0xf6,0x7,0xbc,0xf8,0xfc,0xb,0xbc,0xf5,0xbe,0x15,0x9a,0xf5,
- 0x2a,0xed,0xd9,0x59,0x4e,0xdc,0x7b,0x2f,0x66,0xa,0xaa,0x7d,0xe5,0xa3,0xd9,0x6e,
- 0x97,0xb3,0x6,0xd3,0xb4,0x64,0x50,0xc3,0xab,0xcd,0xd4,0x2b,0x73,0x21,0xad,0x15,
- 0x91,0xd1,0x38,0xeb,0xf1,0x26,0x42,0x25,0xa5,0x7c,0x3f,0x31,0x96,0x71,0x2e,0x57,
- 0x11,0x62,0x49,0x13,0xc2,0x52,0x9a,0xa6,0xcb,0x15,0xe3,0x89,0xb4,0x2c,0x1b,0x15,
- 0x5,0xe8,0xa8,0xca,0xf6,0xd6,0x98,0x99,0x76,0x85,0x77,0xbf,0xed,0x24,0xbf,0xf8,
- 0xeb,0x2f,0x21,0x94,0xc6,0xe7,0x29,0xcb,0x4d,0xc3,0xd5,0x4b,0x17,0x49,0xd3,0x23,
- 0x65,0x4e,0xd0,0xeb,0x51,0x49,0x12,0x3a,0x9d,0x3d,0x2a,0xb5,0x1a,0x6b,0x6b,0x9b,
- 0x64,0x69,0xca,0x43,0xa7,0x56,0x58,0x59,0x9a,0xe5,0xd2,0xb5,0x4d,0x8c,0x31,0x9c,
- 0xbd,0xf7,0x28,0x8f,0xdc,0x7f,0x92,0xfb,0x4f,0x1d,0xa5,0xd3,0x1f,0xf1,0xe4,0x97,
- 0x9e,0xe3,0xa1,0x33,0xf7,0x70,0x68,0x71,0x8e,0x24,0x8e,0xf8,0x9d,0xcf,0x3f,0xcb,
- 0xa7,0x9f,0x7a,0x11,0x21,0xff,0xe4,0xd3,0xeb,0xb2,0x3c,0x67,0x32,0x1e,0x91,0x8d,
- 0x87,0x48,0x97,0x73,0xcf,0x72,0x8b,0x95,0xa5,0x6,0x41,0x9,0x9c,0xcf,0xa9,0x2b,
- 0x45,0x56,0x40,0xb0,0xa1,0x94,0x62,0x7,0x18,0x67,0x81,0xd4,0x7a,0xb2,0xa2,0xc0,
- 0xe6,0x1,0x2b,0x4b,0x5a,0xb8,0xbf,0xdf,0xa5,0xd2,0x68,0xd3,0xa8,0xaf,0xe0,0xbd,
- 0xa7,0xd3,0xe9,0x30,0xc9,0x72,0x4e,0x1c,0x5f,0xc5,0xfb,0xc0,0x53,0x4f,0x3f,0x4b,
- 0x5e,0x94,0xc6,0xaf,0xa4,0x3c,0x80,0xb3,0x85,0x28,0x95,0xbc,0x42,0x8,0xb2,0x34,
- 0x25,0x89,0xe3,0xb2,0x3f,0xf2,0x96,0x38,0x64,0x34,0x66,0x79,0x65,0x85,0x9d,0xad,
- 0x6d,0x26,0x93,0x14,0x63,0xc7,0xbc,0xfe,0xbe,0x47,0xd0,0xc6,0xb0,0x7a,0xe2,0xc4,
- 0x6b,0x6e,0x7e,0x8,0xa5,0x17,0x88,0x93,0x84,0xc9,0x64,0x82,0x75,0xfe,0xee,0xd6,
- 0xc8,0xaf,0x68,0x8d,0x6f,0x35,0xeb,0x2c,0x2f,0x35,0xe9,0x74,0x27,0xec,0xf,0xb,
- 0x86,0x83,0x9,0x78,0x4b,0xa4,0xa,0x9c,0x65,0x49,0x8,0xe,0x6b,0xa9,0xd4,0xf1,
- 0x49,0xda,0x6f,0xb4,0x6a,0x8a,0x62,0x92,0xe1,0x6c,0x41,0x70,0x39,0x13,0x59,0x25,
- 0x8e,0xa0,0xd1,0x48,0xc8,0x32,0x87,0xf4,0x5,0x21,0x18,0x92,0x48,0xf3,0xd7,0xde,
- 0xf9,0x28,0xdd,0xe1,0x84,0x5f,0xfd,0xec,0x39,0x6,0xb5,0x16,0xf3,0x4b,0x4b,0x68,
- 0x55,0x5a,0x9d,0x77,0x96,0x37,0x9e,0x3d,0xc1,0xf7,0xbe,0xeb,0x8d,0x28,0xa5,0xf8,
- 0xbd,0x27,0x9e,0xe1,0xaf,0xbe,0xf7,0x2d,0xbc,0xf1,0x91,0xfb,0x59,0x59,0x5a,0xc0,
- 0x18,0x8d,0xf7,0x9e,0x99,0xf6,0x84,0xb3,0xa7,0x8e,0x11,0x45,0xe6,0x60,0x8,0xe4,
- 0x9b,0x1e,0x3d,0x4b,0xf3,0x67,0x7f,0x99,0xff,0xef,0xf7,0x9e,0x3e,0xa8,0x12,0x5e,
- 0x6d,0x11,0x10,0x2,0x25,0x6f,0xa9,0x8a,0x3,0xce,0x96,0x7f,0x4,0x2a,0xb8,0x12,
- 0x73,0x2f,0xb2,0x94,0xb9,0xba,0x66,0x7e,0x66,0x86,0x46,0x6c,0x28,0x8,0xb8,0x22,
- 0xc7,0x84,0x40,0x2f,0x13,0xac,0x77,0xb,0x5c,0x16,0xf0,0x53,0xa7,0x39,0xc9,0x3d,
- 0x6b,0xd2,0x33,0x2e,0x24,0x93,0x50,0x86,0x2a,0xe7,0x3d,0x5a,0x4,0x5a,0x8d,0x92,
- 0xd8,0x19,0xd,0x87,0xd4,0x6a,0x35,0xe6,0xe6,0xe6,0xc8,0xf3,0x82,0x49,0x96,0x11,
- 0x10,0xd3,0x10,0x28,0xd0,0x5a,0x1f,0x84,0xb0,0x3,0x6c,0x42,0x4a,0xd2,0x2c,0x23,
- 0x8e,0xa3,0x92,0x3e,0xd7,0x9a,0x4e,0xa7,0x43,0x9c,0x24,0x53,0x61,0xa8,0x67,0x7d,
- 0x6d,0x8d,0x37,0x9f,0x3a,0x4c,0xb3,0x5e,0x61,0x6e,0x61,0x81,0xc6,0x1d,0x64,0xd3,
- 0xab,0x36,0x72,0x28,0x45,0x92,0x24,0x38,0xeb,0x99,0x64,0xc5,0xed,0x9,0x6a,0xce,
- 0x81,0xb9,0x4d,0x60,0x69,0xad,0x69,0x35,0xaa,0x9c,0x58,0x69,0xd1,0xef,0xa7,0x64,
- 0x83,0x3e,0xc3,0x7d,0x51,0x1a,0x80,0x28,0x8,0x41,0x57,0xb5,0x52,0xf7,0x68,0x42,
- 0x38,0x91,0x65,0x13,0x73,0xf4,0x50,0x5,0x6d,0x4a,0xf2,0x7,0x19,0xd8,0xdb,0xea,
- 0x60,0x8b,0xc,0x67,0x3d,0xe7,0x5f,0xde,0x67,0x71,0xe9,0x10,0x9b,0xdb,0x7b,0xb4,
- 0x9a,0x31,0x73,0xed,0x6,0xc7,0x57,0x16,0x98,0x6f,0xd5,0xb8,0xb8,0xd1,0xa1,0x3b,
- 0xb6,0xec,0x8c,0xc7,0x3c,0x7c,0xdf,0x2a,0x7f,0xe5,0x3b,0x1e,0xe3,0xf5,0xf,0x94,
- 0xf3,0x6d,0x5f,0xba,0x7c,0x83,0xbf,0xf3,0x43,0xdf,0xc7,0xc2,0x6c,0xbb,0xec,0x8c,
- 0xf5,0xe1,0x0,0x3f,0xaf,0x57,0x93,0x3,0xad,0xff,0xad,0x47,0xbd,0x5a,0xe1,0xc7,
- 0xfe,0xc6,0xfb,0xb9,0xb6,0xbe,0xcd,0xd3,0x17,0xd6,0x50,0x5a,0x1f,0x24,0x36,0x52,
- 0x4a,0x8c,0x56,0x24,0x49,0x4c,0x25,0x4e,0x10,0x52,0x30,0x99,0xb2,0x83,0x81,0xd2,
- 0xf0,0xc4,0x54,0xa8,0x7a,0xb8,0xa5,0x79,0xf7,0x23,0xcb,0x5c,0xda,0x99,0x30,0x1e,
- 0xe7,0x98,0xa2,0x40,0x0,0xd6,0x6,0x2e,0x6e,0x7,0x7a,0x99,0xbc,0xeb,0xe0,0x8c,
- 0x9d,0x60,0x3f,0x75,0x58,0x67,0x9,0x42,0x21,0xbc,0x47,0x85,0xc0,0xe1,0xd9,0x2a,
- 0xc1,0x66,0x6c,0x6e,0x6c,0x50,0x9f,0x22,0x77,0xfb,0xbd,0x3e,0xbd,0x5e,0x9f,0x56,
- 0x2d,0xa6,0x55,0x8d,0x18,0xf6,0xfb,0x84,0xe0,0x31,0x91,0x29,0x4f,0x24,0x90,0x24,
- 0x15,0x4c,0x64,0xa6,0x18,0x86,0x25,0x8e,0xe3,0xb2,0x2b,0x8a,0xc0,0xce,0xee,0x1e,
- 0xf5,0x46,0x93,0xfe,0x2d,0x10,0x2b,0x1f,0xf3,0xf0,0xbd,0xaf,0x47,0x69,0xcd,0xc2,
- 0xa1,0x43,0x77,0x24,0xbf,0xaf,0x21,0x95,0x95,0x92,0x28,0x8e,0xb1,0xae,0x6c,0x25,
- 0x2f,0x69,0x92,0x70,0xd7,0xa8,0xdb,0x80,0x28,0xb5,0x7,0x46,0xb1,0x34,0x57,0x21,
- 0x49,0x34,0x8b,0xed,0x98,0x5a,0x3d,0xc6,0xe6,0x92,0xd9,0x19,0xc9,0xe5,0x1d,0x6f,
- 0xac,0xe5,0xb8,0xb6,0xd6,0xad,0x66,0xe9,0x44,0x2f,0x2d,0x37,0xa9,0xb5,0x12,0x9c,
- 0xf3,0x28,0xa5,0xc9,0x8d,0x66,0xa7,0xb7,0xcb,0xe2,0x42,0x83,0xb3,0xa7,0x9b,0x7c,
- 0xfa,0xb,0x5b,0xb4,0x67,0xda,0xcc,0x54,0x2,0x49,0x6c,0xf0,0x3e,0xf0,0xe0,0xfd,
- 0xf7,0xf2,0xce,0x77,0x2c,0x61,0x91,0xdc,0xec,0xf4,0xb9,0xef,0x9e,0x55,0x9a,0xf5,
- 0xea,0x81,0x2b,0x7c,0xf0,0xde,0xe3,0x7,0xcc,0xde,0xab,0xc5,0xec,0x57,0x3b,0xdd,
- 0xb3,0xed,0x26,0x67,0xee,0x59,0xe5,0xe9,0xb,0x6b,0x54,0x92,0x84,0x4a,0x25,0x2e,
- 0xbf,0x26,0x31,0x5a,0x95,0xfc,0xfb,0x60,0x3c,0xa1,0x3f,0x1c,0x97,0x2c,0x9c,0xb5,
- 0x53,0x92,0x68,0x3a,0x6a,0xaa,0x18,0xf3,0xc8,0x83,0x8b,0x2c,0xb7,0xd,0xd7,0xb7,
- 0xf7,0xc9,0x72,0x4f,0xac,0xcb,0x99,0x7d,0x5e,0xc2,0xc4,0x39,0xfc,0xad,0x86,0xfd,
- 0xe9,0xd8,0x97,0xb4,0x70,0x8c,0xa2,0x69,0xb7,0x8e,0xb5,0x48,0x21,0x98,0x8c,0x27,
- 0x78,0xe7,0xd9,0xbb,0x7e,0x95,0xd5,0x93,0xa7,0x69,0xb6,0xdb,0x74,0xbb,0x5d,0x7a,
- 0xbd,0x1,0x55,0x1d,0x78,0xc7,0xc3,0xc7,0xf9,0xee,0xb7,0x3c,0xc8,0xaf,0xff,0xf6,
- 0xe7,0xc9,0xb3,0x9c,0x4a,0x1c,0xd1,0xeb,0xf5,0xb1,0xce,0xa1,0x8d,0x29,0x91,0xc8,
- 0x29,0x8d,0x7d,0xb,0xdf,0x48,0xd3,0x94,0xe1,0x68,0x42,0xbd,0xd1,0x62,0x38,0x1a,
- 0x32,0x1a,0x8e,0x38,0xb5,0x3c,0xc3,0x6c,0xab,0x4e,0xfd,0xff,0x27,0xee,0xbd,0x83,
- 0xec,0xba,0xee,0x3b,0xcf,0xcf,0x39,0x37,0xbd,0x1c,0xba,0xdf,0xeb,0x9c,0xd1,0xdd,
- 0x0,0x88,0x40,0x80,0x4,0x9,0x66,0x8a,0x92,0x48,0x91,0x12,0x2d,0x89,0x23,0xdb,
- 0x92,0x6d,0xad,0x67,0x53,0xd5,0xac,0xbd,0x9e,0xad,0xda,0xaa,0x9d,0x8d,0x5e,0x6b,
- 0xab,0x66,0x6a,0x67,0xaa,0xc6,0x65,0x8f,0x35,0xc1,0x2e,0xd5,0xec,0x58,0x96,0x4a,
- 0x96,0x6d,0x49,0x56,0x64,0xce,0x19,0x20,0x41,0x12,0x0,0x81,0x46,0xea,0x6,0xd0,
- 0x39,0x77,0xbf,0xfc,0x6e,0x3e,0xfb,0xc7,0x7d,0x68,0x2,0x42,0x20,0x15,0x2c,0xdf,
- 0x2a,0x14,0x50,0x5,0xe0,0xf5,0x7d,0xf7,0xfc,0xee,0x39,0xbf,0xf0,0xd,0xe9,0xc,
- 0xc9,0x16,0xce,0xe0,0xc3,0x14,0x3d,0xa4,0x8c,0x74,0x14,0xa5,0x90,0xa8,0x30,0xea,
- 0x35,0x44,0xd,0xb0,0x4b,0xd2,0x77,0x82,0x78,0x2c,0x8e,0x69,0x9,0xf2,0x5d,0x69,
- 0xe2,0x31,0x83,0x5c,0x3e,0x4d,0x22,0x9d,0x40,0x49,0x93,0x4e,0x23,0x80,0x73,0x8b,
- 0x9a,0xe7,0x7,0x83,0x7a,0x10,0x4,0xfd,0xae,0x5d,0x17,0xee,0xd2,0x1c,0xf5,0xf5,
- 0x1c,0x7a,0x3c,0x43,0x20,0x75,0xc2,0x50,0xc7,0x68,0x65,0xb2,0x1f,0xbb,0x67,0x8c,
- 0x53,0xe7,0xd6,0x38,0x3b,0x53,0xa7,0x3b,0x91,0x6a,0x91,0x2a,0x4d,0x86,0xc6,0xc6,
- 0x48,0xa6,0xd3,0xa0,0x14,0x7d,0xbd,0xdd,0x84,0x4a,0x5d,0x31,0xd6,0xfd,0xb0,0x2f,
- 0x73,0x75,0x26,0x2f,0x58,0xdf,0x28,0x73,0x61,0x61,0x95,0xb1,0x6d,0x43,0x24,0xe2,
- 0x71,0x34,0x2d,0xaa,0x65,0x2b,0x95,0x1a,0x4b,0xa5,0x12,0xb5,0x5a,0x1d,0xd5,0x6a,
- 0xf3,0xea,0x84,0x1c,0xd8,0x35,0xc4,0x1d,0xfb,0x76,0x22,0x35,0x8d,0x6f,0x7e,0xef,
- 0x49,0xf4,0x98,0x41,0x7b,0xda,0x24,0xc,0x5,0x6e,0xa0,0x8,0xc2,0x80,0x86,0x63,
- 0x13,0x86,0x21,0x32,0x69,0x10,0xb3,0x24,0xb1,0x66,0x95,0x46,0xdd,0x8e,0xac,0xe8,
- 0xc2,0x8,0x4f,0xaf,0x17,0x8a,0x34,0x3,0xc5,0x66,0xa5,0x86,0x65,0xe8,0x60,0x80,
- 0x2e,0x14,0x9,0x1,0xd9,0x5c,0x9e,0xd2,0xc6,0x6,0x9b,0xa5,0x12,0xae,0xe3,0xb0,
- 0xbd,0x37,0xcd,0xb1,0xf7,0x8e,0x33,0xb7,0x5e,0x23,0x95,0x49,0xd3,0x68,0x34,0x48,
- 0xa5,0x92,0xac,0xae,0xae,0x53,0x2a,0x95,0xd1,0x64,0x4,0x91,0xb,0x5a,0x9d,0x4b,
- 0x5d,0xd3,0x8,0xc3,0x90,0x4a,0xa5,0xa,0x42,0x46,0x20,0x10,0x4,0xcd,0x7a,0x8d,
- 0xdd,0xb7,0xee,0xc2,0xb2,0x2c,0x7a,0x6,0xa2,0x46,0xdb,0xd,0xdf,0xfe,0xcb,0xd4,
- 0x70,0xc,0x3d,0x2,0xea,0x4,0x9e,0x8b,0xae,0xeb,0x57,0x90,0x6c,0xa4,0xae,0x61,
- 0xc5,0x2c,0x32,0x69,0x8d,0x54,0xda,0x22,0x11,0x93,0x48,0xe5,0x52,0x2f,0x2d,0x53,
- 0x5e,0xb9,0x40,0xa9,0x16,0x80,0xdf,0xf,0xca,0xea,0xd3,0x11,0x14,0xed,0x66,0x8d,
- 0xe5,0x8b,0x17,0x78,0x2f,0xa8,0x92,0x4a,0x45,0x20,0x10,0x25,0xd,0x30,0x62,0x90,
- 0x6a,0xc7,0xb2,0x74,0x3a,0xda,0x53,0x9c,0x9a,0xdc,0xa4,0x6e,0x9b,0xf8,0x7e,0x80,
- 0xd1,0xf2,0xd1,0xbb,0xc4,0x6b,0xf,0x7e,0xc6,0xc5,0xbe,0x9e,0x2,0xe7,0x33,0xaf,
- 0x1e,0xa1,0xd4,0xf0,0x49,0xa7,0x92,0x34,0x1a,0xd,0x4a,0xe5,0x2a,0x95,0x5a,0x1d,
- 0xc7,0x89,0x14,0x3d,0x84,0xa6,0x83,0x52,0xc4,0x34,0xf8,0x1f,0xbe,0xf4,0x69,0x6e,
- 0xd9,0x35,0xc6,0xb9,0xb,0x33,0xe8,0x86,0xc1,0x67,0x3f,0x71,0x3b,0xc5,0x60,0x9a,
- 0x1d,0x7d,0x69,0xd0,0x74,0x6e,0xbf,0x63,0x7,0x4e,0xe8,0x45,0xf7,0xa6,0x20,0x5b,
- 0x4c,0x92,0xc8,0x26,0xa9,0x56,0x6c,0x36,0xd7,0xec,0x88,0x6a,0x15,0x2a,0x34,0x53,
- 0xd0,0xdd,0x99,0xc0,0x71,0x1c,0xd6,0x97,0x4a,0x98,0x52,0x91,0x4c,0x98,0x84,0x2e,
- 0x3c,0xf1,0xda,0xc,0x27,0xd7,0x36,0xb0,0x6d,0x1b,0x37,0x54,0x98,0xbe,0xcd,0x68,
- 0xef,0x10,0x39,0x2b,0x45,0x2c,0x9b,0xe5,0xeb,0x3f,0x7c,0x1a,0x2f,0xa6,0xc8,0xb7,
- 0xb7,0x45,0x95,0x90,0xeb,0x22,0xa4,0x24,0xc,0x15,0xf5,0x7a,0xbd,0x65,0x72,0x19,
- 0xd5,0xe9,0xe5,0x72,0x99,0x98,0x65,0x61,0xdb,0xe,0xba,0xae,0x91,0xb5,0x24,0x83,
- 0xdd,0xed,0xb4,0x15,0x8b,0xe4,0x5a,0x73,0x12,0x4d,0x46,0xb5,0xfb,0x4f,0x7,0x82,
- 0x52,0x8a,0x7a,0xd3,0x26,0x99,0x48,0x20,0x5b,0xb8,0xcc,0x8,0x6e,0x26,0x10,0x9a,
- 0x76,0x5,0xd0,0x45,0xd7,0xd,0xc,0x5d,0xa7,0x23,0xed,0x63,0xcf,0x4e,0xa0,0x39,
- 0xeb,0x9c,0x7b,0xeb,0x69,0x9a,0x4d,0x7,0xd7,0xa9,0x52,0x73,0x75,0x3c,0xab,0x80,
- 0x30,0x63,0x5,0x3d,0xc,0xc3,0x7c,0xad,0x5a,0xe7,0xcd,0xd9,0x4d,0x8e,0x9f,0xa9,
- 0x50,0xcc,0x5b,0xe4,0xd2,0x11,0x7,0xd0,0x32,0x35,0xa4,0x95,0xc0,0x37,0xb3,0xac,
- 0x2e,0x6f,0x92,0x8c,0x19,0xd8,0x76,0x13,0xcf,0x8f,0xc0,0x8,0xbf,0x4c,0x73,0x44,
- 0x21,0x4,0x17,0xe7,0x16,0x79,0xf3,0xdd,0x9,0x4,0x21,0xd3,0xb3,0xf3,0x54,0x6b,
- 0xd,0x3c,0xcf,0xdd,0xea,0xfc,0x6d,0xa1,0x84,0x2,0x97,0xff,0xfe,0x37,0x1f,0x61,
- 0x7c,0xa8,0x87,0x67,0x9f,0x7d,0x89,0xcd,0xcd,0x12,0xa7,0x2f,0x2c,0xb0,0x6b,0xdb,
- 0x0,0x1b,0x76,0x8d,0x7a,0x3d,0x60,0xbd,0x11,0x20,0xc5,0x1a,0xc5,0xa4,0x24,0x1e,
- 0x13,0x64,0xc,0x58,0x38,0x29,0x88,0xa7,0x92,0x48,0x9,0xae,0xd7,0x24,0x91,0xc9,
- 0x61,0xb4,0xe4,0x69,0x4f,0x4d,0xce,0x13,0x3a,0xe,0xa8,0xf0,0x12,0x31,0x1,0x3f,
- 0x50,0x54,0xd7,0x4a,0xcc,0xcf,0xae,0x93,0xca,0xb7,0x3,0x30,0xda,0x93,0x67,0xa0,
- 0xbb,0x83,0xed,0xbb,0x77,0xb3,0xb6,0x51,0xa2,0xb3,0x2d,0xc3,0x7c,0xd5,0x6d,0xe9,
- 0x1f,0x8a,0x56,0xf2,0x28,0x68,0x36,0x9b,0x11,0xaa,0xd7,0xf5,0x68,0xda,0xd1,0xe,
- 0x54,0x6f,0x34,0xd1,0x74,0x1d,0xc7,0x6e,0xe2,0x79,0x1e,0xfb,0x7a,0xdb,0xc9,0x24,
- 0xe3,0x94,0xeb,0xe,0x27,0xce,0x4d,0xe3,0x3a,0xe,0x86,0x65,0xd1,0xd3,0xd1,0x4e,
- 0x36,0x95,0xc0,0x30,0xf4,0x88,0xf3,0xd3,0xc2,0x17,0xbe,0x7f,0xe6,0x2,0xb7,0xee,
- 0xdd,0x81,0xd0,0xc,0x5e,0x78,0xe7,0x34,0xd3,0x2b,0xa5,0x2d,0x49,0xfd,0xcb,0x2f,
- 0xd3,0x30,0x10,0x42,0xa1,0x4a,0xab,0x9c,0xaf,0x7a,0xd4,0xaa,0x1,0xaf,0x1e,0xde,
- 0x64,0x65,0xc3,0x41,0x93,0xa0,0x1b,0x16,0x6d,0x3b,0x6d,0x62,0x7a,0xd8,0xa6,0x7,
- 0x7e,0x90,0xf1,0x3d,0x8f,0xa4,0x32,0x49,0x5a,0x12,0xcf,0xf3,0x59,0x58,0xf2,0xb1,
- 0xed,0x88,0x89,0xaa,0xd8,0x40,0xd3,0x16,0x28,0x98,0x8a,0x39,0xb7,0x42,0xc3,0x4f,
- 0x6e,0x6d,0x6d,0xea,0x17,0x7c,0xeb,0x85,0x10,0xc8,0x4b,0x22,0x4f,0x28,0x8a,0x6d,
- 0x39,0xfe,0x8f,0xdf,0xff,0x6d,0x2e,0xce,0x2d,0xf1,0xaf,0xfe,0xd3,0xb7,0xf1,0x5a,
- 0xe8,0x1f,0xa1,0xc9,0xad,0xc5,0xf7,0x5d,0x87,0xcf,0xdd,0x7f,0xb,0xf7,0xdd,0xb1,
- 0x8f,0x7f,0xfd,0xd5,0xbf,0xe4,0xd6,0x6d,0x3d,0xfc,0xe6,0xa3,0xf,0xb0,0xb6,0xb4,
- 0xc1,0xc2,0xd4,0xc,0xcf,0x2d,0xac,0xf1,0xda,0x82,0x4b,0xe8,0xd9,0xdc,0xd7,0x6f,
- 0x51,0x90,0x6,0xb6,0xa3,0x10,0x16,0xb8,0x5e,0x48,0x68,0xbb,0x68,0x12,0x42,0x21,
- 0xd1,0x55,0x95,0x52,0xb5,0x89,0x49,0x54,0x12,0x56,0x9c,0x0,0x3f,0x50,0xf8,0x81,
- 0x8c,0x86,0x33,0x8e,0x83,0x1e,0xfa,0x91,0xac,0x8b,0x8a,0x72,0x9f,0xde,0xf6,0x2c,
- 0xf9,0xf6,0x76,0x32,0xf9,0x1c,0x9e,0xef,0xf3,0xe8,0x7d,0xb7,0xf0,0xad,0x67,0xde,
- 0xc6,0x71,0x22,0x4e,0x62,0x18,0x4,0xa8,0x4b,0x2f,0x86,0xfa,0xa0,0xf4,0xb3,0x2f,
- 0xa1,0x99,0xc2,0x48,0xfc,0x42,0x84,0x3e,0x7b,0x47,0x77,0xa0,0x69,0x1a,0xe9,0xb8,
- 0x49,0x2e,0x9f,0x62,0x6d,0x33,0xe0,0xec,0xfc,0x32,0xaf,0xbf,0x75,0x8c,0x5c,0x32,
- 0x4e,0x2e,0x97,0x26,0xc,0x14,0x99,0x84,0x4e,0xdc,0xd0,0x59,0xde,0x6c,0x50,0xab,
- 0x37,0xf8,0xc6,0xf,0x5f,0xe4,0xa9,0xc3,0xa7,0xf1,0x83,0x0,0x2b,0x69,0x80,0xd0,
- 0x9,0x5c,0xa7,0x5,0xcf,0x8f,0x12,0xe5,0xc0,0x73,0x99,0x9b,0x6b,0x80,0x54,0x98,
- 0x1a,0x78,0x76,0x48,0x3e,0x11,0x89,0x60,0xaa,0x16,0x33,0xd9,0xf,0x82,0xb4,0xee,
- 0x7,0x41,0x82,0xd0,0x23,0x11,0xd7,0x8,0x7c,0x9d,0xba,0xd3,0x44,0xaa,0x10,0x53,
- 0x33,0xd0,0x75,0x81,0xa6,0x49,0x34,0x4d,0xa1,0xe2,0x1,0xb7,0x8c,0x66,0x38,0x31,
- 0x13,0xb1,0x75,0x2f,0x4d,0xb8,0x74,0xc3,0xb8,0x76,0x46,0x77,0xa3,0x24,0x46,0x8b,
- 0x26,0x58,0x1b,0xa5,0xa,0x4b,0x6b,0x25,0x52,0x89,0x38,0xc5,0xb6,0xc,0xc9,0x44,
- 0x9c,0x74,0x2a,0x49,0xb5,0xde,0xa0,0x2d,0x9d,0x60,0xad,0x5c,0x8f,0xb2,0xf2,0x2d,
- 0xb8,0x73,0xc0,0x9e,0x6d,0xbd,0xfc,0x77,0x5f,0xfa,0xc,0x2f,0xbf,0x71,0x84,0xbd,
- 0xc3,0xdd,0x6c,0xdf,0xbe,0x8d,0x81,0x6d,0x23,0x24,0x33,0x69,0x9c,0x7a,0x95,0xee,
- 0xe5,0x35,0x4e,0x9f,0x99,0xe3,0x8b,0x77,0x76,0x71,0x5b,0x5f,0x2,0x4d,0x9,0x52,
- 0x96,0x44,0x37,0x5,0x81,0xd4,0x91,0x2d,0xeb,0x58,0x69,0x4a,0xb4,0x98,0x8e,0xdf,
- 0x74,0xf1,0x1a,0x1e,0xa8,0xe8,0x4d,0xd3,0x9,0x71,0x9d,0x80,0xba,0xab,0x90,0xd2,
- 0x67,0xbd,0xda,0xe4,0x8d,0xe9,0x59,0x92,0xc9,0x4,0xa1,0xef,0xe1,0x5,0x1,0xc9,
- 0x54,0x8a,0xa5,0xb9,0x79,0xde,0x3e,0x72,0x94,0xc3,0xef,0x9f,0x63,0x71,0x65,0x9d,
- 0x64,0x31,0x86,0x69,0xc5,0xf0,0xfd,0x60,0xcb,0xc9,0x54,0xd3,0xb4,0x96,0x75,0xad,
- 0x46,0xb9,0x52,0x41,0x29,0x81,0xe3,0x34,0x9,0x83,0x80,0x94,0x1,0x55,0xdb,0xe3,
- 0x8d,0x89,0x19,0x1a,0xc7,0x2e,0x50,0x6d,0xba,0x98,0xf1,0x14,0x43,0xdb,0xc6,0x98,
- 0x9e,0x59,0xa4,0x7d,0xb8,0x1d,0xbd,0x1e,0xe0,0xdb,0x3e,0xfd,0x43,0x37,0xe1,0x9,
- 0x8d,0xe1,0xf1,0x31,0x1e,0x7f,0xfe,0xd,0x7e,0xf4,0xd2,0x11,0x94,0xd4,0x8,0x5b,
- 0x43,0x9f,0x4b,0x20,0x59,0x82,0x0,0x23,0x1e,0x8d,0xe2,0x85,0x5b,0xc1,0x34,0x22,
- 0x86,0x76,0x18,0x40,0xb9,0xe6,0x90,0x8a,0x6b,0x58,0x66,0x6b,0xb4,0x1e,0x6,0x4,
- 0x41,0x10,0xd3,0x83,0xc0,0x37,0xe2,0x96,0x62,0x57,0x7f,0x2,0x29,0x75,0x1a,0x76,
- 0x44,0x48,0x90,0x48,0x5c,0x37,0x6c,0xf5,0xfb,0x61,0xbd,0xa6,0xb0,0x4c,0x93,0x6c,
- 0xa2,0x49,0xad,0x11,0x6d,0x69,0x81,0xef,0x6f,0x35,0x20,0x3f,0xea,0xc2,0x57,0x6a,
- 0xd,0xe,0xbd,0x7b,0x2,0x3f,0x84,0x52,0xcd,0xa6,0x90,0xcf,0xd0,0xd9,0x9e,0x23,
- 0x9b,0x49,0x44,0x5d,0xab,0x20,0x60,0xa4,0xbf,0x87,0x3f,0xf9,0xc3,0xdf,0xe7,0x99,
- 0x57,0xde,0xe6,0x9b,0x3f,0x7a,0x91,0xb5,0xaa,0x8d,0x90,0x92,0x6d,0xfd,0x1d,0xfc,
- 0xdf,0xff,0xfc,0xcb,0xd4,0x9b,0x36,0xcf,0xbf,0x7c,0x98,0x4f,0xde,0xbe,0x8b,0xd1,
- 0xe1,0x1,0x62,0xf1,0x4,0xba,0x6e,0x10,0x4b,0xc7,0xe9,0xe8,0xc8,0x71,0x67,0x79,
- 0x99,0xfb,0xbb,0x13,0x11,0x63,0xd9,0x10,0xc4,0x63,0x6,0xba,0x21,0x51,0x31,0x3,
- 0xa3,0x85,0xe3,0x53,0x42,0x41,0xe8,0xa1,0x92,0x26,0xbe,0x61,0x44,0xbc,0xff,0x20,
- 0x44,0x23,0xc4,0xd5,0x5c,0x4c,0xe1,0x81,0x32,0x90,0x46,0x48,0x67,0x36,0x89,0x34,
- 0x4c,0x2,0x29,0x39,0x37,0xbf,0x4e,0xad,0x56,0x63,0x7e,0x71,0x85,0xef,0xbf,0xf8,
- 0xe,0xbd,0x3,0xbd,0x3c,0x78,0xff,0x30,0x6f,0x9e,0xb8,0x88,0x65,0x59,0xf8,0xbe,
- 0x4f,0xbd,0x5e,0x43,0x4a,0x49,0x22,0x99,0xc0,0x68,0x5,0x42,0xb3,0x69,0x23,0x34,
- 0x89,0xdd,0x68,0xa2,0x6b,0x92,0x81,0x62,0x1e,0x27,0xd4,0xc8,0x76,0xf5,0xb2,0x74,
- 0x6e,0x8a,0x63,0xe7,0xe6,0x79,0xe4,0xd1,0x47,0xf9,0xd2,0x7f,0xfb,0xcf,0x78,0xfa,
- 0x87,0xdf,0x23,0x98,0x3d,0x4a,0x36,0x93,0xa4,0x6f,0xef,0x10,0xdd,0x2d,0xa4,0x50,
- 0xc3,0xb6,0x79,0xe1,0xf5,0x77,0xf1,0x2,0x45,0xd8,0x6a,0x95,0xdb,0xd5,0x12,0xe9,
- 0x7c,0x3b,0xe9,0x6c,0x92,0x4a,0xc3,0x43,0x6f,0xf5,0x48,0xba,0x32,0x1e,0x83,0x45,
- 0x3,0x2b,0x1e,0x43,0xa,0x90,0x52,0x27,0x9b,0x36,0x30,0xf4,0x48,0x71,0x74,0x4e,
- 0x40,0x33,0xc,0x4d,0x3d,0xc,0x95,0x68,0x34,0x3,0x26,0xa7,0x1d,0x4c,0x23,0xaa,
- 0xc9,0xdb,0x33,0x91,0x4c,0x9b,0x2e,0x15,0x4a,0x42,0x2c,0xad,0x91,0x6b,0x4b,0x2,
- 0x82,0x9a,0xab,0x38,0x79,0x7e,0x9e,0x74,0x2a,0xc1,0x9e,0x8f,0x20,0x45,0x26,0x44,
- 0x54,0xb6,0xd4,0x1a,0x36,0x87,0xde,0x39,0xc1,0xcb,0xaf,0xbf,0x4d,0xb1,0x3d,0xc7,
- 0xc7,0xef,0xbf,0x93,0xdb,0xa,0x6d,0x74,0xb4,0x65,0x5b,0x49,0x4f,0xb8,0xb5,0x91,
- 0x48,0x29,0x28,0xb4,0x65,0xf9,0x9d,0xc7,0x3e,0xc9,0xf8,0xb6,0x7e,0xfe,0xf5,0x9f,
- 0xff,0x2d,0xd3,0x2b,0x25,0x1e,0xbe,0x7b,0x3f,0x3b,0xb6,0xd,0xf2,0x83,0x27,0x5f,
- 0xe2,0x8d,0xa3,0xa7,0x39,0x77,0x71,0x1e,0x4,0x7c,0xee,0xb3,0xed,0xe8,0x46,0x54,
- 0x77,0xa7,0x13,0x16,0x3,0x19,0x83,0xa9,0xb9,0x4d,0x12,0x49,0x8d,0x64,0x4c,0x63,
- 0xad,0xa4,0x13,0x37,0x5,0x99,0x38,0xf8,0x2d,0x1d,0xc3,0x16,0x23,0x31,0x2a,0x1f,
- 0x85,0xc0,0xb1,0x9b,0xb8,0x5e,0x80,0x52,0x12,0xc7,0xd,0xb0,0x1d,0x9f,0x30,0x50,
- 0xd8,0x4d,0x1f,0x43,0x48,0xea,0x8e,0x8b,0x65,0x19,0x2c,0xac,0x35,0x59,0x5c,0xdd,
- 0x60,0xb5,0x6a,0xb3,0x51,0xad,0xf3,0xe0,0x48,0x3f,0xf7,0x1e,0xbc,0x99,0xc9,0xd9,
- 0x15,0x96,0x2a,0xe,0x61,0x10,0x60,0x3b,0x1e,0x56,0xb3,0x49,0x32,0x99,0xdc,0xca,
- 0x95,0x6c,0xd7,0x23,0xc,0x42,0x74,0x11,0x22,0x85,0x60,0xbc,0xbf,0x83,0xcf,0x3e,
- 0x78,0x27,0xbe,0x66,0xd1,0xdd,0x9e,0x62,0x64,0xdb,0x36,0xbe,0xf0,0x4f,0x3e,0x45,
- 0x9b,0x61,0x73,0xe7,0x78,0x7,0x27,0x96,0x63,0x74,0x75,0xf7,0xd1,0x33,0x30,0xb0,
- 0x95,0x4,0x7a,0x5e,0x40,0xbd,0x5e,0xc7,0xae,0x6c,0xb4,0x44,0xca,0x14,0x4a,0x6,
- 0xf4,0x16,0xe2,0x64,0x2d,0x87,0x77,0xcb,0x1e,0x9,0x53,0x87,0xc0,0xa3,0x90,0xf0,
- 0xa3,0xe6,0x9c,0xdf,0x20,0x10,0x1a,0x4e,0x18,0x52,0x6f,0x78,0xd8,0xb6,0x44,0x68,
- 0x21,0x61,0x97,0x8b,0x48,0x2a,0xa9,0x87,0x61,0x88,0x65,0xa,0x8a,0xed,0x51,0xd9,
- 0x17,0xa9,0x74,0x85,0xd4,0x6c,0x7f,0xeb,0x8c,0x6e,0x56,0x3,0x3c,0xdf,0x41,0xd7,
- 0x24,0xa6,0xae,0xb3,0x77,0xac,0x9f,0xc9,0xd9,0x65,0xda,0x26,0x26,0x39,0xb0,0x6f,
- 0x17,0x96,0x69,0xd0,0x68,0xd,0x85,0xe2,0x2d,0x7f,0xdc,0x4b,0x6c,0xa1,0x4a,0xb5,
- 0xce,0x91,0xe3,0xa7,0x39,0xfc,0xee,0x49,0xfc,0x30,0x64,0xe7,0xd8,0x10,0x9d,0x85,
- 0x36,0xca,0xa5,0xa,0x42,0x29,0x34,0x9,0xd9,0x74,0xea,0x9a,0x3d,0x1,0xa5,0xe0,
- 0xe0,0xbe,0x9d,0x7c,0xf1,0x33,0xf7,0xf2,0xa7,0x5f,0xff,0x11,0x43,0xfd,0x5d,0x2d,
- 0x88,0x98,0xcb,0x3d,0xfb,0xc6,0xb9,0x69,0xa4,0x97,0xc5,0x95,0x8d,0xa8,0xbc,0x6a,
- 0x25,0x4b,0x33,0xcb,0x9b,0xbc,0x3e,0x55,0xa7,0x3d,0x5e,0x61,0xff,0x60,0x9a,0x9c,
- 0x21,0x31,0xd,0xb,0xa9,0x49,0xda,0x93,0x11,0xed,0x5c,0x97,0xd,0x8c,0x16,0xa,
- 0x49,0x6a,0x51,0xb,0xb7,0xe9,0xba,0xa0,0x4,0xbe,0x2f,0x69,0x34,0x2,0x1c,0x15,
- 0xe2,0x4,0x3e,0x75,0x27,0xa0,0x6a,0x37,0x9,0x63,0x2e,0x86,0x26,0xa8,0x36,0x1c,
- 0xde,0x3a,0x35,0xcd,0x9d,0xb7,0xdd,0x4c,0xcc,0xd0,0x58,0x9e,0x9f,0xa3,0xd9,0x18,
- 0xe3,0xe0,0xcd,0xdb,0xf9,0xfe,0x8b,0xef,0x12,0x22,0xa2,0xa,0xa0,0x56,0xa3,0xbd,
- 0x50,0x88,0x54,0xbf,0x88,0x8c,0xb0,0x5d,0xcf,0xa5,0x2b,0x9f,0xa2,0x52,0x6f,0xd2,
- 0x5d,0xcc,0x53,0xec,0x28,0x90,0xce,0xe6,0x18,0x19,0xe8,0x89,0xba,0x9b,0x94,0xb0,
- 0xe7,0x37,0x49,0x1b,0x21,0xbb,0xf7,0xdd,0x4c,0x47,0x5f,0xd7,0x15,0xcf,0x23,0x11,
- 0xb7,0xe8,0xef,0xee,0xe0,0xe8,0xc9,0xb3,0x5b,0xd0,0xf9,0xce,0x9e,0x1e,0xfa,0xf3,
- 0x8a,0x99,0xb9,0xa,0xbe,0xab,0x48,0x76,0x14,0xc8,0x5a,0xe,0x85,0xb4,0xd6,0xa,
- 0x1a,0xd0,0xd,0x8d,0x78,0x4c,0x42,0xa8,0xc8,0x67,0x34,0x4c,0x53,0x63,0xc5,0xd0,
- 0xa8,0x87,0x21,0x3a,0x4a,0x29,0xcf,0xb,0x8,0x2,0x7,0x9d,0x0,0x37,0x8,0x9,
- 0x3,0x85,0x14,0x82,0x4c,0xca,0xc4,0xb2,0x74,0x42,0xa5,0x30,0xf4,0x18,0x86,0x2e,
- 0x70,0x3,0x9b,0x86,0xeb,0x13,0xb7,0x4c,0xbe,0xf1,0x9d,0x27,0xf8,0xc9,0xb,0x87,
- 0xf8,0x67,0xbf,0xf3,0x39,0x62,0xba,0xc6,0xec,0xcc,0x3c,0x7,0xe,0xee,0xa3,0x54,
- 0xae,0xb1,0xb4,0xba,0xc1,0xbb,0xc7,0x4f,0xf3,0xc6,0xdb,0x47,0xf1,0xec,0x26,0x3d,
- 0x3d,0x5d,0x94,0xea,0xe,0x2f,0xbf,0x75,0x92,0x86,0xe3,0x62,0xc5,0x62,0x98,0x22,
- 0x64,0xcf,0xf8,0x20,0x5f,0xfc,0xb5,0x4f,0x70,0xe0,0xe6,0x9d,0xd7,0x6c,0x18,0x85,
- 0xa1,0x62,0xef,0xf6,0x11,0x72,0xa9,0x18,0xe9,0x44,0x8c,0x20,0xc,0x48,0xc7,0xd,
- 0xf6,0x6d,0x1f,0xe4,0x96,0x9d,0xc3,0x9c,0x9f,0x5b,0x61,0x79,0x6d,0x93,0x44,0xdc,
- 0x62,0xbd,0x5c,0xe3,0xf5,0xf7,0x27,0xd1,0x5d,0x9b,0xbb,0x76,0xb4,0xd1,0x96,0x32,
- 0x89,0x21,0x31,0x4d,0xd,0xc3,0xd4,0xc9,0xc7,0x4,0x96,0x11,0x15,0x4c,0x86,0xa1,
- 0x63,0x58,0x3a,0x61,0xa8,0x70,0x1d,0x8f,0xc0,0x88,0xca,0x2f,0xbb,0x19,0x62,0x2b,
- 0x41,0x95,0x80,0xba,0x1b,0x60,0x69,0x82,0x84,0x1,0x35,0x60,0x79,0x71,0x91,0x4c,
- 0x3e,0xcf,0xc4,0xcc,0x1a,0x9f,0xbc,0x2f,0xc6,0x81,0xfd,0xbb,0xf9,0xee,0x53,0xaf,
- 0x70,0xeb,0xed,0x7,0xb8,0xe7,0xb6,0x3d,0x3c,0x77,0xe8,0x7d,0x36,0xea,0x1e,0x41,
- 0x18,0x44,0xf8,0x88,0x30,0x8c,0x8e,0x1b,0xa5,0xf0,0x3d,0x1f,0xa7,0xd9,0xa4,0xb7,
- 0xa7,0x88,0xef,0x3a,0x74,0x15,0xdb,0x89,0xc5,0x13,0xad,0x9,0xa3,0xbc,0xa2,0x3b,
- 0x96,0xca,0x66,0x49,0xe5,0xb2,0x91,0x18,0xc7,0x4f,0x65,0xf7,0x3b,0xc7,0x87,0x78,
- 0xfc,0xf9,0xd7,0x51,0x4a,0x91,0xc9,0xe5,0xe9,0xe9,0x48,0xb3,0xad,0xb3,0xc1,0xb9,
- 0x19,0x89,0xa1,0xb,0xc,0xcb,0x62,0xb0,0xad,0x46,0x47,0xc1,0xa2,0x69,0xfb,0x94,
- 0x2b,0x11,0x28,0xd6,0x71,0x4,0x52,0x82,0xe7,0x85,0x6c,0x56,0x5c,0x6a,0x59,0xf,
- 0x91,0xa,0x43,0x5d,0x29,0xe5,0x99,0xa6,0x41,0x21,0x1d,0x43,0x20,0xa9,0xd4,0x3d,
- 0xbc,0x30,0x88,0xce,0xeb,0xaa,0x87,0x5f,0x76,0x59,0x2f,0x37,0x49,0xc6,0x63,0x8c,
- 0xd,0xa5,0x49,0xc5,0xe1,0xcd,0xd3,0x33,0xe4,0x3a,0x86,0x8,0xe3,0xed,0x7c,0xff,
- 0xe9,0x57,0x71,0x5d,0x8f,0x3f,0xfc,0xe7,0xbf,0xcb,0xf9,0x33,0x53,0x78,0xcd,0x3a,
- 0xf3,0x6b,0x1b,0x1c,0x7e,0xef,0x14,0xc5,0x5c,0x8a,0x9b,0xbb,0xdb,0x59,0x6b,0x36,
- 0xb1,0x32,0x19,0x9a,0x41,0x85,0xf5,0x9a,0xd,0x9e,0x4d,0x77,0x77,0xf,0xdd,0x1d,
- 0x6d,0x8c,0xe,0x15,0xb7,0x40,0x22,0xd7,0xeb,0xfd,0x17,0xb,0x79,0xfa,0x8a,0x39,
- 0x32,0xa9,0x4,0x4a,0x41,0x5b,0x2a,0x85,0xe7,0xf9,0xbc,0xf0,0xd6,0x49,0xfc,0x50,
- 0xb1,0xe7,0x80,0xc1,0xfc,0xd2,0x2a,0xaf,0x1f,0x3d,0x8b,0xa8,0x55,0xb9,0x7f,0x47,
- 0x3b,0x32,0x84,0x66,0x23,0xc4,0x8c,0xb,0x6c,0xc7,0xc3,0x76,0x3c,0x5c,0x47,0x23,
- 0x9f,0x8d,0xd0,0xce,0x56,0x18,0xd,0x7f,0x54,0xab,0x47,0x50,0xb7,0x1d,0xaa,0xae,
- 0x8b,0xed,0x1b,0x34,0x1a,0x2e,0xbe,0x52,0x38,0x1e,0x78,0x4a,0xe1,0xb8,0x3e,0x2b,
- 0x95,0x5,0x92,0xe9,0xc,0xba,0x61,0x52,0x6d,0xd4,0xf9,0xab,0xef,0x3d,0xc3,0x97,
- 0x3e,0xff,0x20,0x6d,0x6d,0x79,0x9e,0x7a,0xf1,0x10,0xdd,0x9d,0x5,0x6e,0xdf,0x33,
- 0xca,0x93,0x6f,0x9e,0xc4,0xf5,0x7c,0x94,0xef,0x47,0x6c,0x21,0xc3,0x88,0x38,0x2,
- 0x4e,0x33,0x1a,0xa4,0x15,0xb2,0x94,0xab,0x35,0xda,0xda,0x22,0x66,0xd0,0x75,0xe7,
- 0x1d,0xd7,0x49,0xac,0x46,0x87,0xfa,0x30,0xcd,0x48,0x3d,0xa4,0xa3,0xab,0x93,0x8e,
- 0x78,0x83,0xd5,0xb5,0x1a,0x9b,0xd,0xc8,0x15,0x8a,0x58,0xc2,0xc5,0xa9,0xd7,0x98,
- 0x98,0x12,0xa4,0x62,0x92,0x64,0x5c,0x62,0x18,0x1a,0x61,0x10,0x12,0xb3,0x24,0xa9,
- 0xa4,0x8e,0x6e,0x68,0xcc,0xa0,0xd3,0x8,0x95,0xa7,0x83,0x6a,0x4,0xa1,0xc8,0xd5,
- 0x1d,0x9f,0x64,0x42,0x27,0x16,0x17,0x98,0x42,0x8b,0x74,0x6d,0xa4,0x40,0x17,0x82,
- 0xd1,0xc1,0x4,0x33,0xb,0x3e,0xbe,0x1f,0x92,0x4d,0x19,0x68,0xaa,0x46,0x36,0x9b,
- 0x22,0x19,0x93,0xe4,0x8b,0x1d,0xbc,0xf9,0xee,0x49,0x4e,0x4d,0xcd,0x70,0xf7,0xfd,
- 0xb7,0x71,0xea,0xd8,0xfb,0x74,0x66,0x62,0x7c,0x6c,0xfb,0x30,0x89,0x6c,0x12,0xdd,
- 0xd0,0x38,0xb7,0xb4,0xce,0x27,0x1e,0x7c,0x80,0xe7,0x5e,0x3b,0xc2,0x4b,0x47,0x4e,
- 0xd3,0xd3,0x37,0x4c,0x57,0x4f,0xf,0x37,0x8d,0xe,0xd1,0x9e,0x8,0xe8,0xef,0xe9,
- 0xb8,0x2,0xf2,0xf5,0xd3,0xf,0x23,0x15,0x8f,0xb1,0xef,0xa6,0x51,0xf2,0xb9,0x4c,
- 0x4,0xfc,0xe8,0xe9,0xc1,0xb0,0xe2,0x64,0xa4,0xe4,0xf8,0xc5,0x65,0xb2,0xa9,0x4,
- 0x7f,0xf7,0xf7,0x4f,0x72,0xe8,0xe8,0x69,0xee,0x1f,0x6a,0xfd,0xda,0xe3,0x4a,0x0,
- 0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x23,0x69,0x46,0x10,0x30,0xe9,0x7b,0x10,0x48,
- 0xa4,0x2e,0xb7,0x58,0x3f,0x86,0x10,0x18,0x8,0x4c,0x53,0x44,0xdd,0xda,0x40,0x10,
- 0x78,0x8a,0xb8,0x61,0xe1,0x3b,0xa,0x11,0x4a,0x94,0xd2,0xb1,0x95,0x17,0x81,0x2a,
- 0x54,0x48,0xe8,0xfb,0xa4,0xb3,0x1d,0xc4,0x13,0xc9,0x68,0xf4,0x6b,0x58,0xcc,0x2e,
- 0x6d,0x70,0xf4,0xf8,0x29,0x1e,0x7d,0xe8,0x7e,0xb4,0x7,0x2,0x16,0x17,0x97,0x78,
- 0xe0,0xe0,0x5e,0xde,0x3c,0x76,0x8e,0x35,0x4d,0xa3,0xb3,0x90,0x21,0xf4,0x6c,0x74,
- 0x23,0x8e,0xeb,0x7a,0x4,0xbe,0x87,0xa5,0x41,0x47,0x3e,0xcd,0xca,0x46,0x8a,0x44,
- 0x2a,0xf9,0xa1,0x7d,0xff,0x6b,0x3d,0x8b,0xbe,0x9e,0xe,0x32,0xa9,0x24,0x5a,0x2c,
- 0x45,0x7b,0x12,0x86,0xf2,0x21,0xeb,0x15,0xd,0x3f,0xc,0xc8,0xc6,0x2c,0x86,0xf2,
- 0x4d,0xee,0xde,0x95,0xa3,0x54,0x73,0x9,0xb8,0x44,0x73,0x53,0x4,0x81,0x20,0x6c,
- 0xb5,0xbd,0x75,0x74,0x7c,0x4d,0xa0,0x8,0x9b,0xba,0x52,0x54,0x84,0x66,0xf4,0xc4,
- 0x93,0x3a,0x99,0xb4,0x89,0xeb,0x46,0x49,0x8a,0x22,0x12,0xfc,0xd0,0xa4,0xc2,0xb1,
- 0x5,0xa6,0xa1,0x47,0x58,0xf9,0x66,0xc0,0x50,0xde,0x47,0x6b,0xae,0xb0,0x6b,0xfb,
- 0x76,0x4e,0x9e,0xed,0x22,0x9b,0x6b,0xe3,0xe2,0xe2,0x3a,0x77,0xdc,0x1a,0x49,0x96,
- 0x2f,0xce,0xce,0xa1,0xf7,0x18,0x78,0xbe,0x8b,0xd0,0x24,0xe9,0x74,0x8a,0xb6,0xb6,
- 0x2c,0x1f,0xbf,0xfb,0x16,0x5e,0x3b,0x72,0x82,0xd5,0x72,0x83,0xcd,0x95,0x5,0xc4,
- 0x40,0x9e,0x9e,0xe1,0x61,0x2c,0xed,0xc6,0xf,0x42,0xd7,0x75,0x3e,0xfd,0xf1,0x3b,
- 0xc9,0xa6,0x92,0x84,0x61,0x88,0x6e,0x68,0x9c,0x99,0x5d,0x26,0x6b,0x49,0x1e,0x7b,
- 0xf8,0x7e,0x56,0x97,0x96,0x79,0xe3,0xe8,0x69,0xba,0x53,0x3a,0xf9,0x84,0xc4,0x71,
- 0x2,0xb0,0x24,0xbe,0xf2,0xc9,0x7,0x26,0x1d,0x39,0x2b,0xa2,0x79,0xc7,0x22,0x10,
- 0x85,0xa9,0x83,0xb4,0x62,0x11,0x48,0x45,0x85,0x84,0x8e,0x83,0x1b,0x28,0x4c,0x4d,
- 0xd2,0xa8,0x7a,0xa4,0x94,0xa0,0xec,0x28,0xe6,0xb1,0x9,0x3,0x85,0x26,0x2d,0x74,
- 0x4d,0xc7,0xb2,0x4c,0x36,0xcb,0x55,0x72,0xd9,0xc,0xe5,0xba,0x60,0x71,0x76,0x96,
- 0xa4,0x16,0x52,0xec,0xec,0x40,0x78,0x4d,0x32,0xb9,0x1c,0x7,0xf7,0x8e,0x32,0x35,
- 0xb7,0x42,0x5b,0x26,0x89,0xd4,0x14,0x8d,0x56,0x73,0xc8,0xf7,0x3c,0xe2,0x52,0xd1,
- 0xd7,0xd3,0x85,0xa7,0xc5,0xb0,0x62,0xb1,0x9f,0xbd,0x53,0xaa,0x14,0x85,0x7c,0x96,
- 0x91,0xe1,0x41,0xec,0xd0,0x67,0xff,0xa0,0x43,0x3e,0x29,0x99,0x59,0x57,0x48,0xdd,
- 0x22,0x6d,0x41,0xca,0xf0,0x70,0x5c,0x49,0x2a,0xae,0x23,0xc,0x81,0xeb,0xa9,0xf,
- 0x46,0xc9,0x7a,0xd4,0xdf,0x70,0x3,0x8d,0xd0,0x95,0x28,0xa8,0xea,0x4a,0x85,0x9b,
- 0x42,0x37,0xd0,0x75,0x9d,0x74,0xdc,0x42,0xc5,0xd5,0x65,0x65,0x5b,0xa4,0x3e,0xd5,
- 0xa8,0x7b,0x48,0xe5,0x63,0x18,0x71,0x52,0x71,0x81,0x14,0x21,0x22,0xa6,0x53,0xcc,
- 0x67,0x78,0xe4,0x9e,0x9b,0x39,0x7c,0xec,0x2c,0xa6,0x8c,0xda,0x98,0x97,0xa8,0xcf,
- 0xbe,0xef,0x73,0xfc,0xd5,0x23,0xb8,0xbe,0xcd,0xc8,0xf0,0x0,0x96,0x61,0x30,0xdc,
- 0xdf,0xc3,0x1f,0xff,0x5f,0xbf,0xc7,0xc5,0xd9,0x45,0x52,0xc9,0x38,0xc9,0x44,0x2,
- 0xa7,0x5a,0xc2,0x73,0x1c,0x44,0x8b,0x25,0x74,0x4d,0x29,0x33,0x29,0x18,0x1e,0xe8,
- 0x8e,0x7a,0x7,0x6b,0x6b,0xfc,0xed,0x77,0x7e,0xc2,0xf4,0xfc,0x32,0x8f,0x7c,0xfc,
- 0x2e,0x76,0x8f,0xf,0xf2,0x1f,0xbf,0xfe,0x5d,0xd6,0xeb,0x1e,0x43,0x5,0x2d,0x1a,
- 0xe5,0xa,0x81,0xe7,0x49,0xa,0x31,0x3,0xb,0x1,0x8d,0x88,0x29,0x63,0xd7,0x3,
- 0x54,0x22,0xc4,0xb0,0x34,0x14,0xf5,0xcb,0x4a,0xd4,0x88,0x18,0xda,0xac,0xba,0x84,
- 0x7e,0x18,0xe9,0x58,0x5,0xa,0xcd,0x13,0xd4,0x5c,0x1f,0x57,0x41,0x3c,0x99,0x60,
- 0x79,0x71,0x11,0xa9,0x1b,0x84,0x41,0x80,0x15,0x8b,0x31,0xbd,0xb4,0xce,0xdf,0xfc,
- 0xfd,0x13,0x7c,0xf6,0x33,0xf,0x12,0xba,0x1e,0xae,0x6d,0xf3,0xd0,0xbd,0xb7,0xf2,
- 0xc4,0x4b,0x47,0x90,0x52,0xd2,0xdf,0x9e,0x64,0x62,0xed,0xd2,0xb0,0xc6,0x24,0x69,
- 0x48,0x8a,0x85,0x36,0xba,0x7,0x87,0x48,0xa5,0x33,0x3f,0x73,0x23,0x4d,0x29,0x45,
- 0x2a,0x91,0x60,0x78,0xb0,0x87,0xa0,0x76,0x96,0x81,0x8e,0x28,0x77,0x28,0xd9,0x82,
- 0x4c,0x36,0xc7,0x68,0x97,0x20,0xae,0xc0,0x75,0x3d,0xf2,0x6d,0x31,0x2c,0x4b,0xdf,
- 0x6a,0x6c,0x5e,0x4a,0x31,0x4,0x20,0x3,0x9d,0xd0,0x91,0x28,0x15,0x6e,0xea,0x41,
- 0x18,0xae,0xa,0x61,0x50,0x6b,0x4,0xf8,0xd9,0x68,0x64,0x7b,0x9,0x88,0x23,0x82,
- 0xa8,0x1d,0xaa,0x82,0x30,0xf2,0xe8,0xd4,0x20,0xd0,0x54,0x24,0x9d,0x2e,0x42,0xbc,
- 0xcd,0x55,0xe,0x8c,0x74,0xd0,0x1d,0x13,0xc,0x8f,0xf6,0x47,0x39,0x4c,0x4b,0x10,
- 0xc1,0x8a,0xc5,0xd8,0x7b,0xd7,0x1,0x9a,0xcd,0x6,0xd9,0xb6,0x1c,0xba,0x11,0x25,
- 0x43,0xed,0xf9,0x2c,0xc5,0xf6,0x1c,0x28,0xb0,0x6d,0x1b,0x3f,0x93,0x20,0x9e,0x48,
- 0x7c,0xe8,0xc3,0x88,0xb4,0x7a,0x60,0x63,0xb3,0x8c,0x99,0xce,0xf0,0xd5,0x7f,0xf5,
- 0xbf,0x60,0xc9,0x90,0xf7,0x8f,0xbe,0xcf,0xf1,0x73,0x73,0x48,0x23,0xc6,0x72,0xad,
- 0xc1,0x70,0xce,0x45,0x93,0x12,0x3b,0x10,0x74,0x6a,0x26,0x4a,0x8f,0x54,0x3d,0x74,
- 0x4d,0xa0,0x42,0x70,0xea,0x97,0x16,0xe4,0x83,0xf6,0x69,0xe8,0x2b,0xdc,0xa6,0x47,
- 0xe0,0x45,0xe4,0x90,0x52,0xcd,0xa7,0xd6,0xc,0x30,0x94,0xa4,0xdc,0xf0,0xc1,0x8c,
- 0xb3,0xb2,0xb4,0xcc,0xda,0xd2,0x22,0x23,0xe3,0xe3,0xd8,0x8d,0x3a,0xe9,0x54,0x82,
- 0xcf,0x1d,0xdc,0xcb,0x8f,0x9f,0x7f,0x9d,0xc7,0x5f,0x7d,0x8f,0x3b,0x76,0x8f,0xf0,
- 0xbb,0x5f,0xfc,0x35,0x46,0x46,0x86,0xf9,0xe4,0xdd,0xfb,0x38,0x72,0xe4,0x18,0xa3,
- 0xbd,0x45,0xce,0xac,0x4c,0x47,0xd5,0x94,0x61,0x91,0x4e,0x47,0x41,0x3f,0x32,0x3e,
- 0xf2,0x91,0x17,0xff,0x72,0xba,0x99,0x2,0x4c,0xd3,0x60,0xfb,0x60,0x7,0xcb,0xe7,
- 0x4f,0x12,0x4,0x31,0x1c,0x2f,0x64,0xc3,0xb6,0xc8,0xa5,0x34,0xb6,0x15,0x1b,0x6c,
- 0xac,0x4,0xa0,0x34,0x5c,0xf,0xa4,0x54,0x97,0x23,0xc3,0xb6,0x5e,0x6c,0xc7,0x97,
- 0x78,0xa1,0x24,0x54,0xc1,0xaa,0x8e,0x52,0xb3,0x52,0xb7,0x54,0xdd,0x9,0xc5,0x55,
- 0xa3,0x5a,0x5,0x9e,0x27,0x2e,0x8d,0x98,0x8,0x55,0x48,0xd3,0x8d,0x74,0xf3,0xea,
- 0xcd,0x6,0xba,0x8,0x29,0xad,0xaf,0x61,0x57,0x2b,0xc4,0x2c,0xf3,0x8a,0xbc,0x45,
- 0x29,0x45,0x32,0x9b,0x22,0x99,0x4d,0x6d,0x99,0x2d,0x6c,0x61,0xf9,0x2f,0x69,0xee,
- 0x98,0x26,0xe6,0x15,0xca,0xdf,0x37,0xbe,0xc2,0x50,0xd1,0xdb,0xd7,0xcb,0xef,0xf4,
- 0xf6,0x10,0x8b,0x59,0x94,0xd6,0xd7,0x99,0x59,0x5e,0x67,0xb3,0xe1,0x21,0x42,0x8f,
- 0x9e,0x8c,0x41,0x93,0x0,0x23,0xc,0x9,0x31,0xb1,0xbd,0x90,0xc0,0xf7,0xa8,0xdb,
- 0x1,0xed,0x19,0x83,0x98,0x21,0xa3,0xda,0xbe,0xe6,0xa1,0x9b,0x1a,0x52,0x13,0x84,
- 0x81,0xc2,0x77,0x83,0xad,0x8c,0x7b,0xb3,0xea,0x51,0x69,0x4,0x1f,0xe8,0xfb,0x87,
- 0x30,0xbf,0xba,0x81,0x1d,0x4a,0xfa,0x86,0x86,0x70,0x5d,0x7,0xd3,0x8a,0x31,0xd4,
- 0x5d,0xe0,0xde,0xbb,0x6f,0xa3,0x52,0x2e,0xf3,0x67,0xdf,0x7a,0x82,0x6f,0x3d,0xbe,
- 0xc0,0x8e,0x9b,0x76,0x32,0x3a,0xb6,0x8d,0x5f,0xfb,0xf8,0x1d,0x9c,0x3d,0x7d,0x8e,
- 0x9e,0xae,0x2,0xfb,0xc6,0x43,0x5e,0x3d,0x31,0x4d,0x10,0x6,0x98,0x86,0x81,0x69,
- 0x99,0x1f,0x59,0xcf,0xdf,0xf7,0x7d,0xea,0xd5,0x1a,0x81,0xef,0xa3,0xb7,0xb8,0x80,
- 0xb6,0x1f,0xb2,0xb6,0xbe,0x8e,0xa1,0x9,0x2,0x1f,0x56,0xca,0x8a,0x66,0x10,0x63,
- 0x24,0xd7,0x24,0x1d,0x13,0xac,0x5f,0xda,0xd3,0x54,0x64,0x46,0x75,0xad,0x91,0x9b,
- 0x17,0x6a,0x4,0xa1,0x20,0x14,0xe1,0x9c,0xe,0x6a,0x56,0x37,0x4c,0xbf,0x66,0x63,
- 0x88,0x9f,0x4e,0x3d,0x2f,0xbb,0xcf,0x96,0x10,0x9,0x22,0xf4,0x31,0x75,0xc1,0x52,
- 0xb9,0x4a,0x10,0x28,0x34,0x2d,0x52,0xb9,0x8a,0x98,0x32,0x57,0x4f,0xb0,0x3e,0xca,
- 0xb6,0xf6,0xb3,0x5c,0xf1,0x78,0xc,0x21,0xa0,0x51,0xab,0x73,0x71,0x7a,0x8e,0xc7,
- 0x5f,0x79,0x87,0x5a,0xbd,0x4e,0xce,0x94,0x74,0xa7,0x2d,0x1c,0x7c,0x7c,0x14,0x16,
- 0x2e,0x82,0x48,0xb7,0xc7,0xf6,0x42,0x56,0xcb,0x2e,0xc5,0xac,0x19,0x9,0x5d,0x86,
- 0xa,0xcf,0xbe,0xda,0x3a,0xc6,0xf5,0x42,0x1a,0x4e,0xc4,0x32,0x16,0x44,0xae,0xdf,
- 0x15,0xdb,0xc1,0xd,0x15,0x3d,0xbd,0x3d,0x38,0x8e,0x13,0xcd,0xe2,0x5d,0x97,0x3b,
- 0x6f,0x1e,0xa3,0x50,0x2c,0x70,0xe7,0x81,0x3d,0x94,0x2a,0x55,0x9e,0x7f,0xeb,0x24,
- 0x67,0x2f,0xcc,0xe2,0x79,0x3e,0x3,0xbd,0x9d,0x3c,0x70,0xef,0xed,0x48,0xc3,0xe0,
- 0xe3,0x77,0xee,0xe3,0xd8,0xe4,0x2,0xcb,0x2d,0xcd,0x7f,0xf9,0x11,0x7,0x68,0x42,
- 0x8,0xe6,0xa7,0x67,0x38,0xfa,0xf6,0x7b,0xf8,0xa,0x36,0x6c,0x9f,0xd5,0x72,0x5,
- 0xe5,0x6d,0x62,0xa8,0xd,0x6,0x3a,0x4c,0x42,0xa5,0x98,0x5e,0x13,0x64,0x62,0x8a,
- 0xb1,0xa2,0x1e,0x79,0x35,0x60,0x5f,0xa1,0x2,0x1a,0x5e,0xa3,0x31,0xe7,0x4,0x6,
- 0x21,0x22,0x10,0x30,0xad,0x7,0x41,0x70,0x51,0xd3,0xd,0xaf,0xd6,0x10,0x86,0xa6,
- 0x3e,0x90,0x7d,0xb9,0xc2,0xb3,0x77,0x4b,0xcb,0x34,0x8a,0x20,0x43,0x97,0x38,0x76,
- 0x8d,0xa6,0xe3,0x92,0x4a,0x98,0xb8,0x5e,0x80,0x61,0x18,0x1f,0xdd,0x68,0xf3,0x17,
- 0x32,0x52,0xf2,0x79,0xe2,0x85,0xd7,0x79,0xeb,0xad,0xf7,0x98,0x98,0x9a,0xe1,0xec,
- 0xcc,0x32,0x66,0x3a,0x4f,0xc6,0x8,0x30,0x35,0x8d,0x6,0x21,0xe0,0x71,0xb9,0xa9,
- 0x73,0xd4,0x88,0x51,0xac,0x95,0x3d,0x8a,0x39,0x23,0xf2,0x2d,0xb8,0xc6,0x67,0x57,
- 0x9a,0x41,0xe4,0xe9,0xb,0xac,0x3a,0x1,0xfa,0xf8,0xcd,0x34,0xcf,0x4e,0x91,0x76,
- 0xeb,0x54,0xaa,0x75,0x74,0x4d,0x52,0x77,0x7c,0xf6,0xc,0xe7,0xb9,0xf3,0xd6,0x5d,
- 0x28,0xa5,0xe8,0xea,0xeb,0xe3,0xae,0x7d,0x3b,0xd8,0x39,0xd4,0xcd,0xec,0x46,0x9d,
- 0x5a,0xd3,0x26,0x93,0x8c,0x73,0xdf,0x1d,0xfb,0x28,0xaf,0xaf,0xd3,0xd1,0x51,0xe0,
- 0xf6,0xdd,0x23,0x5c,0x5c,0x58,0xc5,0xf,0xa2,0xd6,0xfa,0x47,0xbd,0xf2,0x85,0x76,
- 0xba,0x7a,0x8a,0x94,0xab,0xd,0x16,0x2a,0xab,0xac,0xae,0x9c,0x63,0xc7,0x70,0x9c,
- 0x64,0xab,0x3,0xeb,0x78,0x8a,0xf9,0x4d,0xc5,0x9e,0x3e,0x9f,0xb4,0x25,0xaf,0x74,
- 0xcf,0x69,0xa9,0x94,0x5e,0xb2,0x35,0xb8,0xfc,0x77,0x27,0x30,0x8,0x2,0x3c,0x4d,
- 0x57,0x17,0xa5,0xe7,0x79,0x17,0x75,0x5d,0xaf,0x56,0x5d,0x9d,0xa0,0xc5,0xb1,0xbf,
- 0x4,0x96,0x94,0x42,0x5c,0x6,0x9d,0xa,0xb7,0xec,0x11,0x34,0x29,0xd1,0xa5,0xcd,
- 0x46,0xa5,0x1a,0xd,0x86,0xfc,0xa0,0x45,0x9d,0xfa,0x87,0xbd,0xa4,0x94,0x4c,0x5e,
- 0x9c,0xe5,0x5f,0xff,0xfb,0x6f,0xf2,0x9d,0xa7,0xdf,0x60,0xc7,0xe8,0x10,0xbf,0xfb,
- 0x1b,0x9f,0xc6,0x34,0xc,0x62,0x12,0x7c,0x15,0xe2,0x7b,0x3e,0x41,0xa0,0xd1,0xf0,
- 0x4,0x75,0xf7,0x4a,0xc3,0x29,0xd7,0xf,0x59,0x2b,0x7b,0x38,0xfe,0x95,0x2e,0xe3,
- 0x42,0x40,0xc3,0x9,0xa8,0x37,0xa3,0xd9,0x86,0x17,0x4,0xac,0x24,0xda,0xf9,0xe2,
- 0xff,0xfe,0xff,0xf0,0x3f,0xff,0xd1,0xbf,0xa4,0x50,0x68,0xa7,0x56,0xab,0x51,0xb3,
- 0x5d,0xf4,0xc0,0xe1,0xbf,0xfe,0xc2,0x43,0x64,0x52,0xc9,0x28,0x29,0x4b,0xa7,0x19,
- 0xde,0xbe,0x9d,0xce,0xce,0xe,0x4c,0x9,0xcb,0x2b,0xeb,0x80,0xa0,0x90,0xcb,0x30,
- 0x30,0xd0,0x87,0x69,0x9a,0x3c,0x7c,0xdf,0x1,0xda,0xd3,0x31,0x6c,0x2f,0xea,0x6,
- 0x6e,0x4d,0x42,0x5b,0x34,0xb3,0x4b,0xbf,0xa4,0x94,0x2d,0x15,0x94,0x16,0x5,0x4c,
- 0xd7,0xd1,0xd,0x13,0xbb,0xde,0x60,0xad,0xb4,0x4e,0x4f,0x36,0x24,0xa1,0x85,0x28,
- 0x65,0x20,0x5,0xac,0x54,0x14,0x71,0x3d,0x64,0xbc,0x53,0xe0,0x6,0x3e,0x42,0xf9,
- 0x57,0x82,0x2b,0x5a,0xc7,0xf9,0x25,0x53,0x15,0x21,0xa3,0x1d,0xa1,0xe1,0x9b,0x84,
- 0x61,0xd8,0xf0,0x3c,0xef,0xbc,0xae,0x94,0x5a,0xd2,0x34,0x7d,0xc9,0xe,0xad,0x4e,
- 0x3b,0xf4,0x49,0xc7,0xb4,0x48,0x2d,0x2b,0x88,0x14,0xb2,0xb6,0xbc,0x1a,0x5b,0x32,
- 0x69,0xd1,0xbc,0x4c,0x90,0x8e,0xc3,0xe2,0xea,0x3a,0xf9,0x44,0x1c,0xd3,0x8c,0x91,
- 0x48,0x25,0xae,0x50,0xf4,0xf8,0xe9,0x3f,0xff,0xb2,0x30,0x3,0x9b,0xa5,0x2a,0x3d,
- 0x85,0x2c,0x9f,0xbb,0x7f,0x3f,0xbf,0xf9,0xd8,0xc3,0xf4,0xf,0xe,0xb0,0xba,0x51,
- 0xe6,0xe2,0xbb,0xef,0x12,0x78,0x6,0x41,0x28,0x10,0x32,0x24,0x50,0x1e,0x25,0xdf,
- 0xc6,0x92,0x92,0x98,0xf1,0x1,0xc0,0xd4,0xf1,0x42,0x56,0x4b,0x1e,0xf9,0xb4,0x4e,
- 0xdc,0xd4,0x40,0x40,0xd3,0xe,0x59,0xaf,0x78,0x84,0xad,0x1d,0x6e,0xa5,0xd9,0xc0,
- 0xcd,0x8f,0x10,0xb3,0x2c,0xe,0xdc,0x7e,0x1b,0x7f,0xf2,0xd5,0x3f,0xe5,0x6b,0x7f,
- 0xf1,0x35,0x9e,0x7d,0xf2,0x49,0x7e,0xeb,0xb1,0x4f,0x70,0x70,0xff,0xae,0x2b,0xbe,
- 0x57,0x7b,0xb1,0x48,0x26,0x9b,0x65,0xbd,0x52,0xe7,0xe9,0x17,0x5e,0xa7,0xf7,0xb7,
- 0x3f,0x1f,0x41,0xd8,0x5a,0x5c,0x82,0x91,0x81,0x1e,0x1e,0xbe,0x77,0x3f,0x3f,0x7e,
- 0xea,0x65,0x1a,0xd,0xbb,0x5,0x32,0x6d,0x70,0x61,0xf2,0x3c,0xf9,0xf6,0x7c,0x4,
- 0xf2,0xc,0xa2,0x29,0x62,0xb3,0xd1,0xc4,0x6e,0x34,0x23,0x23,0x29,0x2,0x56,0x16,
- 0x97,0x99,0x5e,0xda,0xa0,0x5c,0x5e,0xa1,0xad,0x10,0x43,0x29,0x19,0x59,0xc7,0x84,
- 0x51,0x0,0xdc,0x3c,0xa0,0x11,0xb7,0x34,0x9c,0xf0,0x32,0x85,0x93,0x4b,0xaf,0xba,
- 0x54,0x91,0xc8,0xb4,0x76,0x79,0x1e,0x25,0xa8,0x7,0x26,0x8,0x56,0x94,0x52,0xb,
- 0xda,0xfe,0x3,0xb7,0xbb,0x52,0x88,0x7,0x6b,0xb5,0xea,0xf6,0xfe,0x4c,0x9d,0x6c,
- 0xc2,0x88,0xb6,0x90,0x50,0x80,0x4,0xd7,0x53,0xf8,0x1,0xd8,0x6e,0x80,0x19,0x8b,
- 0xe1,0xf9,0x3a,0x71,0xdd,0x47,0xd3,0xe0,0xfc,0x92,0x43,0x77,0x7b,0x91,0xc5,0x85,
- 0x15,0x7a,0x7a,0x3b,0x9,0x3c,0x37,0xe2,0xca,0xcd,0xce,0x72,0xfe,0xdc,0x79,0xea,
- 0xb5,0x1a,0xf9,0xf6,0xb6,0x5f,0x9a,0xcf,0xad,0x94,0x92,0xc9,0xb3,0xe7,0xd9,0x3d,
- 0xd2,0xcb,0x63,0xbf,0xf6,0x20,0x1d,0xdd,0x5d,0xc4,0x2c,0xb,0x4f,0x49,0x8e,0xbf,
- 0xf3,0x1e,0x45,0x4b,0x52,0xdb,0x12,0x78,0x10,0x24,0x54,0xc4,0xee,0x8d,0x9b,0x7a,
- 0xb,0x94,0x79,0x49,0xe2,0x46,0xd1,0x74,0x2,0x6c,0x37,0xa4,0x6e,0x87,0x54,0x1a,
- 0xfe,0x16,0x35,0xbc,0x11,0x78,0x1c,0xba,0x58,0x22,0xde,0xb3,0x8d,0xed,0x7b,0xf6,
- 0x50,0xaf,0xd5,0x28,0x76,0x74,0xf0,0xc9,0x87,0x3e,0xc9,0xae,0x3d,0x7b,0x20,0xc,
- 0x70,0xab,0x9b,0x24,0xe3,0x26,0xb1,0x98,0xd5,0x4a,0xb8,0x54,0x64,0x8d,0x27,0x14,
- 0xaf,0x1f,0x7a,0x87,0xb7,0x4e,0x4c,0x72,0xd3,0xf6,0x11,0x92,0x97,0xcd,0x45,0x6,
- 0x7a,0x3a,0x78,0xf7,0xd8,0x29,0xb6,0xf5,0x75,0x32,0x34,0x34,0x40,0xa3,0xde,0xe0,
- 0xd4,0xc9,0x73,0xac,0xae,0xac,0xb1,0xb9,0x51,0xa2,0xb4,0x59,0xa6,0x51,0x6f,0x22,
- 0xa4,0xa4,0xad,0xbd,0x8d,0xb6,0x62,0x1b,0xab,0xcb,0x6b,0x94,0x36,0x36,0x99,0x29,
- 0x55,0x8,0xec,0x25,0x32,0x9,0x3,0xc3,0x8,0x81,0x0,0x4f,0xe9,0xd8,0x1e,0x8c,
- 0x14,0x5,0x8,0x8d,0x46,0x18,0xc3,0x10,0x21,0x95,0xaa,0x4f,0x36,0x65,0x60,0x58,
- 0x12,0xd3,0x10,0x8,0x25,0xb6,0xc4,0x59,0x5,0x60,0xfb,0x3a,0x17,0xca,0x5,0xbc,
- 0x50,0x7f,0x57,0xa1,0xfe,0x52,0x7b,0xe7,0xed,0xb7,0xfc,0x83,0x7,0xef,0xd8,0xdb,
- 0xb4,0x9d,0x7b,0x33,0x72,0x93,0xee,0x76,0x6b,0xab,0x7b,0x24,0x54,0x24,0x5e,0xec,
- 0x87,0x8a,0x5a,0x43,0x10,0x33,0xc3,0x8,0x84,0xa0,0xb,0xc,0x5d,0xb0,0xb0,0xd6,
- 0x20,0x97,0xeb,0x42,0x27,0xe4,0x85,0x67,0x5e,0x65,0x65,0x71,0x11,0xa7,0x51,0x67,
- 0x7d,0x79,0x8d,0xf9,0xf9,0x45,0xd2,0xe9,0x24,0x3d,0xfd,0x7d,0xbf,0xb4,0x0,0x0,
- 0x98,0x3a,0x73,0x9e,0xfd,0x7,0x6e,0x8e,0x9a,0x2f,0xad,0x6c,0xcd,0x17,0x26,0xc7,
- 0xde,0x39,0x46,0x3c,0xb4,0xa9,0xb7,0x86,0x59,0x8,0x83,0x34,0x51,0xc2,0x17,0x84,
- 0x8a,0x84,0xa9,0x5f,0x55,0x52,0xf9,0x81,0xc2,0xb,0x3e,0x68,0xbb,0x7a,0xca,0x63,
- 0xb9,0x66,0xd3,0x58,0xa,0x90,0x8b,0x1b,0x6c,0x86,0x1,0xed,0x7d,0xbd,0x5c,0x98,
- 0xbc,0x80,0xeb,0xf9,0xec,0xbc,0x69,0x27,0xa3,0xbb,0xf7,0xb1,0x5c,0x71,0x38,0xfc,
- 0xf6,0x7b,0xac,0x2c,0xcc,0x93,0xb0,0x74,0xe2,0xf1,0x38,0xba,0xae,0xe1,0x3a,0xe,
- 0x96,0x8,0x78,0xf9,0xf0,0x71,0x9e,0x79,0xe5,0x8,0xc3,0x3,0x3d,0x74,0x75,0xb4,
- 0x6f,0x21,0x9e,0xb3,0xd9,0x34,0x76,0xb3,0xc9,0xf0,0x60,0x1f,0xf1,0x44,0x9c,0xb1,
- 0xed,0xdb,0x18,0x19,0x1b,0x66,0x70,0x78,0x80,0x81,0xc1,0x3e,0xfa,0x6,0x7b,0xc9,
- 0xe7,0xb3,0x2c,0x2f,0x2e,0x70,0xe4,0xd0,0x3b,0x9c,0x3b,0x33,0x89,0xb4,0x2c,0x62,
- 0x66,0x9d,0x83,0x63,0x19,0x72,0xb9,0x38,0xb6,0xe3,0x44,0xf8,0x46,0xa9,0xd1,0x96,
- 0xd2,0x30,0xa4,0x42,0x97,0x44,0xaa,0xa6,0x52,0x52,0x6b,0xfa,0xe4,0xb3,0x16,0xa6,
- 0x26,0xd0,0x35,0xad,0xb5,0x13,0x7c,0xa0,0xbf,0x5c,0x6a,0xc6,0x98,0xad,0xb7,0x81,
- 0x10,0x3f,0x59,0x59,0x5d,0xfa,0x91,0xf6,0x7b,0xbf,0xff,0x7,0x84,0x2a,0x2c,0x4,
- 0xa1,0xfa,0x5c,0x68,0xaf,0x6a,0x63,0x5d,0xe6,0x96,0x8c,0xaf,0x8,0x21,0xf0,0x43,
- 0x1c,0x3f,0xa0,0x61,0x43,0x2a,0xa5,0xd1,0x74,0x14,0x71,0x3d,0xc2,0xa2,0xf9,0x61,
- 0xc8,0xc2,0x7a,0xc8,0xad,0x7b,0xc7,0x49,0x67,0x92,0x54,0xab,0x75,0xaa,0xd5,0x3a,
- 0x85,0x62,0x1b,0x5d,0x3d,0x1d,0x6c,0xbf,0x69,0x27,0xf1,0x64,0xf2,0x97,0xb6,0xfd,
- 0x57,0x2b,0x35,0x26,0xcf,0x4e,0x72,0xd3,0xee,0xed,0x57,0xd0,0xca,0xd,0xdd,0xe0,
- 0xd8,0xb1,0x9,0x54,0x79,0x8d,0xa6,0x52,0x4,0x42,0x11,0x6,0x82,0xb4,0xd0,0xd0,
- 0x5,0xb8,0x41,0x74,0xe6,0x5f,0x7e,0x14,0xfc,0x74,0xa1,0xe3,0x29,0x9f,0x9a,0xe3,
- 0x72,0x7e,0xd5,0xc6,0xa8,0x9,0x32,0x6e,0xc8,0xda,0xc9,0x33,0x2c,0xad,0xad,0x92,
- 0x2f,0x26,0x58,0x5a,0x59,0x65,0x63,0xb3,0x8a,0x52,0x8a,0xd1,0xed,0x3b,0x18,0xdd,
- 0xbb,0x9f,0xf5,0x46,0xc8,0xe1,0x23,0xc7,0x98,0x3a,0x77,0x16,0xaf,0x51,0x43,0x13,
- 0xb0,0xba,0x51,0xe6,0xf6,0x5b,0xf6,0xf0,0xec,0xcb,0x87,0xf9,0xc1,0xb3,0xaf,0x61,
- 0xe8,0x3a,0xdb,0x6,0x7b,0xb1,0x2c,0x83,0xce,0x62,0x3b,0xc9,0x64,0x82,0x54,0x32,
- 0x7e,0xcd,0xe3,0x51,0x29,0x85,0x6d,0xdb,0x2c,0xcc,0xce,0xa2,0x2,0x8f,0x9e,0xde,
- 0xe,0xde,0xbf,0xb8,0xc0,0xb1,0x89,0xb3,0x4c,0xcd,0x57,0x38,0x3d,0x13,0xd1,0xe7,
- 0xd2,0x9,0x1d,0x5d,0x2a,0xc,0x6d,0xb,0x5,0x8a,0x1d,0x28,0x62,0x86,0x47,0xbd,
- 0xa1,0xc8,0xa6,0x34,0x2c,0x19,0x81,0x79,0xb6,0xac,0x96,0x5b,0x95,0xcd,0x7c,0x2d,
- 0xc5,0x72,0x23,0x1d,0x80,0xfa,0x9a,0x69,0xc4,0x8e,0x6a,0xfb,0xf6,0xdd,0x82,0x94,
- 0x68,0x42,0x6a,0x9f,0xaf,0x94,0xd6,0x32,0xdb,0x8b,0x2d,0x49,0xf2,0x16,0xe9,0xc4,
- 0xb,0xc0,0xf1,0x15,0x75,0x47,0x91,0xcd,0x98,0xd4,0x1c,0x93,0x84,0x7e,0xc9,0x2c,
- 0x42,0xe7,0xfc,0x42,0x8d,0xae,0x42,0x91,0xce,0x62,0x9e,0x8e,0xce,0x76,0xf2,0xf9,
- 0xc,0x9a,0x94,0x14,0x3a,0x3b,0xe9,0xe9,0xef,0xff,0x50,0x7a,0xd7,0x4f,0x6b,0xeb,
- 0xdc,0x68,0xfb,0x3f,0xf4,0xfa,0xdb,0x24,0x12,0x26,0xc3,0xa3,0x23,0x57,0xfc,0x9d,
- 0xa1,0x6b,0x4c,0x9c,0x9a,0xa4,0xbe,0x30,0x43,0x80,0x22,0x40,0xe1,0xab,0x90,0x6a,
- 0x18,0x60,0xa,0x30,0x85,0xc4,0xd,0x42,0x74,0x29,0xb1,0x74,0x8d,0x4b,0xf4,0xfe,
- 0x4b,0x3f,0x37,0x20,0xc0,0x57,0x3e,0x33,0x9b,0xe,0x8b,0x2b,0x2e,0xc5,0x30,0x72,
- 0x32,0xd3,0x43,0x45,0x63,0x72,0x9a,0x85,0x93,0xa7,0x68,0xba,0x15,0x96,0x6a,0x91,
- 0x21,0x43,0xa5,0x54,0xc1,0xf7,0x7c,0xb6,0x8d,0x8f,0xb3,0xfb,0xc0,0x1d,0x68,0xd9,
- 0xe,0x4e,0x5d,0x98,0x67,0x62,0xe2,0x2c,0xe7,0x2f,0xce,0x92,0x4c,0x25,0xb8,0x65,
- 0x7b,0x3f,0xc7,0x4f,0x5f,0xe0,0xf1,0x17,0xf,0x31,0x79,0x71,0x8e,0x9e,0xae,0x22,
- 0xbd,0x9d,0x5,0xb2,0x99,0xf4,0xd,0x9f,0x89,0x69,0x59,0xe4,0xdb,0xdb,0xf0,0x5c,
- 0x87,0xb5,0xcd,0x32,0xcf,0x1c,0x3a,0xca,0xe2,0xd2,0x32,0xeb,0xe5,0x26,0xeb,0xe5,
- 0x26,0x95,0x9a,0x47,0xdc,0xd4,0xd0,0x35,0x19,0xa1,0x7b,0x5a,0x3e,0xc,0x81,0xe7,
- 0x61,0x18,0xa2,0x15,0x0,0x6,0x86,0x14,0xad,0x23,0x20,0x3a,0xe,0xa3,0x42,0x4e,
- 0x30,0x55,0xca,0x51,0xf3,0x93,0x6b,0x2,0xf5,0x67,0x8,0xb1,0xa0,0xdd,0x75,0xd7,
- 0xbd,0xd8,0xb6,0xdd,0xd4,0x74,0xed,0xa1,0x72,0xa5,0x36,0x34,0x90,0x6a,0x92,0x8e,
- 0xeb,0x5b,0x6f,0x87,0x1f,0x28,0x1c,0x3f,0x64,0xb5,0x62,0x93,0x8e,0x83,0x6f,0x37,
- 0xd1,0x85,0xc0,0xf1,0x5,0x4d,0x47,0x52,0xae,0xd5,0x29,0xd7,0x61,0xa8,0xa7,0x3,
- 0xc7,0x89,0xf4,0xff,0xe2,0xc9,0x4,0xc3,0x63,0x63,0x98,0x2d,0x8b,0xb5,0x4b,0xd8,
- 0x80,0x28,0xd3,0x15,0x5b,0x28,0x59,0xd5,0x12,0x51,0x2a,0x95,0x2a,0xc4,0x93,0x89,
- 0x2b,0xce,0xe9,0x9f,0x5e,0xfc,0x8b,0x17,0x66,0x39,0xfa,0xd6,0x7b,0xdc,0xf3,0xc0,
- 0x5d,0xc4,0x13,0x89,0xab,0xd8,0x32,0x67,0xce,0xcf,0xb3,0x7c,0xee,0xc,0x52,0xd3,
- 0xa8,0x7,0xd1,0x34,0x33,0x10,0xb0,0xe9,0x39,0x34,0x14,0xd4,0x43,0x8f,0x65,0xd7,
- 0xa5,0xe2,0xfb,0x94,0x5c,0x8f,0x75,0xdb,0x65,0xdd,0x75,0x59,0xb4,0x5d,0x96,0x6c,
- 0x8f,0x15,0xdb,0x61,0x72,0xb9,0x41,0x4f,0xd3,0x22,0x76,0xd9,0x7d,0x48,0x21,0xa0,
- 0x66,0x53,0x99,0x9c,0x67,0xf1,0xec,0x14,0xa7,0xce,0x4f,0xa2,0xa5,0x12,0x18,0xa6,
- 0xc5,0xea,0xf2,0x2a,0xa5,0xcd,0x32,0xd9,0x5c,0x9e,0x9d,0x37,0xdf,0xc2,0xe0,0xae,
- 0x7d,0xc4,0xb,0x3d,0xcc,0xaf,0x94,0x70,0x6c,0x9b,0x7c,0x2a,0xc6,0xd9,0x8b,0xf3,
- 0x9c,0x3c,0x7b,0x81,0x97,0xdf,0x78,0x87,0x7a,0xd3,0x66,0xb0,0xaf,0x9b,0x4c,0xea,
- 0xc6,0xbb,0xa2,0x61,0x9a,0xa4,0x33,0x19,0xde,0x3f,0x3d,0xc5,0x91,0xe3,0xef,0x63,
- 0x8a,0xa8,0xf7,0x62,0x6a,0x2,0x53,0x97,0x18,0xba,0xa4,0xe1,0x84,0x58,0x86,0x41,
- 0xdc,0x12,0x4,0x81,0xc0,0xf5,0x35,0xc,0x53,0xd0,0x68,0x2a,0x32,0x49,0x3,0x43,
- 0x82,0x71,0x59,0xb7,0x53,0x2a,0x81,0xed,0x69,0x9c,0x2d,0xb5,0xe1,0x29,0xfd,0x7d,
- 0x9,0xff,0xa1,0x52,0xa9,0x34,0x75,0x3f,0x70,0x99,0xbe,0x70,0xa6,0xba,0x6d,0x6c,
- 0xd7,0x21,0x61,0xa6,0x3f,0x36,0xbf,0xb1,0x49,0x4f,0x5b,0x7c,0xcb,0xf1,0xe2,0xd2,
- 0x2,0xc6,0x2d,0x81,0xa,0x15,0xb6,0x3,0xae,0x1f,0x7d,0x70,0xc3,0xf1,0x68,0xba,
- 0x4d,0xe6,0xcf,0x4f,0x71,0xf3,0xf8,0x10,0xbe,0xed,0xb0,0xb2,0xb2,0x41,0xbe,0x2d,
- 0x47,0xb9,0x5c,0xbf,0xac,0xcc,0x91,0x97,0xa9,0x80,0xb,0x7c,0xcf,0x8f,0xd0,0xb2,
- 0xcd,0x26,0x1b,0x6b,0x9b,0x64,0xdb,0xdb,0xf9,0xdc,0x17,0x1e,0x41,0x8b,0x59,0xd7,
- 0x5c,0xfc,0xa5,0xc5,0x15,0x5e,0x7c,0xfa,0x25,0x6e,0x3b,0x78,0x33,0xf9,0xf6,0xb6,
- 0xab,0xb6,0x4e,0x1,0xb4,0x75,0x76,0xe2,0x48,0x9d,0xac,0x2e,0x70,0x84,0x41,0xad,
- 0xe5,0x26,0xea,0x2a,0x85,0xed,0xdb,0x48,0x22,0x33,0xcb,0x92,0xeb,0x5d,0x51,0x2,
- 0xaa,0xc8,0xb7,0x1c,0xd7,0xf,0xd9,0x6c,0xf8,0x6c,0xbb,0xd6,0x60,0x5a,0x8,0xc,
- 0x20,0x5f,0x6e,0x60,0x97,0xa6,0x38,0x32,0x3d,0xc7,0xd2,0x7d,0x77,0xb1,0xef,0x81,
- 0x8f,0x91,0xb,0xdb,0xa8,0x55,0x6b,0xc4,0x13,0x71,0xb2,0xb9,0x2c,0xfd,0x83,0x23,
- 0xc,0x8d,0x8c,0xe3,0xba,0xe,0xab,0xcb,0xb,0x24,0x87,0xf6,0x30,0x7d,0x61,0x9a,
- 0xcd,0xcd,0xd,0xbe,0xf9,0xf7,0xcf,0xf2,0xfc,0xab,0x6f,0xf3,0xe5,0x2f,0x3c,0xc2,
- 0x43,0xf7,0xdf,0x4e,0x2e,0x93,0xbe,0x2e,0xb8,0x56,0x4a,0x49,0xdd,0xb6,0xb9,0xf3,
- 0xf6,0x7e,0xa4,0xf2,0x29,0x55,0x6c,0xe6,0x16,0x4a,0x58,0x22,0x6c,0x71,0x20,0x3,
- 0xd6,0x4b,0x36,0xc9,0x58,0x1c,0x21,0x5,0xd,0x27,0x46,0x3a,0x15,0x60,0xe8,0xf6,
- 0x15,0xca,0xeb,0x97,0x3f,0xa4,0x92,0x6d,0xd2,0xf0,0x74,0x90,0xe1,0x5b,0x81,0xa,
- 0x4b,0x32,0xc2,0x2c,0xee,0x64,0xf7,0xde,0xe,0x7c,0x8f,0x38,0x42,0x7e,0xb6,0x51,
- 0x59,0x33,0xc7,0xbb,0x8c,0x2d,0x1,0xe4,0xba,0xdd,0x72,0xd8,0xd4,0x4,0xba,0x84,
- 0x46,0x23,0xaa,0x2b,0x94,0x82,0xd5,0x72,0x1d,0xdb,0xf3,0x19,0x1c,0x6a,0xa3,0xd6,
- 0x80,0xf1,0xa1,0x3e,0x52,0xa9,0x44,0xe4,0x6,0x1a,0xf8,0x18,0xa6,0x41,0xbe,0xbd,
- 0x9d,0x78,0x32,0x4e,0x3c,0x91,0x20,0x96,0x48,0x90,0xce,0x66,0x49,0x67,0x33,0xe4,
- 0xdb,0xdb,0x19,0x1c,0x1e,0xe0,0x96,0xdb,0xf7,0xb3,0xef,0xd6,0xdd,0x98,0xa6,0x79,
- 0xd,0x1e,0x9c,0x64,0x66,0x7a,0x8e,0x1f,0x7f,0xf7,0x27,0x8c,0x8f,0xf,0xb2,0xff,
- 0xe0,0x81,0xab,0x20,0xd0,0x5b,0x75,0xbc,0x2f,0x79,0xeb,0xad,0x77,0x48,0xb,0xf,
- 0x43,0x44,0xd4,0x2f,0xa1,0x42,0xe2,0x52,0x92,0xd4,0x35,0x12,0x9a,0x46,0x52,0xd3,
- 0x49,0x6a,0x3a,0x71,0x4d,0xbb,0xec,0x97,0x24,0xa5,0x4b,0x1c,0x2f,0x64,0xba,0x1a,
- 0x29,0x91,0xb4,0x89,0xc8,0xbd,0xe3,0x9a,0x81,0x20,0x24,0x29,0x37,0xa0,0x7e,0xee,
- 0x22,0x73,0xa7,0x4f,0x63,0x87,0x3e,0x89,0xb6,0x3c,0xc9,0x74,0x9a,0x7c,0x3e,0x4b,
- 0x22,0x19,0x67,0x69,0x71,0x89,0xe9,0x8b,0x33,0x84,0xa1,0x64,0x78,0x64,0x14,0xcd,
- 0x30,0x78,0xf0,0xd3,0x8f,0xf0,0xd9,0xc7,0x3e,0xc7,0xd9,0xc9,0xb,0x7c,0xfb,0xbb,
- 0x3f,0xe6,0x9d,0x63,0xa7,0xc8,0x64,0x92,0xe4,0x72,0x39,0x62,0xa6,0x81,0xa6,0x7d,
- 0xd0,0x13,0x68,0xda,0x1e,0x6f,0xbc,0xfb,0x3e,0x4d,0xd6,0xf8,0xf2,0x6f,0xee,0xe2,
- 0xee,0x83,0x23,0xdc,0x79,0xc7,0x8,0x77,0x1d,0x1c,0xa6,0xaf,0x27,0x8b,0xe7,0x6,
- 0xd4,0x1b,0xe,0xae,0xeb,0x61,0xea,0x20,0x44,0x88,0xe7,0xd4,0xc9,0x66,0x34,0x9c,
- 0x40,0x11,0x37,0x25,0x52,0x80,0x69,0xc8,0x2b,0x5e,0x92,0xa9,0x72,0x8a,0x35,0x3b,
- 0xd1,0x44,0xa9,0xaf,0xc6,0xe3,0xc9,0x93,0xb5,0x4a,0x5,0x6d,0x70,0xb0,0x8d,0xae,
- 0xee,0x1e,0x9a,0xb6,0xdd,0xd0,0x75,0xe3,0xd3,0x1b,0xa5,0x4a,0x67,0x4f,0xda,0x46,
- 0xd3,0xc1,0xb,0x43,0x6a,0x4d,0x1f,0x5d,0x17,0xc4,0x63,0xd1,0x2c,0xa0,0x54,0x75,
- 0x29,0xb4,0xa7,0x18,0xd9,0x96,0x67,0xcf,0x9e,0x22,0x7,0xe,0xc,0xf3,0xc8,0xc3,
- 0xfb,0x59,0x58,0x29,0xd3,0xac,0x42,0x21,0x9f,0x26,0x16,0xb3,0xd0,0x4c,0x93,0x9e,
- 0xbe,0x3e,0xfa,0xfa,0xfa,0xe9,0xe8,0xec,0xa4,0xab,0xa7,0x8b,0xde,0x81,0x5e,0x3a,
- 0xbb,0x8b,0x74,0x76,0x16,0xe9,0xe8,0x2c,0x90,0x6f,0xcb,0x11,0x6f,0x9,0x1d,0x5e,
- 0x4d,0x7f,0x12,0x1c,0x39,0x76,0x8a,0xa7,0x9e,0x78,0x9e,0xa1,0xde,0x76,0x76,0xee,
- 0xbd,0x69,0x8b,0x3c,0x71,0x75,0x22,0x17,0xd,0xa0,0x5e,0x7f,0xfb,0x4,0x5a,0x6d,
- 0x93,0x98,0xa1,0x91,0xd2,0x74,0xb2,0xba,0x41,0xd6,0x30,0xc9,0xe8,0x26,0x19,0xc3,
- 0x24,0x6d,0x1a,0xa4,0x74,0x9d,0x94,0xa1,0x93,0xb2,0x74,0x52,0xa6,0x4e,0xca,0x34,
- 0x50,0x21,0x5c,0x58,0xb1,0x49,0xbb,0xb0,0xa0,0x1c,0x42,0x14,0x39,0x74,0xb4,0xeb,
- 0xdb,0x99,0x60,0xa,0x81,0x2c,0xd5,0x28,0x9d,0x3c,0xcd,0xfc,0xe9,0x33,0x54,0x5d,
- 0x7,0x5f,0xd7,0x9,0x2,0x45,0xa1,0x50,0xa0,0xa7,0xaf,0x1b,0x85,0xa2,0x56,0xaf,
- 0x71,0x76,0x72,0x92,0x99,0x8b,0xd3,0xdc,0xfb,0xb1,0xfb,0xf9,0xcd,0xdf,0xfa,0x12,
- 0xf9,0xb6,0x36,0x5e,0x7b,0xfd,0x10,0x4,0x65,0xca,0x1b,0x33,0x2c,0x6e,0x56,0x59,
- 0xaf,0xda,0x2c,0xad,0x6f,0x30,0x39,0x3b,0xcb,0xb1,0xa9,0x9,0x8c,0x74,0x95,0x4f,
- 0x7c,0x7c,0x88,0x54,0x3a,0x3a,0xee,0x74,0x9,0xe9,0x54,0x8c,0xc1,0xa1,0x2,0x37,
- 0xed,0xee,0x63,0x78,0xb8,0x48,0x47,0x21,0x81,0x69,0x8,0x6a,0x35,0x7,0xd7,0xf1,
- 0x49,0xa5,0xd,0x2c,0x4b,0x47,0x93,0x2a,0xc2,0x25,0x1a,0x3a,0x7e,0x18,0xe2,0x7a,
- 0x21,0x55,0x47,0x71,0xa6,0x94,0xc7,0x51,0xc6,0x79,0x94,0xfa,0x63,0x4d,0xd7,0x37,
- 0x4f,0x9f,0x9e,0x40,0x1b,0x19,0x19,0xa4,0xb7,0x6f,0x88,0xf5,0xb5,0xd5,0xba,0x65,
- 0x99,0xbb,0x1a,0x76,0x70,0x9b,0x19,0xae,0x53,0xcc,0xe9,0xf8,0x41,0x88,0xe3,0x84,
- 0xe8,0xba,0x46,0x2a,0x69,0x90,0xca,0xc4,0xe9,0x1f,0x6c,0xe3,0xe0,0xc1,0x5e,0x86,
- 0x86,0x72,0x74,0x76,0xa6,0xe9,0xe8,0xe9,0x8e,0x34,0x7f,0x8b,0x9,0xde,0x7a,0x77,
- 0x9e,0x62,0x3a,0x17,0x9,0x48,0x2b,0x45,0x79,0x63,0x93,0xf9,0x73,0x17,0x98,0x9b,
- 0xbc,0x48,0xad,0x5c,0xa5,0xbd,0xab,0xe3,0x3,0xb3,0xe7,0xeb,0x6e,0x7d,0x2,0xc7,
- 0xf5,0xf9,0xe1,0xd3,0xaf,0xf2,0xc4,0x53,0x2f,0x72,0xcb,0x8e,0x41,0x8a,0x85,0x3c,
- 0x3d,0x3,0x3,0xc4,0x5a,0x4e,0xdc,0x97,0xbf,0xf9,0x8,0xc9,0x6a,0xa9,0xc9,0xd9,
- 0xb,0x4b,0x4c,0x2d,0x97,0x58,0x2f,0xd7,0x48,0x68,0x2e,0xa6,0xd4,0x30,0xa5,0x8e,
- 0xd6,0xca,0x7e,0x35,0x23,0x82,0x82,0x47,0xbe,0xd5,0x92,0x30,0x26,0x50,0xa6,0x0,
- 0xd,0xce,0x2d,0x35,0xc8,0x54,0x24,0x1d,0x68,0x84,0xca,0x63,0x45,0x79,0x54,0xf0,
- 0x89,0xb,0x81,0x25,0x74,0xe4,0xd,0x12,0x58,0xd,0x81,0x28,0x55,0x29,0x9d,0x3c,
- 0xcd,0xc2,0xd4,0x14,0x4d,0x5d,0xa2,0xc,0x83,0x72,0xa9,0x4c,0x3a,0x9d,0xe2,0xa6,
- 0x5d,0x3b,0x19,0x1c,0x1a,0x64,0xf2,0xcc,0x29,0x36,0x56,0x57,0x18,0xdf,0x79,0x13,
- 0x77,0xdc,0x75,0x27,0xf9,0xf6,0xe,0x56,0xab,0x8a,0xa0,0x51,0xa7,0xcd,0x9b,0xa4,
- 0xb3,0x3f,0x4e,0x66,0x20,0x4f,0xcf,0x68,0x9e,0x3d,0xbb,0xdb,0xd8,0x39,0xd6,0x86,
- 0x61,0x44,0xed,0x3b,0x69,0x98,0x8,0xdd,0xd8,0x82,0xc6,0xeb,0xba,0xa4,0x50,0x4c,
- 0x33,0x30,0xd4,0xc1,0xd0,0x68,0x2f,0xf9,0x42,0xa4,0xc8,0x9a,0x48,0x18,0x24,0x2c,
- 0x81,0xeb,0xf8,0xd8,0x2d,0x26,0x95,0xe3,0x45,0xa5,0xfb,0x6a,0xc3,0x64,0xa6,0x9e,
- 0x47,0x9,0xf9,0x13,0xdb,0x6d,0xfe,0x75,0x2a,0x9d,0x9,0x16,0xe6,0xe7,0xd0,0xa6,
- 0xa7,0xa7,0xe9,0xec,0x28,0x50,0x28,0x74,0x28,0xdf,0xf3,0xc,0xa4,0xfe,0xd9,0x6a,
- 0x79,0xdd,0x18,0x29,0x6a,0x68,0x9a,0x4e,0xff,0x50,0x81,0x91,0xd1,0x22,0x3d,0x7d,
- 0x39,0x86,0x47,0x3b,0x19,0x1c,0x2a,0x60,0x5a,0x6,0x52,0x6a,0x48,0x2b,0x83,0xb4,
- 0xd2,0x48,0xdd,0xa0,0xd0,0xd7,0xc5,0x52,0xa9,0xc1,0xc2,0x85,0x4d,0x8a,0xb9,0x74,
- 0xd4,0x8b,0xd6,0x4,0x46,0x32,0x46,0xb1,0xbf,0x8b,0xc1,0xf1,0x6d,0x57,0x25,0x6f,
- 0xd7,0xdc,0xf2,0x17,0x56,0xf8,0x93,0xaf,0x7d,0x9b,0x23,0x47,0x8e,0xf2,0xe9,0xbb,
- 0xf7,0x92,0xb1,0x2c,0x34,0xa9,0x33,0x38,0x36,0xb2,0xc5,0x7f,0x13,0x42,0x10,0x28,
- 0xc1,0xc2,0x5a,0x8d,0xc3,0xef,0x9e,0xe3,0xf4,0xf9,0x65,0xe2,0xc5,0x1e,0x1e,0x79,
- 0xec,0x31,0x5c,0x23,0xc6,0xa9,0xb7,0xdf,0xc4,0x9,0x7c,0xaa,0xae,0x4b,0xcd,0xf3,
- 0xa8,0x7b,0x1e,0x35,0xc7,0xa3,0xde,0x74,0xa9,0x3a,0x1e,0x15,0xc7,0xa7,0xda,0xf0,
- 0xa8,0xd7,0x3d,0x4e,0x2d,0xd5,0x51,0xeb,0x8a,0x2e,0x22,0x8f,0xe3,0x36,0x69,0xe1,
- 0x2b,0xf,0x5b,0xf9,0x54,0x43,0x17,0x8f,0x10,0x4b,0x68,0xe8,0x42,0xde,0xb0,0x92,
- 0xd1,0x0,0xb5,0xb6,0xc9,0xd2,0xfb,0x13,0x2c,0x6f,0xae,0x23,0x33,0x19,0x16,0x16,
- 0x16,0x39,0x72,0xf8,0x30,0x17,0xa7,0xce,0x53,0xdd,0x5c,0x45,0x97,0x82,0xaa,0xed,
- 0xb1,0x7d,0xfb,0x18,0x43,0x43,0x83,0xac,0xac,0xae,0x13,0x6f,0x1b,0x60,0x79,0xd3,
- 0x43,0x4d,0xbe,0x49,0xbb,0xbb,0x4a,0x2a,0x6e,0x12,0xcf,0xb6,0x63,0xe6,0xfb,0xd0,
- 0xac,0x34,0x52,0x8f,0x94,0x51,0xa4,0xd4,0xd0,0x4c,0xb,0xcd,0xb4,0xb6,0x5c,0xc4,
- 0xa4,0x94,0x18,0xa6,0x41,0xa1,0x23,0xc7,0xc8,0x78,0xf,0xdd,0x7d,0x5,0x32,0xb9,
- 0x14,0xb9,0xb6,0x2c,0xbe,0xeb,0xe3,0x3a,0xee,0x25,0xdb,0x29,0x2e,0x56,0x33,0x94,
- 0xbc,0xa4,0x83,0xe2,0x8f,0x93,0xc9,0xd4,0xf1,0xc5,0xf9,0x59,0x9e,0x7b,0xee,0xb9,
- 0x48,0x26,0x23,0x8,0x2,0x5c,0xc7,0xc1,0xf7,0xfd,0xc3,0xa6,0x61,0x4c,0x6c,0xb8,
- 0xe9,0x3,0xf3,0xab,0x75,0x76,0xee,0x28,0x92,0xed,0x28,0xe2,0x4b,0xa8,0xd8,0x8a,
- 0xea,0x9a,0x44,0xc4,0x22,0x32,0x68,0xa8,0x88,0xac,0x61,0x45,0x0,0x42,0x62,0x58,
- 0x4d,0x8a,0xc5,0xe,0xde,0x7c,0x7e,0x92,0xe1,0xee,0x2,0x86,0xa1,0x93,0xca,0x66,
- 0xe9,0xe9,0xef,0xa7,0xad,0x58,0xbc,0x21,0xf1,0x51,0x4a,0x81,0xe7,0x7,0x3c,0xf7,
- 0xea,0xdb,0xfc,0x87,0xaf,0x7f,0x97,0xa4,0x2e,0xf8,0x9d,0x47,0xee,0xa2,0xbb,0xab,
- 0x83,0xf2,0x42,0x89,0x64,0x7b,0xa,0xc3,0x30,0x91,0x52,0xe0,0x87,0x30,0xb3,0x50,
- 0xe2,0xf4,0xe4,0x2,0xa1,0x16,0x63,0x74,0xcf,0xad,0x7c,0x72,0xcf,0x1e,0x52,0x99,
- 0x8,0x2e,0x56,0x2a,0x97,0x79,0xf9,0xef,0xfe,0xb,0x76,0x73,0xd,0x3f,0xbc,0xde,
- 0xb4,0x31,0xaa,0x4a,0xaa,0x1e,0x50,0xd2,0x18,0xc2,0xa4,0xa1,0x3c,0x72,0xd2,0x42,
- 0x22,0x18,0xd3,0x72,0x6c,0x2a,0x9b,0xb5,0xd0,0x66,0x35,0x6c,0x50,0x51,0xe,0x45,
- 0x99,0xa0,0x4d,0xc4,0x30,0x85,0xbc,0xee,0xcc,0x4b,0x48,0x49,0xdc,0xf1,0x69,0xbc,
- 0x74,0x98,0x77,0xcf,0x4f,0xb3,0xfd,0xf3,0x9f,0xa1,0x7f,0x70,0x88,0xe9,0x8b,0x17,
- 0xf0,0x1d,0x7,0x29,0x60,0x69,0x71,0x89,0xd3,0xa7,0xcf,0x70,0xd3,0x4d,0x3b,0x79,
- 0xe8,0x53,0x9f,0xe0,0x99,0x27,0x9f,0xa1,0xf7,0xa6,0xbb,0x58,0x98,0x4a,0xe2,0x1e,
- 0x7d,0x86,0xfe,0xa9,0x29,0x8c,0x5c,0x1b,0xf9,0xed,0xbb,0xc8,0xdc,0x7c,0x10,0xf,
- 0x13,0xa7,0x11,0xc3,0x6e,0x84,0x38,0x4d,0x97,0xc0,0xf,0x22,0xda,0x57,0x20,0xb7,
- 0xd8,0xcd,0x84,0x61,0xe4,0x47,0x10,0xba,0xa8,0x50,0x22,0x63,0x69,0xf2,0x3,0xfd,
- 0x34,0x26,0xe7,0xa9,0x6d,0x94,0x8,0x85,0xce,0x9a,0x9d,0x40,0xa1,0xce,0xaa,0x30,
- 0x7c,0xc3,0xf7,0x22,0x9d,0xa3,0x2d,0xb1,0xe8,0xdb,0x6e,0xbb,0x8d,0xaf,0x7c,0xe5,
- 0x2b,0x8,0x21,0x96,0xbe,0xfc,0xe5,0xdf,0x7d,0x42,0x8f,0xe5,0xf,0xbc,0x7a,0x7c,
- 0x9e,0xb,0x17,0x6b,0xc0,0x99,0x2d,0xd4,0xcc,0xa5,0x2,0xfa,0xa,0xe0,0xc0,0x65,
- 0x95,0x82,0x94,0x82,0xe9,0x55,0x9f,0xb9,0x81,0x5e,0x76,0x8e,0xe,0x30,0xba,0x73,
- 0x27,0xa9,0xf4,0xf5,0x33,0xdd,0x4b,0x82,0x46,0xb3,0xf3,0xcb,0x7c,0xfd,0xef,0x9e,
- 0xe0,0x7,0x4f,0xbd,0xcc,0xce,0xa1,0x2e,0x7e,0xeb,0x53,0x77,0xd2,0xd7,0xdb,0x4d,
- 0xae,0xd0,0xc1,0xea,0xdc,0x3a,0xc5,0xbe,0x6e,0x7c,0x25,0x98,0x9e,0x5e,0xe7,0xcc,
- 0xb9,0x59,0x42,0x3d,0xc1,0xee,0xdb,0xef,0x62,0x74,0xf7,0xae,0xab,0xa0,0x55,0xd9,
- 0x5c,0xe,0x27,0xd3,0x4d,0xa5,0x56,0x66,0xb4,0xd3,0xa4,0x58,0x4c,0x6d,0x61,0x9,
- 0xa2,0xce,0xa1,0x8f,0xe7,0xba,0xac,0x96,0x5d,0xe6,0x26,0x6c,0x76,0x85,0x31,0x6c,
- 0xe5,0x91,0x10,0x6,0x97,0x54,0x3,0x2c,0xa1,0xd1,0x25,0x92,0xe4,0x44,0x8c,0xb2,
- 0x72,0x28,0x85,0xe,0x8b,0x41,0x9d,0xd,0x61,0x93,0x97,0x31,0x72,0xc2,0xdc,0x3a,
- 0x1a,0xae,0x15,0xc,0xa6,0xd4,0xd0,0x66,0x96,0x79,0xeb,0xbf,0x7c,0x83,0xbe,0x87,
- 0x1e,0xe0,0xd6,0xbb,0xee,0xc1,0x32,0x34,0x36,0x37,0x96,0x18,0xe9,0x1d,0xe1,0xed,
- 0xb7,0x8e,0x30,0x3c,0x3c,0x44,0x67,0x57,0x27,0xfb,0x6f,0xd9,0xcf,0xd1,0xf7,0x8e,
- 0xd2,0xbf,0xf3,0x36,0x26,0xed,0x26,0x6c,0xbc,0x44,0xaf,0xda,0x60,0xf6,0xf5,0x57,
- 0x79,0xe9,0x6f,0xdf,0x60,0xa5,0x1a,0x10,0x78,0x2d,0xc1,0x69,0x3f,0x68,0xc9,0xe7,
- 0x5e,0x9f,0x83,0xf1,0x81,0x27,0x63,0x24,0xee,0x19,0xd3,0x21,0xd7,0xdb,0x4d,0x33,
- 0x30,0x40,0x84,0x4f,0x2f,0x2c,0x5c,0x9c,0xfb,0xad,0x2f,0xfd,0x16,0xcf,0x3e,0x57,
- 0xba,0x72,0xe2,0x3f,0x32,0xf2,0x0,0xf,0x3d,0x34,0x4a,0xa9,0x54,0x3f,0x10,0x2a,
- 0xf5,0xa3,0xd9,0x73,0x13,0xdd,0x45,0xbf,0x84,0xa9,0x6b,0x97,0x2d,0x32,0x5b,0xb3,
- 0x72,0x21,0xa3,0xa0,0x10,0x97,0x77,0x9a,0x84,0x60,0xb5,0xea,0xb1,0x7b,0xe7,0x1e,
- 0xfe,0xe9,0x17,0x1e,0x66,0x64,0xe7,0xce,0xd6,0x7c,0x59,0x5d,0xcd,0x9,0x94,0x91,
- 0xf6,0xde,0xd3,0xaf,0x1c,0xe6,0x1b,0x7f,0xf7,0x4,0x93,0x17,0xe7,0xb8,0x77,0xff,
- 0x76,0xfe,0xc9,0xc7,0x6f,0xa3,0xbf,0xbf,0x87,0xc1,0xd1,0x31,0x5e,0x7c,0xe6,0x55,
- 0x54,0x60,0x53,0x18,0xdd,0xc3,0xe2,0x4a,0x5,0x23,0x9e,0x62,0xef,0xc1,0x3b,0xd8,
- 0x76,0xd3,0x4e,0xcc,0x9f,0x5a,0xf8,0xd5,0x95,0x55,0x9e,0x7a,0xfa,0x39,0x7e,0xf8,
- 0xe4,0x4b,0x9c,0xba,0xb8,0x41,0x67,0x2a,0xe0,0xdf,0xfc,0x37,0xfd,0x74,0xe4,0x35,
- 0x4a,0x1b,0x25,0x5c,0x2f,0xc0,0xf5,0x3c,0x6a,0x8d,0x75,0x3c,0xdf,0xe3,0xf1,0xe7,
- 0x96,0x69,0x1c,0x71,0x48,0xb,0x49,0x53,0xf9,0xe4,0xa4,0x75,0x5d,0x46,0x93,0x8f,
- 0xa2,0x1e,0x7a,0xd4,0x94,0x8b,0x43,0x80,0xab,0x42,0xc,0x21,0x49,0xb,0x93,0xb4,
- 0x30,0xb1,0x84,0x44,0x72,0x15,0x9a,0x82,0x40,0x85,0x4c,0xa8,0x1a,0x8d,0xee,0x22,
- 0xbe,0x82,0xdb,0xf6,0x6e,0xe7,0xf6,0x7,0x3e,0x85,0x34,0xe2,0x8c,0x8e,0x8f,0x70,
- 0xc7,0x1d,0x7,0x71,0x5d,0x97,0x23,0x87,0xdf,0x61,0x75,0x65,0x95,0x20,0x84,0xb7,
- 0x9f,0xff,0x7b,0xb2,0xab,0x47,0xe8,0x49,0x9,0x5e,0x3d,0xdf,0xa0,0xd4,0xc,0x5b,
- 0xcf,0xf7,0x3,0x5b,0x9a,0xcb,0x17,0xee,0xc3,0x9a,0x68,0x42,0x4a,0xb4,0xee,0x71,
- 0x82,0x58,0x7e,0x4d,0xc0,0xe7,0x35,0x4d,0x7f,0x3d,0x95,0x8a,0xf3,0x17,0x7f,0xf1,
- 0x17,0x57,0x3a,0x86,0x6c,0x6c,0xdc,0x8a,0xa6,0x4f,0xe2,0xfa,0xd6,0xfb,0xa6,0xa1,
- 0x3f,0x9f,0x6c,0xeb,0xfc,0x72,0x69,0x6e,0x83,0xbc,0x64,0x6b,0x86,0x7d,0x89,0x28,
- 0x22,0x44,0xe4,0x60,0xad,0x5a,0xa3,0x53,0x37,0x88,0xa4,0xdd,0x94,0x34,0xf0,0x7c,
- 0x38,0x7e,0xf6,0x2,0xef,0x9e,0x3c,0x47,0xba,0xbd,0x9d,0x7c,0x3e,0xbf,0xe5,0x9a,
- 0x79,0xe9,0xff,0x94,0x2a,0x35,0xe,0xbd,0x73,0x82,0xbf,0xfd,0xf1,0x73,0xbc,0x7d,
- 0xf4,0x14,0x4a,0x29,0x1e,0xbe,0x6b,0x2f,0x9f,0xbd,0xff,0x56,0x6,0x87,0x87,0xe8,
- 0x1f,0x19,0xe6,0xbd,0x77,0x4e,0xf0,0xca,0xb,0x6f,0x30,0xb6,0x67,0x17,0xa6,0x2d,
- 0xb9,0xf3,0x53,0x9f,0x61,0x70,0x7c,0xec,0x2a,0x28,0x75,0xb3,0xd1,0xe0,0x85,0x17,
- 0x5f,0xe1,0x9b,0x7f,0xf3,0x43,0xde,0x9f,0x5c,0xc1,0x93,0x49,0x84,0x9e,0x65,0xc3,
- 0x75,0x78,0xe3,0xe4,0x1a,0xf5,0xb5,0x45,0x4e,0x9f,0x99,0xc3,0xf5,0x82,0xe8,0x2d,
- 0xa,0x2,0xca,0x4d,0x45,0x76,0xcd,0x60,0x58,0xc6,0x28,0x85,0x36,0x69,0x61,0xde,
- 0x90,0xb2,0xae,0x21,0xc8,0x4a,0x93,0x2c,0x26,0x21,0xe0,0xa8,0x80,0x9a,0x72,0xa9,
- 0x28,0x97,0xf5,0xb0,0x89,0x21,0x24,0x59,0x61,0x91,0x93,0x16,0x6,0x1f,0x1c,0x11,
- 0x9a,0x90,0x8c,0x92,0xe0,0xd4,0xe2,0x32,0x2b,0x84,0xcc,0x17,0x32,0xd4,0xcb,0xeb,
- 0xec,0xdc,0x7f,0x7,0x27,0x8e,0x4f,0xb0,0x6b,0xd7,0x4d,0xa4,0xd3,0x69,0xf6,0xdf,
- 0xba,0x8f,0x93,0xef,0x4f,0xb0,0xba,0xb2,0xc6,0x9e,0xbb,0x3f,0xcd,0x53,0x3f,0xaa,
- 0x71,0xfc,0xc2,0x69,0x64,0x10,0xe2,0x2b,0x9f,0x30,0x8c,0x9e,0xb7,0xe3,0x47,0x7e,
- 0x83,0x9a,0x94,0x98,0x9a,0x16,0x79,0x39,0x88,0xf,0x90,0xbf,0xe1,0x56,0xa7,0x45,
- 0x6c,0x59,0xdd,0x89,0x78,0x92,0x40,0x4b,0x22,0x95,0x7a,0x39,0xc,0xc3,0xf7,0x9a,
- 0x4d,0x9b,0xde,0xde,0xae,0xab,0x31,0x3f,0xbf,0xf1,0x1b,0xbf,0x41,0x36,0xd3,0xc6,
- 0x66,0x79,0x13,0x4d,0xca,0x4f,0x7b,0x41,0xf0,0xed,0x85,0x73,0x27,0x32,0x1d,0x34,
- 0xb6,0x4,0xf,0x2e,0x2d,0xfc,0x55,0xc2,0x4c,0xbe,0x4f,0xd3,0x73,0x31,0x75,0x8d,
- 0x94,0x65,0xd1,0x70,0x3,0xa,0xd9,0x38,0x3,0xfd,0xbd,0xa4,0x72,0x45,0x52,0xc9,
- 0x14,0x86,0x65,0x51,0xb5,0x3d,0x96,0xd6,0x2b,0x9c,0x9e,0x9c,0xe6,0xf4,0xe4,0x45,
- 0xea,0x4d,0x87,0x6c,0x2a,0xce,0xa3,0xf7,0xee,0xe7,0xd1,0x7,0x6e,0x8f,0x74,0xf2,
- 0xa5,0xc1,0xc5,0x99,0x25,0xce,0x9c,0x5f,0x66,0xdb,0xde,0x5b,0xb8,0xe5,0xbe,0xfb,
- 0xe8,0xe8,0xe9,0xb9,0xa2,0xf7,0x7f,0xa9,0x6f,0x7e,0xe6,0xf4,0x19,0xfe,0xbf,0x6f,
- 0x7c,0x87,0xe7,0x5e,0x3f,0x41,0xdd,0x37,0x91,0xba,0x75,0xd9,0x20,0x3c,0x20,0x53,
- 0x3d,0x4e,0xda,0x99,0xff,0xa0,0xf5,0x2a,0xc0,0xd,0x40,0x94,0x75,0xf6,0xa9,0x14,
- 0x9e,0xa,0xf0,0x9,0x6f,0x18,0x0,0x37,0xe2,0x3a,0x86,0x80,0xad,0x7c,0x4a,0xad,
- 0x63,0x42,0x43,0xd2,0xa9,0x25,0xc8,0x8,0x73,0xeb,0x78,0x10,0xc0,0x7a,0x68,0x73,
- 0xc6,0xaf,0x20,0x8a,0xed,0x3c,0xf6,0xc5,0x5f,0xe7,0xae,0x87,0x1e,0x65,0xfa,0xc2,
- 0xc,0x3,0xc3,0x3,0xdc,0x73,0xcf,0x5d,0x11,0x6a,0xc9,0xb6,0x39,0x73,0xea,0x1c,
- 0x8b,0xf3,0x8b,0xac,0xac,0xae,0xf2,0xd2,0xcb,0x2f,0x11,0xf7,0x36,0xa8,0x2c,0x9c,
- 0xa3,0x52,0x2a,0x63,0x6a,0x92,0xba,0xe3,0xe1,0x7,0x21,0x9,0x33,0x52,0x4b,0xf9,
- 0xe9,0x40,0xbd,0xfc,0xa8,0x95,0x42,0xe0,0x4,0x1,0xb2,0x38,0x44,0xac,0xbd,0xb7,
- 0x2e,0x84,0xfa,0xa7,0xb9,0x5c,0xdb,0xf7,0x36,0xd6,0x37,0x38,0x71,0xe2,0x28,0xa7,
- 0x4f,0x9f,0xde,0x12,0xc6,0x6,0x60,0x62,0x62,0x2,0x4d,0x17,0x14,0x8b,0x9d,0xd8,
- 0x76,0x73,0xd9,0xd0,0x8d,0x3,0x6e,0xc8,0xb8,0x5f,0xdb,0x24,0x69,0xea,0x51,0x92,
- 0x71,0x1d,0xfa,0x86,0x2e,0x65,0xcb,0x37,0x37,0x52,0xff,0x4c,0x9a,0x1a,0x8f,0xed,
- 0xb5,0xd8,0x9e,0xa9,0xb3,0x3e,0x37,0x4b,0xbc,0x39,0x47,0x79,0xe9,0x3c,0xdf,0x7c,
- 0xf6,0x38,0x87,0x8e,0x9d,0x65,0x79,0x6d,0x83,0x50,0x29,0x86,0xba,0xb,0x7c,0xe1,
- 0x81,0x5b,0xb9,0x6d,0xf7,0x76,0x9a,0x9e,0xce,0xd2,0xa6,0x83,0x63,0xe4,0x18,0xdc,
- 0x7f,0x17,0xf,0x3c,0xf6,0x5,0x6e,0xba,0xf5,0x56,0x52,0xd9,0xec,0x55,0x3a,0x4,
- 0xe5,0x72,0x99,0xef,0x7c,0xf7,0x7,0xfc,0x9b,0x3f,0xfb,0x2b,0xe,0x9f,0x5a,0xc6,
- 0x97,0x89,0xab,0x6d,0x68,0x85,0x44,0x5,0x2e,0xa6,0xb7,0x89,0xeb,0x47,0x58,0x46,
- 0xdb,0xd,0x71,0x1a,0x92,0x9d,0x61,0x92,0xa4,0xd0,0xa8,0x29,0x8f,0x94,0x34,0x91,
- 0xfc,0x7c,0xd3,0x4a,0x41,0x34,0x67,0x48,0xb,0x93,0x8c,0xb0,0x8,0x8,0x59,0x9,
- 0x1b,0xd4,0x95,0x8f,0x2e,0x24,0x66,0xcb,0x65,0xd5,0x12,0x1a,0x1e,0x3e,0xf5,0x46,
- 0x9d,0x99,0xd5,0xd,0x46,0x77,0xec,0x60,0x6c,0x7c,0x3b,0x47,0x8f,0x1e,0x63,0x6c,
- 0x7c,0x8c,0x58,0xcc,0x42,0xd7,0x75,0xa,0x85,0x76,0x42,0x15,0x12,0xf8,0x1,0xc5,
- 0x62,0x7,0x8e,0x88,0xd1,0xb5,0x6d,0x2f,0x76,0xa8,0x51,0xa9,0x54,0x70,0xed,0x26,
- 0x86,0xa6,0x45,0xa,0x26,0xd7,0xb8,0x97,0x4b,0x3b,0xb4,0xd6,0x3a,0xa7,0x3d,0x2d,
- 0x8e,0x51,0xe8,0x47,0xd3,0xb4,0x57,0x7c,0x2f,0xf8,0xb7,0xa6,0x61,0x36,0x5f,0x7b,
- 0xed,0x25,0xa6,0xa6,0xa6,0x3e,0xa8,0xbc,0x7e,0xda,0xa5,0xa3,0xd8,0x1e,0xa7,0xb3,
- 0x6b,0xd0,0xa9,0xd7,0x6b,0x8e,0x61,0x5a,0x9f,0x59,0x2f,0x95,0x4c,0xc3,0xaf,0x23,
- 0x5b,0xe7,0xf6,0x8d,0xae,0x40,0x85,0x98,0x9a,0x4e,0xda,0x92,0xdc,0x31,0x6c,0x91,
- 0x8e,0x69,0x4,0x1e,0x8,0x2b,0xe,0x23,0xf7,0xa2,0xe7,0x87,0xb8,0x30,0x35,0x19,
- 0x79,0xe4,0xb4,0x65,0xb9,0x6f,0xef,0xe,0x12,0xa9,0x22,0x66,0xe7,0x36,0xc6,0xef,
- 0x7c,0x80,0x3,0x9f,0x7c,0x98,0x1d,0xb7,0x1e,0xa0,0xd0,0xd5,0x85,0x71,0x8d,0xce,
- 0xa0,0xe7,0x7a,0xbc,0xf5,0xd6,0xdb,0xfc,0xdb,0x3f,0xfd,0x1a,0xdf,0x7e,0xfc,0x10,
- 0x1b,0x4d,0x3,0xa9,0x19,0xd7,0x59,0x3e,0x41,0x28,0x34,0x4c,0x7f,0x93,0x94,0x74,
- 0xb0,0xc,0x49,0xa0,0x4,0x5d,0x76,0x8c,0x7e,0x61,0xd1,0x54,0x91,0x16,0x90,0x25,
- 0x7e,0x7e,0x49,0xba,0x2b,0x4a,0x58,0x21,0x48,0x4b,0x93,0xa4,0x30,0xa8,0x28,0x97,
- 0x95,0xa0,0x81,0x12,0x82,0x64,0xab,0xab,0x68,0x8,0x8d,0x46,0xe8,0x50,0x59,0x5b,
- 0xa1,0xe4,0x3a,0x7c,0xfc,0x53,0xf,0x33,0x3f,0x37,0x8f,0xeb,0xb9,0xc,0xd,0xd,
- 0x46,0x6f,0xad,0x26,0x69,0x6b,0x6b,0xc3,0x8a,0x59,0x84,0x41,0x80,0xa1,0xeb,0x54,
- 0x6b,0x75,0xf6,0xec,0xbf,0x8d,0x9e,0x91,0x9b,0x68,0x84,0x1a,0xf5,0x5a,0x1d,0xe5,
- 0xb9,0x48,0xa1,0xae,0x73,0xfe,0x2b,0x9c,0x20,0x52,0x1f,0x15,0xb9,0x6e,0x8c,0x54,
- 0xce,0x46,0xa9,0x7f,0x99,0xc9,0x64,0xf,0x77,0x14,0x8b,0xbc,0xfb,0xde,0x3b,0xd4,
- 0x6a,0xb5,0x6b,0x7,0x40,0xad,0x56,0x23,0x16,0x4f,0x53,0x2c,0x76,0xd2,0x6c,0x36,
- 0xe6,0x75,0x5d,0xbb,0xd5,0x57,0xda,0xf8,0xb6,0x41,0x83,0x3d,0x23,0x31,0xd6,0x36,
- 0xbc,0x2d,0x44,0xef,0xb5,0x42,0x30,0x8,0x43,0x4c,0x5d,0x23,0x6e,0x4a,0xf6,0xf6,
- 0x9a,0x18,0x12,0x4e,0x95,0x12,0xa8,0x9b,0x7f,0x93,0xb1,0x83,0xf,0x73,0xe6,0xd4,
- 0x29,0x66,0xa7,0xa7,0xd9,0xb7,0x67,0x2f,0xf,0x3c,0xf0,0x49,0xf6,0x3d,0xf0,0x29,
- 0xee,0x7b,0xec,0xd7,0xb9,0xfb,0xc1,0x4f,0xd2,0x3b,0x38,0x80,0x15,0x8b,0x5d,0xf3,
- 0x4b,0x29,0xa5,0x98,0x9b,0x9d,0xe3,0x2f,0xff,0xf2,0x5b,0xfc,0xbb,0xaf,0x7d,0x87,
- 0x89,0xd9,0x3a,0x4a,0x4b,0xdc,0x20,0x1,0x6a,0x65,0xaa,0xd2,0x20,0xf4,0x1d,0x84,
- 0xb3,0x89,0xeb,0x7,0x48,0x5b,0x67,0x7b,0x98,0x8c,0x8,0xaf,0xf8,0x24,0x85,0x71,
- 0xdd,0x5d,0xed,0xe7,0xbd,0x4c,0xa1,0x91,0x95,0x16,0x4a,0x28,0x56,0x82,0x8,0xa1,
- 0x98,0x92,0x26,0x96,0xd0,0x8,0x51,0x38,0x22,0x60,0x65,0x61,0x81,0x74,0x67,0x27,
- 0x43,0xc3,0xa3,0x9c,0x3a,0x7d,0x9a,0xb1,0xb1,0xd1,0xc8,0x68,0x12,0x10,0x52,0x90,
- 0xcd,0x65,0xc8,0xb7,0xe7,0x31,0x8d,0x48,0x82,0x67,0x72,0x72,0x92,0x42,0xa1,0xc0,
- 0x81,0xdb,0xef,0xa4,0x7b,0x68,0x9c,0x86,0x32,0xa8,0x54,0xaa,0x8,0xaf,0x79,0xc5,
- 0x60,0xd1,0x30,0x4,0x37,0xef,0x4e,0xf3,0xf1,0xcf,0x1c,0x24,0x5d,0x68,0x67,0xb1,
- 0x16,0x3,0xa9,0xbd,0xec,0xfb,0xc1,0xff,0x2b,0xa5,0x6c,0xbe,0xf9,0xe6,0x6b,0x57,
- 0xbc,0xfd,0x57,0x5,0x0,0xc0,0xf2,0xf2,0x32,0xc7,0x8e,0xbd,0xc7,0xf6,0xed,0x3b,
- 0x1d,0xa0,0xaa,0xeb,0xe6,0x67,0x82,0xa0,0x11,0xdb,0x3f,0xaa,0x33,0x79,0xb1,0x11,
- 0x99,0x29,0x8b,0x6b,0x27,0x4b,0x5e,0xe0,0x63,0x68,0x3a,0xb9,0x84,0xc6,0xad,0x3,
- 0x26,0x15,0x47,0x60,0xdf,0xf4,0x1b,0xec,0xbd,0xeb,0x41,0xe6,0x2f,0x5e,0xa0,0xb2,
- 0x59,0xe2,0x81,0x87,0x1e,0xe6,0xa1,0x47,0x7f,0x8d,0x7b,0x1e,0xfc,0x4,0xb7,0xdc,
- 0x71,0x80,0xce,0xae,0xe,0xb4,0x1b,0xd0,0xcc,0x1b,0x8d,0x6,0xaf,0xbd,0xf2,0x6,
- 0xff,0xee,0x3f,0x7e,0x9d,0x9f,0xbc,0x3a,0x41,0x3d,0x4c,0x5c,0x57,0x43,0xf0,0x12,
- 0x92,0xd5,0x77,0xea,0x34,0xcb,0x2b,0x34,0x36,0x97,0x68,0x34,0xea,0x54,0xeb,0x55,
- 0x9a,0xb6,0xc7,0x78,0x98,0xa2,0x28,0x74,0x42,0x14,0xba,0x90,0x68,0x48,0xfe,0x21,
- 0x2e,0x89,0x20,0x2d,0x4c,0xc,0xa1,0xb1,0xa6,0x9a,0x4,0x28,0x52,0xc2,0x24,0x2e,
- 0x75,0xea,0xca,0xc3,0xf7,0x1d,0x26,0x4e,0x4e,0xd0,0xbd,0x6d,0x94,0x44,0x22,0x49,
- 0xb5,0x5a,0x65,0x74,0x6c,0xdb,0x15,0x9f,0x11,0x8b,0x59,0x14,0x3b,0xa,0x14,0x8b,
- 0x5,0x12,0xf1,0x4,0x13,0xa7,0x4e,0xb3,0xba,0xba,0xc2,0xe0,0xc0,0x0,0xbb,0xf7,
- 0xee,0xa3,0xbd,0x77,0x88,0x99,0x8b,0x53,0x28,0xbb,0xd6,0xea,0xae,0x46,0xce,0xbe,
- 0x77,0xdf,0xde,0x46,0x7b,0x46,0x70,0x7c,0x56,0x63,0xbd,0x26,0x6b,0x2,0xfe,0x28,
- 0x9b,0xcd,0xbe,0xf3,0xad,0x6f,0x7d,0x83,0xe5,0xe5,0xe5,0xab,0x77,0xae,0x6b,0x7d,
- 0x81,0x2f,0x7d,0xe9,0x4b,0xd4,0xeb,0x36,0x61,0xa8,0x66,0x75,0x5d,0x1b,0x2f,0x37,
- 0xb8,0x79,0x61,0x76,0x19,0xb7,0xe9,0x61,0x68,0x72,0xab,0xf4,0xbb,0xbc,0xba,0xbb,
- 0x54,0x11,0x18,0x9a,0x46,0x36,0xae,0xb1,0xaf,0xcf,0xa4,0xe2,0xe9,0x9c,0x5a,0xcb,
- 0x70,0xf6,0xb9,0x57,0x70,0x36,0x6b,0xec,0xbe,0xeb,0xe,0x6e,0xda,0xb3,0x8b,0xdd,
- 0x37,0xef,0xa2,0xa7,0xaf,0x27,0x42,0x12,0x5f,0x8f,0x3,0x10,0x84,0xcc,0xcd,0xce,
- 0xf1,0xd7,0x7f,0xfd,0x5d,0xfe,0xfc,0x9b,0x3f,0xe4,0xf4,0x7c,0x3,0xa5,0xc5,0x6f,
- 0x58,0xf6,0xf8,0x4e,0x83,0xea,0xda,0x2c,0xd5,0x95,0x8b,0x34,0x2b,0x6b,0x78,0x76,
- 0xd,0xcf,0xf5,0x90,0x4,0x74,0xa,0xc9,0x4e,0x91,0xa4,0x65,0xe1,0xf8,0x73,0x9f,
- 0xfb,0x3f,0xcb,0x95,0x14,0x3a,0x9,0x61,0xb0,0x1c,0x36,0x8,0x8,0xc9,0x8,0xb,
- 0x53,0x68,0x54,0x95,0x87,0x5b,0xaf,0x31,0xb3,0xb4,0xc4,0xfe,0xdb,0xef,0x60,0x71,
- 0x69,0x99,0x9e,0xde,0x2e,0x32,0xad,0x66,0xd6,0xe5,0x13,0xc1,0x54,0x3a,0x45,0x4f,
- 0x6f,0xf,0xbd,0x3d,0x3d,0x6c,0xac,0xaf,0x73,0x72,0x62,0x2,0xdb,0xb1,0xe9,0xeb,
- 0xed,0x65,0x79,0x6d,0x8d,0xea,0xd2,0x45,0xc,0x5d,0xa0,0x69,0xe0,0xfa,0x1,0x8e,
- 0x1d,0x70,0x66,0x3e,0x64,0x72,0x3d,0x6,0x88,0x1f,0x5,0x81,0xfa,0xe3,0x66,0xd3,
- 0x76,0x77,0xec,0x18,0xe7,0xcc,0x99,0x33,0x1f,0x2d,0x0,0xbe,0xf0,0x85,0x2f,0xf0,
- 0xad,0x6f,0x7d,0x9b,0xb1,0xb1,0x11,0x5f,0x29,0xb5,0xa0,0xeb,0xc6,0xa7,0xe6,0x57,
- 0x1b,0xd9,0x14,0x36,0x9,0x53,0xb6,0xda,0xbc,0x51,0x10,0x5c,0x22,0x1f,0xa8,0x16,
- 0x7,0xde,0xd0,0x75,0xb2,0x71,0x8d,0x9b,0xfb,0x4c,0x96,0xaa,0x8a,0x43,0xcf,0x9e,
- 0xa3,0x78,0xae,0x41,0x71,0xda,0xc4,0x69,0x53,0x7c,0xfc,0x8b,0x9f,0x25,0x93,0xc9,
- 0xdc,0x70,0x21,0xab,0x95,0x2a,0xef,0xbc,0xfd,0x2e,0x7f,0xfe,0x9f,0xbf,0xc5,0xf,
- 0x5e,0x38,0x46,0xd9,0x35,0x11,0x52,0xbf,0x6e,0xf7,0x23,0xc,0x3c,0xea,0x1b,0x8b,
- 0x54,0x96,0xa7,0x70,0x1b,0x65,0xa4,0x61,0x12,0x4b,0xb7,0x93,0xc8,0x76,0x60,0x25,
- 0x73,0x8,0xcd,0xa4,0xcb,0xb3,0xe9,0xc7,0xe0,0x57,0x7d,0x59,0x42,0xc3,0x14,0x1a,
- 0x4b,0x61,0xa4,0x9f,0xd0,0x26,0x63,0x78,0x84,0xd8,0xf8,0x94,0x36,0xd6,0xa9,0x85,
- 0x8a,0x9d,0xbb,0xf6,0x30,0x3f,0x3f,0xcf,0xf6,0x1d,0xe3,0x5b,0xbb,0x61,0x24,0xf9,
- 0x1e,0x9d,0xf3,0xba,0xae,0xd1,0x5e,0x68,0x63,0x68,0x78,0x90,0x4c,0x3a,0xcb,0xea,
- 0xea,0x1a,0xd3,0x33,0x33,0x4c,0x4d,0x4d,0x21,0x9a,0xab,0x58,0x91,0x69,0x7b,0xc4,
- 0xd7,0xd8,0xc,0x59,0xe,0x3b,0x90,0xfe,0x64,0x7e,0x39,0x0,0x0,0x11,0xf2,0x49,
- 0x44,0x41,0x54,0x7a,0x6c,0x9,0xd4,0xbf,0x88,0xc5,0xac,0x73,0x2f,0xbf,0xf2,0x3a,
- 0xe3,0x63,0x23,0x4c,0x4c,0x4c,0x7c,0xb4,0x0,0x78,0xf9,0xe5,0x97,0xf9,0xf5,0x5f,
- 0xff,0x1c,0xd5,0x6a,0x1d,0x8,0x16,0xa5,0xd4,0x52,0x9a,0x61,0xdd,0x5f,0x2a,0x97,
- 0x45,0xd6,0x88,0x44,0x19,0x23,0xe5,0x8f,0x2d,0x33,0x2f,0x14,0xe0,0x6,0x57,0x6,
- 0xc0,0xf9,0x19,0x9b,0xcd,0x73,0x1,0xdb,0xe3,0x3b,0xe8,0x90,0x45,0xea,0x41,0x8d,
- 0xd1,0x4f,0x1f,0xbc,0x2e,0x4c,0xcc,0xf7,0x7d,0xe6,0x66,0xe6,0x78,0xe6,0xe9,0x17,
- 0xf8,0xda,0x37,0x7f,0xc8,0x91,0xb3,0xeb,0xf8,0x32,0x76,0xc3,0x60,0x71,0x6a,0x9b,
- 0x94,0x97,0x26,0x71,0x6a,0x9b,0x58,0xc9,0x1c,0xe9,0xe2,0x0,0xa9,0xc2,0x0,0x89,
- 0x6c,0x7,0x66,0x32,0x8b,0x99,0xcc,0x62,0xa5,0xa,0x34,0x43,0x8f,0x74,0xb3,0x4c,
- 0xfa,0x97,0x94,0xf4,0xfd,0xcc,0x41,0x80,0xc6,0x62,0xd8,0x40,0x47,0x92,0x93,0x16,
- 0x15,0x15,0xb1,0x77,0xe7,0xe6,0x67,0xe9,0x1a,0x18,0x44,0x37,0x63,0x20,0xa0,0xb7,
- 0xb7,0x77,0xeb,0x59,0xac,0xaf,0x6d,0x60,0x59,0x66,0xcb,0xbe,0x4f,0x10,0x4f,0xc4,
- 0xe9,0xee,0xed,0xa2,0xab,0xab,0x8b,0x74,0x2a,0x8d,0x61,0xc5,0x58,0x9c,0x99,0x42,
- 0xb,0x1a,0xad,0x5e,0xad,0xc0,0x89,0x15,0x50,0xb1,0x9c,0x12,0x82,0xff,0x14,0x4,
- 0xc1,0x5f,0x25,0x93,0xc9,0x70,0x61,0xe1,0x22,0x87,0xe,0x1d,0xbe,0x76,0xf2,0x7a,
- 0xbd,0x9b,0x3e,0x71,0x62,0x82,0x47,0x1f,0x7d,0x94,0xa5,0xa5,0x35,0x25,0x84,0x38,
- 0xa7,0x1b,0xc6,0x41,0x47,0xc9,0x41,0xaf,0x5e,0x26,0x6d,0xca,0x2b,0xda,0x8f,0x61,
- 0x18,0xc9,0xae,0x7b,0x81,0x8f,0xae,0x69,0xe4,0xe2,0x1a,0xe3,0x1d,0x6,0xef,0xbc,
- 0xd7,0x20,0x55,0x6f,0x63,0x38,0xb6,0xd,0x5d,0xea,0x38,0x8d,0x6,0xf9,0xfb,0xc6,
- 0x28,0xf4,0xf6,0x5c,0xf5,0xf3,0xea,0xb5,0x3a,0xa7,0x4e,0x9e,0xe6,0xc7,0x3f,0x7e,
- 0x8a,0xbf,0xfe,0xf1,0xab,0x4c,0x6f,0x4,0x88,0x1b,0x64,0xf8,0x2a,0xc,0xa8,0xad,
- 0xcd,0x52,0xdb,0x98,0xc3,0x8c,0x67,0xc8,0x74,0xe,0x93,0xcc,0x77,0xa3,0xc7,0x52,
- 0xd7,0x2c,0x9,0xc3,0x58,0x86,0xb2,0xbd,0x49,0xd1,0x73,0xb0,0x84,0xfc,0x95,0x7,
- 0x41,0x4c,0xe8,0x48,0x4,0x4b,0x61,0x83,0x94,0x34,0xb0,0x84,0x4e,0x9,0xf,0x3c,
- 0x8f,0x85,0x85,0x5,0x76,0xdf,0x7a,0x80,0xf9,0x85,0x45,0x6,0x6,0xfa,0x23,0xf7,
- 0x70,0x4d,0xa3,0x51,0xab,0x33,0x37,0x3b,0x4f,0x3a,0x9d,0x46,0x6f,0x95,0x7e,0x9a,
- 0xa6,0x91,0x6f,0xcb,0xd1,0xdd,0xd3,0x45,0x47,0x67,0x17,0xc7,0x8e,0x1c,0xc2,0x2e,
- 0x2d,0x45,0x8c,0x1f,0x91,0xc0,0x49,0x74,0x22,0xa4,0xf6,0xb6,0x52,0xfc,0x6f,0x4a,
- 0xa9,0xcd,0x78,0xdc,0xe4,0x8d,0x37,0xde,0xbc,0x7e,0xf5,0x72,0xa3,0x9b,0x3e,0x7c,
- 0xf8,0x30,0xe7,0xcf,0x4f,0x31,0x30,0x30,0x54,0x95,0x52,0xac,0x18,0xa6,0xf5,0x50,
- 0xa9,0xe1,0x24,0x62,0xa1,0x8d,0xa5,0xcb,0xad,0x0,0x50,0x2a,0xc2,0xa9,0xbb,0x81,
- 0x8f,0x2e,0x25,0xed,0x29,0x83,0x36,0xb,0x4e,0xbf,0x1f,0x30,0x62,0x8c,0xd2,0xa6,
- 0x17,0x88,0x8c,0x1f,0x7c,0xd8,0x9e,0x65,0x78,0xff,0xee,0x2b,0x92,0x87,0xf5,0xf5,
- 0xd,0xde,0x7b,0xe7,0x28,0x3f,0xf8,0xd1,0x53,0xfc,0xf0,0xa5,0xf7,0x29,0x39,0xc6,
- 0xf5,0x4b,0x4e,0x21,0x8,0xbc,0x26,0x95,0xe5,0xb,0x4,0x6e,0x33,0x5a,0xf8,0xb6,
- 0x6e,0x34,0x23,0xc6,0x8d,0x8e,0x75,0x21,0x75,0x1c,0x2b,0x45,0xb3,0xb1,0x4a,0x47,
- 0x4b,0x1,0xe5,0x57,0x7d,0x25,0x84,0x41,0x80,0x62,0x35,0x6c,0x52,0x94,0x71,0x4a,
- 0x4,0x34,0x85,0x22,0x2c,0x97,0xa9,0x6,0x1,0xe3,0x3b,0x77,0x33,0x3d,0x33,0xc3,
- 0x8e,0x9d,0xdb,0xd1,0x34,0x8d,0x78,0x22,0x4e,0xb9,0x54,0x61,0xe6,0xe2,0xc,0xa9,
- 0x54,0x92,0xd8,0x65,0xed,0x6f,0xc3,0x30,0x30,0x2c,0x93,0x57,0x9f,0x79,0x9c,0xc6,
- 0xfa,0x3c,0x81,0xd0,0xa9,0xc5,0x3a,0x51,0x7a,0xbc,0x4,0xea,0x7f,0x15,0x42,0x1c,
- 0x7a,0xf2,0xc9,0x9f,0x70,0xe2,0xc4,0x89,0xf,0x49,0x58,0x3f,0xe4,0xea,0xef,0xef,
- 0x26,0x9f,0xcf,0xe3,0xfb,0xde,0xd3,0x2,0xbe,0x96,0xcc,0x77,0x6,0x8b,0xb6,0x8e,
- 0x77,0x19,0xf3,0xf0,0xf2,0x67,0xa9,0x5a,0xa5,0xcc,0xec,0xa2,0x4f,0xcc,0x4b,0x52,
- 0xd0,0x8b,0x5b,0x6f,0xad,0xe3,0xd5,0x99,0x39,0x35,0x41,0x10,0x6,0x5b,0x7d,0x87,
- 0x99,0xe9,0x19,0x5e,0x79,0xf1,0x15,0xfe,0xfa,0x3b,0x3f,0xe6,0xf1,0x37,0xce,0x52,
- 0xf,0x3e,0x7c,0xcb,0x2f,0x2d,0x4e,0xa2,0x99,0x31,0x72,0xbd,0x3b,0x30,0x93,0xb9,
- 0xf,0x78,0x6c,0x37,0x66,0x21,0x22,0x63,0x59,0x96,0x8b,0xdb,0x38,0x23,0x83,0xcb,
- 0x48,0x14,0xbf,0xda,0xab,0x53,0x26,0x88,0xb,0x9d,0xe9,0xa0,0x46,0x5,0x85,0x8b,
- 0x20,0x26,0x5,0x93,0x87,0xdf,0x60,0x66,0xea,0x1c,0x95,0x52,0x85,0x57,0x5e,0x79,
- 0x6d,0x2b,0x9,0x1c,0x19,0x1d,0x26,0x99,0x4a,0xf2,0xde,0x91,0x63,0xcc,0xce,0xcc,
- 0x5d,0x21,0xae,0xbd,0xbe,0xba,0x4a,0x65,0x7d,0x9,0x84,0xa4,0xa6,0xe7,0xf1,0xf5,
- 0x84,0x52,0x2a,0xfc,0x4b,0xdf,0x77,0x1f,0xcf,0xe7,0x73,0xa4,0x52,0xf1,0xf,0xef,
- 0x5f,0x7c,0xd8,0x3f,0xf8,0xd4,0xa7,0x1e,0xe1,0xc2,0x85,0x29,0x52,0x89,0x74,0x18,
- 0x6,0xc1,0x84,0xae,0x69,0x7b,0x3d,0x8c,0xd1,0x46,0xad,0x42,0xb6,0xc5,0x47,0x53,
- 0xa,0xfc,0xe0,0x83,0x1d,0xc0,0xd4,0x24,0xce,0xba,0xa2,0x68,0x77,0xd3,0x6d,0xf6,
- 0x21,0x10,0x34,0xc2,0x3a,0xe7,0x9a,0x27,0xa9,0x27,0x2,0x6e,0x7d,0xf4,0x61,0x34,
- 0x5d,0x67,0xe2,0xe4,0x29,0x9e,0x7b,0xf6,0x59,0xbe,0xf7,0xc4,0x8b,0xbc,0x37,0x55,
- 0x26,0x94,0xb1,0x1b,0x82,0x88,0x9b,0xe5,0x15,0x6a,0x6b,0xb3,0x24,0xdb,0xba,0x49,
- 0xb6,0xf5,0xfc,0x5c,0x4a,0xa5,0xc2,0x4a,0x51,0x12,0xa,0xbd,0xb1,0x41,0x9e,0x5f,
- 0x7d,0x3e,0x20,0x10,0xa4,0x84,0x41,0x9,0x97,0x65,0x15,0x10,0x8,0x48,0x29,0x85,
- 0x16,0x4,0xcc,0x2f,0x2d,0xb1,0xef,0xce,0xbb,0x98,0x9e,0x9e,0x21,0x9b,0xcd,0xd0,
- 0xd1,0x51,0x8c,0xec,0x75,0xf2,0x39,0xaa,0xd5,0x1a,0x17,0x26,0x2f,0xd0,0x68,0x34,
- 0xb0,0xac,0x8,0x45,0xf5,0xc3,0xef,0xfc,0xd,0x67,0xe,0x3d,0x8b,0x2d,0x13,0x34,
- 0xcd,0x76,0x84,0x90,0xaf,0x0,0xff,0x22,0x66,0xc5,0x36,0x7f,0xf8,0xa3,0xef,0x33,
- 0x30,0x30,0xc4,0xfa,0xfa,0xfa,0x2f,0x16,0x0,0x13,0x13,0x13,0x2c,0x2e,0x2e,0x32,
- 0x75,0x7e,0x92,0xb1,0x1d,0x3b,0x6a,0xbe,0xe7,0x4f,0x1a,0x86,0xf9,0xb1,0x9a,0xa7,
- 0xda,0x94,0x53,0x27,0x65,0x4a,0xc2,0x4b,0x1,0xe0,0xfb,0x68,0x9a,0xc4,0xd2,0x24,
- 0xfa,0x86,0xc6,0xb8,0xdc,0x4e,0x52,0x4b,0xd3,0x8,0xeb,0x9c,0x69,0x9e,0x60,0xc1,
- 0x5f,0x65,0x5a,0xb8,0xdc,0xf9,0xc8,0xc3,0x9c,0x3d,0x7b,0x8e,0xc7,0x1f,0x7f,0x82,
- 0xa7,0x5f,0x39,0xca,0xf9,0x35,0x5,0xda,0x8d,0xfb,0xf1,0xcd,0xf2,0x2a,0xf5,0xcd,
- 0x45,0x32,0x1d,0x43,0xc4,0xd2,0x85,0x5f,0xf0,0x40,0xce,0xb2,0x11,0x3a,0xc4,0x9b,
- 0x65,0xb2,0xff,0x8,0x49,0xa1,0x26,0x4,0x9,0xa1,0xe3,0x2a,0x97,0x3a,0xa,0x13,
- 0x30,0x4,0x34,0x2b,0x65,0x6c,0x21,0xd8,0x77,0xe0,0x76,0xde,0x7d,0xef,0x28,0xc3,
- 0x23,0x43,0xa4,0xd3,0x51,0x3e,0x90,0xcb,0xe7,0xa8,0xd7,0xea,0x2c,0xce,0x2f,0xb1,
- 0xba,0xb2,0xc6,0x6b,0xaf,0xbc,0xca,0x73,0xdf,0xf9,0xcf,0xb8,0x9e,0x47,0xc5,0x2c,
- 0x82,0x66,0x4c,0xa3,0xd4,0xff,0x24,0x84,0xf6,0xfe,0x93,0x4f,0x3d,0xce,0x57,0xbe,
- 0xf2,0x15,0xbe,0xf7,0xbd,0xef,0xfd,0xe2,0x3b,0xc0,0x56,0x26,0x9b,0xb2,0xf8,0xed,
- 0xcf,0xff,0x57,0x68,0x4,0x73,0x1b,0xe5,0xcd,0x4d,0xc3,0xb4,0x3e,0x51,0xaa,0xbb,
- 0x31,0x53,0x39,0xc4,0x74,0xf9,0x41,0x0,0x48,0x81,0x29,0x25,0x46,0xd5,0x60,0x40,
- 0xe,0xa0,0xb,0x8d,0x73,0xf6,0x4,0x13,0xee,0x1c,0x47,0xc3,0x6,0xf3,0x6e,0x93,
- 0x44,0x26,0xc3,0xc4,0xa9,0xd3,0x3c,0xff,0xc6,0x49,0x16,0xaa,0x26,0x42,0x1a,0x37,
- 0x22,0xe,0xe0,0xd4,0x4b,0x34,0x36,0x17,0x49,0x77,0xc,0x61,0x26,0x72,0xfc,0xa2,
- 0x34,0x64,0x21,0x4,0x2a,0x9e,0x63,0xdd,0xaf,0x93,0x70,0x6a,0x64,0xfe,0x11,0x82,
- 0xc0,0x14,0x12,0x3,0x68,0x2a,0x97,0x86,0x88,0xc6,0xb2,0x26,0xb0,0xbc,0xb4,0x48,
- 0xcf,0xd8,0x38,0x9d,0x9d,0xdd,0xbc,0xff,0xfe,0x9,0x76,0xec,0x18,0xc7,0xb2,0xa2,
- 0x59,0x41,0x5b,0x5b,0x1e,0xc7,0x76,0x58,0x59,0x5d,0xe3,0xd0,0x9b,0x6f,0xb2,0xb1,
- 0xba,0x40,0x59,0x25,0x50,0x7a,0xac,0xa6,0x94,0xfa,0xc3,0x72,0xad,0xf2,0x83,0x42,
- 0xa1,0xc0,0xe9,0xd3,0xa7,0x78,0xe9,0xa5,0x97,0x3e,0x5a,0x30,0x7e,0xd4,0x1b,0xe,
- 0xdc,0x80,0x81,0xe1,0x5e,0x4e,0x9d,0x39,0x7,0x70,0x5a,0x93,0xd2,0xd0,0xcc,0xd8,
- 0x5d,0x1b,0x35,0x5b,0x4b,0x48,0x1f,0xa1,0x4,0xae,0xef,0xa1,0x84,0xc4,0x2c,0x69,
- 0xe8,0xcd,0x10,0x1b,0xc5,0x5,0x6f,0x86,0xf7,0xbc,0x59,0x56,0x8b,0x69,0x76,0xdd,
- 0x73,0xf,0xb9,0x5c,0x9e,0xa9,0xf3,0x53,0x9c,0x9b,0x2b,0xb1,0x54,0xb7,0x10,0x9a,
- 0x71,0xc3,0xd,0xd3,0x77,0x6a,0x34,0x36,0x16,0x49,0x15,0xfa,0x31,0xe3,0x59,0x7e,
- 0x59,0x1c,0x74,0x21,0x34,0xc2,0x44,0x8e,0x75,0xaf,0x4a,0xc6,0x69,0x90,0xfc,0x47,
- 0x8,0x82,0x98,0xd0,0x71,0x43,0xf,0x57,0x5,0x34,0x84,0xc0,0x4,0x70,0x5d,0x96,
- 0x37,0x36,0x38,0x70,0xf7,0x3d,0xd8,0x4d,0x9b,0xa9,0xf3,0xe7,0x19,0x1f,0x1f,0xc3,
- 0x30,0xc,0x74,0x43,0xa7,0x58,0x2c,0xb0,0xbc,0xbc,0x42,0x18,0x2a,0xd6,0x6a,0xe,
- 0xeb,0xe5,0xaa,0x27,0x85,0xfc,0x6a,0x10,0x86,0x5f,0x95,0x8,0xff,0x13,0x9f,0xb8,
- 0x8f,0xe7,0x9e,0x7b,0xe1,0xa3,0xef,0x46,0x3f,0xcb,0xd,0x1f,0x3b,0x76,0x9c,0xb9,
- 0xf9,0x59,0x46,0xb7,0x8d,0x5,0xbe,0x1f,0xbc,0xa7,0x69,0xb2,0xb,0x3d,0xb6,0x7f,
- 0xb3,0xda,0x10,0x71,0x19,0x10,0x28,0x85,0xf0,0xe2,0x74,0x37,0xc,0xb2,0x32,0xc7,
- 0x4e,0x6b,0x94,0x9,0xfb,0x1c,0xe5,0x6d,0x5d,0xfc,0xee,0xef,0xfd,0x1,0x77,0xde,
- 0x7d,0x2f,0x9b,0x1b,0xeb,0xbc,0xf1,0xce,0x69,0xca,0x2a,0x17,0xb9,0x89,0xdd,0xc0,
- 0x1f,0x28,0xc,0x7c,0xea,0x1b,0xb,0xc4,0xb3,0x9d,0x98,0x89,0x5f,0xde,0xe2,0x5f,
- 0x5e,0x19,0xf8,0x89,0x36,0x4a,0x6e,0x95,0x76,0xb7,0x49,0xec,0x57,0x5c,0x1e,0x4a,
- 0x4,0x9a,0x90,0xd4,0x43,0x27,0xd2,0x30,0x12,0x82,0xb8,0x10,0x94,0x37,0xd6,0x91,
- 0xe9,0xc,0xfb,0x6f,0xbb,0x9d,0x85,0xf9,0x45,0x66,0x66,0xe7,0x18,0x1b,0x1b,0x8d,
- 0x7c,0x1,0x34,0xc9,0xa9,0x53,0xa7,0x79,0xe2,0xc9,0x27,0x98,0x99,0x99,0x41,0xa,
- 0xf1,0xb7,0xa,0xfe,0x50,0x93,0xb2,0xfa,0xea,0xab,0x2f,0xff,0x4c,0x8b,0xff,0x91,
- 0xaa,0x80,0x6b,0x5d,0x2f,0xbc,0xf8,0x1c,0xa8,0xb0,0x1c,0x6,0xc1,0x1f,0x19,0x9a,
- 0xf6,0x13,0x99,0x2a,0x30,0xdf,0x0,0xcf,0x37,0xe9,0x6d,0x18,0x18,0xa1,0xce,0xae,
- 0xf8,0x2e,0x34,0x1,0x1b,0x78,0xec,0xb9,0xf5,0x76,0x7a,0xfb,0xfa,0x71,0x5d,0x87,
- 0xa5,0xcd,0x26,0xe4,0xb6,0xa1,0xa4,0x41,0xe0,0x39,0x57,0x13,0x18,0xf8,0xc0,0x96,
- 0xd5,0xae,0xae,0x63,0x26,0xa2,0x66,0xce,0x3f,0x8c,0xfa,0x84,0x42,0x6a,0x16,0xb5,
- 0xce,0x9d,0xbc,0x9f,0xca,0xd0,0x50,0x1,0xbf,0xca,0xe2,0x50,0x1,0x69,0x61,0x92,
- 0x95,0x16,0xb1,0xd6,0xf7,0xab,0x89,0x48,0xc3,0xf0,0xdd,0x17,0x9f,0x63,0x79,0x71,
- 0x91,0xb1,0xd1,0x51,0x96,0x16,0x96,0xf8,0xde,0x77,0xff,0x1e,0xdb,0xb6,0xa9,0x56,
- 0xab,0xbc,0xfc,0xf2,0x8b,0x5c,0xb8,0x30,0x85,0xa,0xc3,0x67,0xc3,0x30,0xfc,0x3f,
- 0x3,0x3f,0xd8,0xb8,0xef,0xfe,0x7b,0xf9,0xca,0x57,0xbe,0xf2,0xb3,0xe7,0x23,0x3f,
- 0xcf,0x8d,0x7f,0xf9,0xcb,0x5f,0xe6,0xb9,0xe7,0x9e,0xa5,0xbb,0xab,0xbb,0x1a,0xaa,
- 0xf0,0x1d,0x5d,0xd3,0x76,0x7,0xba,0x35,0x1c,0x96,0x1d,0x7a,0x5c,0x8d,0x9b,0xe2,
- 0xbb,0xe8,0x31,0x3a,0xb9,0xe0,0x5e,0xe4,0x5d,0x56,0x39,0xf8,0xe0,0x43,0x74,0x74,
- 0x74,0xf0,0xfa,0x9b,0x6f,0xf1,0xf2,0xb1,0x59,0x42,0x3d,0x1d,0x19,0x41,0x3b,0xd,
- 0x74,0x23,0x16,0xe1,0xcb,0x10,0xa8,0xc0,0xc7,0x77,0x1b,0x78,0xcd,0x2a,0x6e,0xa3,
- 0x2,0x42,0x10,0xcb,0xb4,0xff,0xd2,0x27,0x76,0x57,0xef,0x4,0x6,0x8d,0x78,0x96,
- 0xa6,0xbd,0x49,0xd1,0xf3,0xae,0xcf,0x7,0xf8,0x39,0x31,0x3,0xe2,0x43,0xde,0x40,
- 0x43,0x48,0xca,0xa1,0x8b,0x86,0xc2,0x16,0x12,0xd,0x41,0x50,0xab,0x12,0xc4,0xe2,
- 0xdc,0xf5,0xb1,0xfb,0x29,0x16,0x8b,0x9c,0x3b,0x73,0x8e,0xc9,0xa9,0x29,0x5e,0x79,
- 0xe5,0x65,0x9e,0x7f,0xee,0x79,0x80,0xd7,0x51,0xea,0xf,0x10,0x9c,0x73,0x9b,0x2e,
- 0x8b,0xcb,0x8b,0x7c,0xfd,0xeb,0x5f,0xff,0xd5,0x4,0xc0,0xf1,0xe3,0xc7,0xf1,0x83,
- 0x80,0x9e,0x9e,0x1e,0x34,0x5d,0x5b,0x57,0xa1,0x7a,0x47,0xd3,0xb4,0xbd,0xae,0xa9,
- 0xd,0x28,0xd7,0xe4,0x4e,0x63,0x9c,0x10,0x97,0x77,0x9b,0x13,0x2c,0xe7,0x2d,0x3e,
- 0xf9,0xc8,0xa7,0xb9,0x30,0x33,0xcb,0xf,0x5e,0x78,0x8f,0x86,0x4a,0xb4,0x86,0x49,
- 0x92,0xc0,0xb5,0x51,0xa1,0x4f,0xe0,0xd9,0x34,0x4a,0x4b,0xd8,0xd5,0xd,0x94,0xa,
- 0xd0,0xcd,0x18,0x46,0x3c,0x8d,0x95,0xcc,0x5c,0x93,0x9,0xf4,0xf,0x12,0x4,0xba,
- 0x49,0xd5,0x4c,0xe0,0xd7,0x57,0x28,0x2a,0x7e,0xa1,0xa0,0x53,0xb4,0xd4,0x4a,0x8,
- 0x71,0x9,0xf1,0x8,0x9,0x69,0x99,0x5f,0x5d,0xe3,0x73,0x4d,0xa1,0xd1,0xc4,0xa7,
- 0xa9,0x7c,0x4c,0x22,0x6d,0x41,0x53,0x29,0x56,0xd6,0xd7,0xd8,0x7d,0xfb,0x41,0x6e,
- 0x3b,0x78,0x0,0xd7,0xf5,0xf8,0xfe,0xf,0xbe,0xcf,0x1b,0x6f,0xbc,0x8e,0x42,0xbd,
- 0x25,0xa4,0xf8,0x1f,0xa5,0x26,0x8f,0xfb,0xbe,0xcf,0xe1,0x23,0x87,0xb9,0x78,0xf1,
- 0xe2,0xcf,0x57,0x91,0xfc,0x22,0xf,0x6d,0x7e,0x7e,0x9e,0xf6,0x8e,0x76,0x4c,0xdd,
- 0x5c,0x9,0x55,0x78,0x44,0xd7,0xf4,0x3d,0x65,0x33,0x18,0x58,0x69,0x96,0xb1,0xdc,
- 0x1a,0xc7,0xdc,0x59,0xb2,0x3b,0xc7,0xfe,0xff,0xf2,0xce,0xe5,0x37,0xae,0xbb,0x8a,
- 0xe3,0x9f,0xf3,0xfb,0xdd,0xc7,0x3c,0xec,0xf1,0x2b,0x7e,0xa5,0x36,0x79,0x34,0x69,
- 0x95,0x4,0xda,0x22,0x50,0x55,0x21,0xca,0x73,0x81,0x84,0x4,0x7b,0xb6,0x6c,0x10,
- 0x2a,0x42,0x6c,0x10,0x52,0x25,0xfe,0x8,0x10,0x20,0xc1,0x6,0x76,0xed,0x86,0xd,
- 0xa8,0xb4,0xd0,0x52,0x35,0x34,0x50,0xb5,0x49,0x9b,0x86,0x24,0x4d,0x5a,0x1a,0x9a,
- 0xc4,0x89,0xed,0x71,0x6c,0xc7,0xe3,0x99,0x3b,0x33,0xf7,0xf1,0xfb,0x1d,0x16,0xe3,
- 0x38,0xce,0xa3,0x6d,0x1a,0x3b,0x8f,0x8a,0x23,0x5d,0xcd,0x66,0x74,0xaf,0xee,0x39,
- 0xe7,0x9e,0xdf,0x39,0xdf,0xf3,0x62,0xc7,0xae,0x3d,0xfc,0xf1,0x85,0x43,0x2c,0x76,
- 0xa2,0xd,0xb1,0xfb,0xda,0x1a,0x95,0xf9,0x33,0x74,0x9b,0x4b,0x84,0xa5,0x2a,0xd5,
- 0xe1,0xed,0xc4,0x7d,0x43,0xd8,0xa8,0xbc,0x6,0xe7,0xde,0x5d,0xb4,0x4e,0xc2,0x32,
- 0xd,0x6b,0x8,0x93,0xc5,0xdb,0xc2,0x8,0x32,0x75,0xb4,0x34,0xa7,0xa5,0x39,0xf9,
- 0x95,0x91,0x3a,0x72,0x55,0x29,0x7a,0x67,0xfe,0xb5,0xef,0x94,0xaa,0xc3,0xa1,0x58,
- 0xc,0xab,0x9a,0xad,0xf3,0x26,0x31,0x82,0x24,0x2d,0xce,0xcf,0xcf,0xf1,0xd8,0xe3,
- 0x8f,0xf3,0xe2,0x4b,0x7f,0xe3,0xc8,0x91,0x23,0x88,0xc8,0x1b,0x22,0xf2,0x43,0xa3,
- 0xe6,0x68,0xc7,0x75,0x38,0xfc,0xfa,0xe1,0xcd,0x85,0xa4,0x9b,0x65,0xda,0xfc,0xdc,
- 0x3c,0x13,0xe3,0x13,0x58,0x31,0xb,0xaa,0x7a,0xd8,0x5a,0xbb,0xff,0x52,0xd8,0xd9,
- 0x79,0xa6,0x33,0xcf,0x42,0xde,0x66,0xf7,0x81,0x3,0x9c,0x3e,0xbf,0xc4,0x99,0x85,
- 0xfc,0x6,0x8f,0xdf,0xd8,0x0,0x97,0x77,0xa9,0xc,0x8e,0x51,0x1d,0x9a,0xdc,0xd4,
- 0xc2,0xc8,0x8f,0xa,0x23,0xd9,0x50,0xc8,0x2a,0x1b,0xcb,0x98,0x6f,0x1e,0xef,0xb2,
- 0x92,0xb7,0x18,0x4c,0x93,0x5b,0x8e,0xc,0x72,0xfc,0x7a,0x13,0x49,0x49,0x2c,0xd5,
- 0xb5,0xca,0xa0,0x92,0xd8,0xf5,0x6c,0x60,0x24,0xe6,0xa6,0xf0,0xb3,0x88,0x90,0xe2,
- 0xc8,0xf1,0x34,0x28,0x50,0x94,0x0,0x28,0xa4,0xd7,0x15,0xd4,0x58,0x5c,0xe4,0xd0,
- 0xdb,0xc7,0x78,0xe7,0x9d,0x53,0xa0,0x7a,0x48,0x44,0x9e,0x32,0xde,0x1c,0xdd,0xb3,
- 0x6f,0xf,0xcf,0x3f,0xf7,0xfc,0xe6,0x31,0x89,0xad,0xe0,0xf1,0xec,0xdc,0x2c,0x93,
- 0x13,0x93,0xa8,0x2f,0x16,0x14,0x5e,0x33,0xc6,0xec,0x4c,0xcb,0xe1,0xde,0xa6,0x2b,
- 0xa4,0xd9,0xf5,0xcc,0x77,0x6b,0xa8,0x89,0x6e,0x2a,0x1c,0x23,0x6,0x57,0x64,0x4,
- 0x71,0x75,0xcb,0x65,0xef,0x8b,0x9c,0x22,0x4d,0x28,0xba,0x2d,0xf2,0x34,0xa1,0x48,
- 0xdb,0x14,0x59,0xa7,0xe7,0x7c,0xaa,0xeb,0x29,0xc6,0x75,0xfb,0x88,0x45,0xc,0xae,
- 0x54,0xa5,0x95,0xd4,0x99,0x70,0xfa,0xb1,0xfe,0x40,0xa2,0x39,0x4d,0xcd,0xa9,0x4a,
- 0x48,0x9f,0x9,0x9,0xd6,0x4a,0xc4,0x3f,0x49,0x24,0x10,0x8b,0xa5,0x24,0x1,0x39,
- 0xb0,0x48,0x8e,0x5,0x62,0x20,0x9,0x2,0x64,0x60,0x90,0x8e,0x73,0xa,0xfa,0x22,
- 0xc8,0x8f,0x50,0x8e,0x4f,0x4d,0x4f,0xf1,0xcc,0xb3,0xcf,0x6c,0xd,0x28,0xb5,0x55,
- 0xcc,0x9e,0x9d,0x9b,0x65,0x76,0x6e,0x8e,0xc9,0x89,0xed,0x4b,0x82,0x1e,0xb4,0x62,
- 0x6,0x4b,0x71,0xe9,0xc0,0x6a,0x92,0x4,0xa9,0x86,0x4,0x71,0xdf,0x4d,0xbf,0x3a,
- 0x13,0x84,0x64,0xed,0x6,0x41,0x58,0xda,0x32,0xb,0x50,0x64,0x1d,0xba,0xab,0x8b,
- 0x64,0x9d,0x55,0x54,0x1d,0xc6,0x4,0x98,0x20,0xea,0x2d,0x9e,0x5a,0x5b,0x45,0x5f,
- 0x64,0x1d,0xf2,0x6e,0x8b,0xa2,0x9b,0xa0,0xde,0x21,0x26,0x58,0x7b,0xbe,0x22,0x41,
- 0x4c,0x5b,0xc,0x41,0x72,0x89,0x6d,0x4,0x1f,0xfa,0x9c,0x86,0x66,0x74,0xb4,0x60,
- 0xc4,0x94,0x37,0x9d,0x61,0x34,0x40,0x19,0x43,0x43,0x53,0x56,0x5,0x8a,0x28,0x42,
- 0x86,0x46,0x30,0x95,0x6a,0x26,0x22,0xcf,0x8a,0xf0,0x13,0xe0,0xfd,0xcc,0xe5,0xbc,
- 0xfc,0xca,0xcb,0x5b,0xf6,0x91,0x6c,0xb9,0xcd,0x9d,0x9b,0x9f,0xe5,0x81,0x89,0xed,
- 0x4d,0x55,0xe,0x22,0xe2,0xe2,0xc0,0x7c,0xde,0x77,0x2f,0x97,0xba,0x69,0x8a,0x89,
- 0xfa,0x6f,0x28,0xec,0x90,0xb5,0x56,0xee,0x22,0x6d,0x13,0xc4,0x95,0xcd,0x85,0x55,
- 0xde,0x93,0x36,0x97,0xc8,0xbb,0x9,0x51,0xa5,0x46,0xa9,0x7f,0x84,0xa8,0x5c,0x23,
- 0x8c,0xcb,0xd8,0x30,0xee,0x5d,0x51,0x89,0x30,0xae,0x10,0x96,0xfa,0x9,0x4b,0x7d,
- 0xd8,0x30,0x46,0x5d,0x41,0x9e,0x26,0xf8,0x22,0xc3,0xac,0x2d,0x5e,0x92,0xb8,0x4a,
- 0x33,0x6d,0xb0,0x2d,0xeb,0x50,0xbe,0xc9,0x51,0xd0,0xf0,0x19,0x6d,0x72,0x46,0x4d,
- 0x5,0xbb,0x45,0xbe,0x8a,0x11,0x61,0xd5,0x67,0x24,0xa5,0x98,0x62,0x78,0x18,0x1b,
- 0x45,0x4d,0x81,0x5f,0xa8,0xf7,0x3f,0x37,0x36,0xac,0xaf,0x5c,0x38,0xc7,0x3b,0xd7,
- 0xd5,0xf4,0xdd,0x77,0xa,0x0,0x30,0x3b,0x3f,0xc7,0xe4,0xe8,0x68,0xaa,0xf8,0xd7,
- 0x10,0x39,0x1b,0x5a,0xf3,0x88,0x71,0xcd,0xe1,0x6e,0x7b,0x5,0xb5,0x65,0x6c,0x50,
- 0x62,0xad,0xd9,0x6c,0x6d,0x53,0x78,0x44,0x9e,0x26,0x98,0x20,0xbc,0x31,0x97,0x7f,
- 0x8b,0xc1,0x96,0x2f,0x32,0x3a,0x8d,0x3a,0x36,0x88,0x29,0xd7,0x46,0xb1,0x51,0xe9,
- 0x63,0x3d,0xf9,0x5e,0x87,0x92,0xc5,0x46,0x65,0xc2,0xa8,0xc,0xaa,0x64,0x9d,0x55,
- 0x7c,0x91,0x62,0xc3,0x12,0x2e,0xae,0x52,0xb4,0xea,0x4c,0xe8,0xd5,0x92,0x78,0x59,
- 0x33,0xfb,0xd,0xcd,0x18,0x37,0x55,0x82,0x2d,0xa,0x19,0x5,0x68,0x9,0x5c,0xe8,
- 0x8b,0x48,0x6b,0xfd,0x4,0x41,0x70,0x16,0x78,0x1a,0xf4,0xd7,0xa0,0xcd,0x37,0x8f,
- 0xbe,0xc5,0x72,0x92,0x6c,0x7d,0x5e,0xe2,0x4e,0x79,0xd4,0x73,0xb,0x75,0x6,0x6,
- 0x86,0xdc,0x85,0x7a,0xfd,0xf8,0x40,0xad,0xff,0xd,0x6b,0xed,0x54,0x44,0xb6,0x33,
- 0x6f,0x2f,0x9a,0xbc,0xf0,0x94,0x23,0x4b,0xcd,0x76,0x48,0x9d,0xe9,0x21,0x82,0x62,
- 0x28,0xba,0xad,0xdb,0xb2,0x2,0x2e,0x4f,0xe9,0x34,0xea,0xc4,0xd5,0xa1,0x5e,0xae,
- 0xe0,0x76,0x64,0x22,0x82,0x9,0x22,0xc2,0xb8,0x82,0xaa,0x27,0xef,0x26,0x98,0xa8,
- 0x42,0x5b,0x1c,0x3,0xed,0xab,0x95,0x44,0x99,0x7a,0x16,0x7d,0x87,0x51,0x53,0xd9,
- 0x92,0xc2,0x92,0x5e,0x83,0x89,0x32,0x1b,0x28,0xef,0xf6,0x7,0xb4,0x2b,0xb1,0x33,
- 0xc6,0xbc,0xa2,0xf0,0xe3,0x4e,0xd6,0xf9,0x93,0x2a,0xf9,0xb1,0x13,0xc7,0xef,0x5c,
- 0x62,0xea,0x4e,0x86,0x55,0x8b,0x4b,0x8b,0xec,0x1c,0xdc,0x41,0x3c,0x1c,0x5d,0xf4,
- 0x99,0x7f,0x49,0x44,0xf2,0xc8,0xb0,0x8f,0xec,0x72,0xb5,0xaa,0x2b,0x3c,0x3a,0x66,
- 0x98,0x59,0xea,0xa2,0x71,0xd,0x63,0x3,0x8a,0xb4,0x8d,0xa2,0xd8,0x20,0xbe,0x75,
- 0x47,0xcf,0x15,0xb4,0x97,0x67,0x29,0xf5,0xd,0x13,0x56,0x6a,0x9b,0x47,0xc,0x45,
- 0xb0,0x41,0xaf,0xd,0x5b,0xc4,0xa0,0x51,0x95,0xb4,0x55,0x67,0xc2,0xf5,0xa4,0x55,
- 0xf7,0x6d,0xfa,0x25,0xa6,0xdf,0x84,0x9b,0xc6,0x26,0x5,0x68,0x88,0xe7,0xbd,0x92,
- 0x70,0xbe,0x1a,0x92,0x7,0x76,0x59,0xe0,0x37,0xea,0xf5,0x67,0x95,0xfe,0xd2,0xc9,
- 0xf6,0xe5,0x2e,0xa7,0xde,0x3f,0x7d,0x47,0x43,0xdf,0x3b,0x9e,0x1,0x59,0x6c,0x2d,
- 0x32,0x37,0x3b,0xc7,0xc4,0xd8,0x70,0xa2,0xea,0xfe,0xa1,0xc8,0xbf,0x43,0x6b,0xa6,
- 0xb2,0x22,0x9f,0x3e,0xb7,0xb0,0x6c,0xda,0x5,0x98,0x78,0x0,0x63,0x43,0x4c,0x10,
- 0x91,0x25,0x2b,0x4,0x51,0xf9,0xd6,0x0,0x20,0x55,0x92,0xe5,0x8b,0x4,0x71,0x85,
- 0xb8,0x6f,0x78,0x4b,0xe1,0xe2,0x2b,0xb3,0x8d,0xc4,0x46,0xb4,0x5d,0xca,0x40,0x67,
- 0x5,0xa7,0x5,0xa,0x8c,0xd8,0xd2,0xa6,0x5,0x9f,0xa2,0x9c,0xd,0x3d,0xef,0x55,
- 0xc,0x8d,0x92,0xf5,0x62,0xcc,0x6b,0x22,0xfc,0x34,0x77,0xc5,0xef,0xc2,0x20,0x5c,
- 0x39,0xf2,0xe6,0x5b,0x2c,0x35,0x96,0xee,0x38,0xf6,0x71,0xd7,0x52,0x60,0xf5,0x4b,
- 0x8b,0x6c,0x2f,0x45,0x3e,0xab,0xd4,0xde,0x37,0xae,0xf8,0x2b,0x62,0x9a,0xc6,0x6,
- 0xf,0x1a,0xdf,0x19,0xc8,0x5b,0x8b,0x38,0xaf,0xa8,0xa,0x2e,0xcf,0x8,0x4b,0xd5,
- 0x5b,0x50,0x0,0xa1,0xb3,0xba,0x80,0x2b,0x52,0xfa,0x86,0xb6,0xdf,0x41,0xcc,0x48,
- 0xd0,0x20,0xa6,0xd5,0x9c,0x25,0x72,0x19,0x93,0xa6,0x72,0xdb,0xe5,0x64,0x2,0xe4,
- 0x28,0xb3,0xd6,0x73,0xba,0xac,0xd4,0xcb,0x16,0x17,0xd8,0x8b,0x2,0xbf,0x4,0x9e,
- 0x36,0x4e,0xe,0x3b,0xe3,0xdd,0x89,0x93,0x27,0xef,0x1e,0xf8,0xc5,0x3d,0xa0,0x47,
- 0x1e,0x3a,0x80,0xa8,0x58,0x67,0xdc,0x17,0x10,0x9e,0xf2,0xaa,0xdf,0xcd,0x9d,0x1b,
- 0x6c,0x67,0x60,0xfa,0xa7,0x28,0xd,0x4c,0x61,0x82,0xe8,0x23,0x36,0x92,0xa,0x45,
- 0x9a,0xd0,0xbc,0x74,0x8e,0xda,0xf8,0xae,0x5e,0x3d,0xe0,0x87,0x81,0x40,0xca,0x96,
- 0x58,0x86,0x62,0xfe,0x38,0x8f,0xae,0xd4,0xd9,0x69,0x2a,0x9f,0xf8,0x6e,0x2,0x64,
- 0x28,0x97,0x8c,0x67,0x26,0x82,0x46,0x64,0x50,0x6b,0x56,0x5,0x9e,0x13,0xe4,0x57,
- 0x36,0xb0,0x6f,0xa0,0x5a,0x1c,0x3b,0x79,0xe2,0xae,0xcb,0xe2,0x9e,0x28,0xc0,0x15,
- 0xda,0xff,0xf0,0xc3,0xa8,0xd7,0x8a,0x58,0xfb,0x35,0x51,0xfd,0x81,0xaa,0x7e,0x3d,
- 0x2f,0x5c,0x7f,0x26,0x65,0xa8,0x8c,0x13,0x56,0xc7,0xb0,0x61,0x79,0x3,0xc2,0x7e,
- 0xd5,0xf4,0xaf,0x2e,0x7c,0x40,0x58,0xea,0xa3,0x3c,0x38,0x7e,0xad,0xa2,0x88,0x80,
- 0x7a,0x5c,0x9e,0x51,0xa4,0x9,0x59,0xa7,0xd9,0x5b,0xd7,0x32,0x34,0x71,0xfb,0xaf,
- 0x2b,0x82,0x4f,0x96,0xd8,0x7d,0xe1,0x6d,0xf6,0x53,0xfa,0x44,0x8c,0xed,0xe0,0x59,
- 0x30,0x9e,0x8b,0x21,0xac,0xf6,0x4,0x9f,0x18,0x91,0x83,0xa0,0xbf,0xf5,0xce,0xff,
- 0xdd,0x1a,0x93,0x9c,0x78,0xf7,0xf4,0x3d,0x93,0xc1,0x3d,0x55,0x0,0x80,0xed,0xdb,
- 0x26,0x18,0x19,0x1f,0xa1,0xc8,0x8b,0x7e,0x81,0x6f,0x0,0xdf,0x57,0xf5,0x5f,0x2d,
- 0x9c,0x1f,0xc8,0x89,0xd0,0x78,0x4,0x5b,0x1d,0x23,0x88,0xfb,0x11,0xdb,0xeb,0x52,
- 0xee,0xb6,0x96,0xe9,0x36,0x17,0xa9,0x8d,0xef,0xbe,0x7a,0x54,0x88,0xe0,0x8b,0x9c,
- 0x2c,0x59,0xa1,0xdb,0x5c,0x24,0xeb,0x34,0x71,0x79,0x86,0xd,0x42,0x6,0xb6,0x3f,
- 0x44,0x5c,0x1d,0xdc,0x1c,0xc6,0xa0,0x8e,0xfe,0xb,0x47,0x79,0xa2,0xdd,0x59,0xef,
- 0xfa,0xfd,0x30,0x66,0x3a,0x94,0x55,0x3c,0xf3,0xd6,0x53,0xf,0xa1,0x1d,0x8,0x18,
- 0xb3,0x2a,0x70,0x48,0x44,0xfe,0x80,0xd7,0x17,0xe3,0x28,0x5e,0xb9,0xdc,0x6c,0x70,
- 0x76,0xe6,0xfc,0x3d,0xe5,0xff,0x3d,0x57,0x80,0x2b,0xf4,0xb9,0xdd,0xfb,0xe9,0x44,
- 0x1d,0xa2,0x22,0xea,0xf7,0xf8,0x2f,0x23,0x7c,0xf,0xe5,0x9b,0xce,0xbb,0xc9,0xc2,
- 0x1b,0x71,0x41,0x1f,0x52,0x1e,0xc1,0x96,0x6,0x69,0x5f,0x5e,0xa0,0x32,0x38,0x49,
- 0x54,0xa9,0xa1,0x28,0xbe,0xc8,0xe8,0xae,0x2e,0xd1,0x6e,0xd4,0xc9,0xbb,0xad,0xf5,
- 0x76,0x25,0x13,0x84,0xc,0x4c,0xee,0x5d,0xab,0x21,0xdc,0x7c,0x74,0x60,0x96,0x3f,
- 0xe0,0x8b,0xb,0x1f,0x30,0x2a,0xf1,0xfa,0xdd,0x36,0xa,0x3d,0xc1,0xb3,0x24,0x9e,
- 0x7a,0xa0,0x34,0x2,0x21,0xb7,0xa2,0x22,0x52,0x17,0x78,0x59,0x90,0x67,0x4,0x5e,
- 0xcd,0xd2,0xa4,0x51,0xaa,0xc,0x72,0xe2,0xdd,0x93,0xf7,0x5,0xdf,0xef,0x1b,0x5,
- 0xd8,0x48,0x7b,0xf6,0xec,0x41,0x9d,0x8b,0x3,0x1b,0x1c,0x0,0xbe,0x3,0x7c,0x5b,
- 0xd5,0x1f,0x70,0x5e,0xab,0x85,0xef,0x2d,0x3c,0xa,0x6b,0xf,0x60,0x4b,0x83,0x14,
- 0x79,0x46,0xb2,0x3c,0x47,0xde,0x4d,0xae,0x11,0xb2,0x18,0x4b,0x6d,0x6c,0x17,0x95,
- 0xa1,0x89,0xad,0xa,0xb,0xf0,0xdd,0x6,0x7b,0xcf,0x1f,0x65,0x9f,0x86,0x78,0x20,
- 0x53,0xa5,0x25,0x9e,0x65,0xf1,0x2c,0x59,0x4f,0x23,0x10,0x32,0x2b,0x20,0xd2,0x36,
- 0x22,0xa7,0x80,0xbf,0x80,0xfe,0x39,0x2f,0x8a,0xe3,0xd3,0xd3,0xd3,0xdd,0x83,0xaf,
- 0xbe,0x7a,0xdf,0xf1,0xfa,0xbe,0x54,0x80,0x2b,0x34,0x35,0x35,0x45,0x27,0xed,0xca,
- 0x48,0x6d,0x70,0x14,0x78,0x1c,0xf8,0x16,0xf0,0x24,0xaa,0xf,0x3a,0xef,0xab,0xe,
- 0x23,0x59,0x5e,0x90,0xe5,0x1e,0xe7,0xd,0x5e,0xd,0x8a,0x1,0xb1,0xf4,0x8f,0xee,
- 0xa0,0x6f,0xdb,0x4d,0x86,0x55,0x2b,0x37,0xfa,0x14,0xd7,0xb3,0x42,0xae,0xff,0xbf,
- 0xef,0xad,0xa3,0xcb,0x13,0x6,0x2e,0x1e,0x63,0xaa,0x28,0x68,0x58,0x58,0x35,0xd0,
- 0xb1,0x50,0xf4,0xd6,0x73,0x27,0x2,0xff,0x15,0xf8,0x27,0xf0,0x82,0xc0,0xeb,0xed,
- 0xa4,0x55,0x8f,0xc2,0x50,0xcf,0xcc,0xcc,0xdc,0xb7,0x3c,0xbe,0xaf,0x15,0x60,0x23,
- 0xed,0xdd,0xfd,0x20,0xce,0xfb,0x20,0x30,0x66,0xc,0x91,0xc7,0x50,0xbe,0x4,0xfa,
- 0x84,0xa2,0xf,0xa9,0xea,0xb8,0x7a,0x8d,0xa,0xaf,0x38,0xe7,0x71,0x18,0xc2,0xca,
- 0x8,0x12,0x55,0x10,0x5b,0x42,0x82,0x18,0x31,0xe1,0xd5,0x84,0x8f,0xf4,0x7a,0x84,
- 0xd7,0x95,0x43,0xb5,0xd7,0x28,0xb2,0x3e,0x76,0xad,0x40,0x5d,0x8e,0xba,0x14,0x75,
- 0x29,0x14,0x5d,0x70,0x5d,0xc4,0xa5,0x88,0xcf,0xae,0xc,0x6d,0xca,0x45,0x64,0x41,
- 0xe0,0x3d,0x11,0x79,0x1d,0xf8,0x97,0xa2,0x47,0xbd,0xf7,0xf3,0xc6,0x98,0xe2,0x3f,
- 0x5b,0x8c,0xd9,0xff,0xdf,0x2b,0xc0,0x35,0x61,0xe4,0xe8,0x4,0x36,0xcd,0x4c,0x32,
- 0x58,0xab,0x7a,0x23,0x9f,0x1,0xf6,0x89,0xc8,0xa3,0xa8,0x7e,0x16,0x91,0x1d,0xa8,
- 0x4e,0xaa,0x6a,0x4d,0xd1,0x50,0x21,0x58,0x9b,0x65,0xd6,0xb3,0xe,0x6b,0xcb,0x73,
- 0x94,0xd,0x63,0xea,0x55,0x59,0x1f,0x65,0xad,0xbe,0xf7,0xdb,0xbb,0x14,0x28,0x4,
- 0x72,0x84,0xa6,0x20,0x73,0x8,0xe7,0x41,0x4e,0xa8,0x72,0x4c,0x84,0x53,0xce,0xfb,
- 0x73,0x51,0x2b,0x68,0xe5,0x41,0xe1,0xcf,0xd4,0xcf,0x7e,0xea,0x78,0xf9,0xa9,0x54,
- 0x80,0x1b,0x68,0x62,0x80,0x27,0xe7,0x1b,0x5c,0x98,0x9e,0x2e,0x5,0x41,0x30,0xa6,
- 0x5e,0xc7,0x11,0xd9,0x1,0xec,0x2,0x9d,0x56,0x65,0x5a,0x44,0x46,0x81,0x21,0x54,
- 0x7,0x80,0x32,0x10,0xe9,0xd5,0xa2,0x58,0x15,0xc8,0x80,0x36,0x22,0xab,0xa0,0x97,
- 0x55,0xb9,0x84,0xc8,0x8c,0xc0,0xc,0xc8,0x59,0x45,0xcf,0x1a,0x91,0xba,0x57,0xbf,
- 0xf0,0x95,0x99,0x99,0xce,0xef,0xb7,0x6d,0x83,0x9b,0xc,0x5c,0xf8,0xb4,0xd1,0xff,
- 0x0,0xce,0x87,0x73,0x4e,0xce,0xb4,0x13,0xea,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,
- 0x44,0xae,0x42,0x60,0x82,
- // /media/stoned/SHARED/Git/AO2-Client/resource/fonts/Ace-Attorney.ttf
- 0x0,0x0,0xe,0x74,
- 0x0,
- 0x0,0x3d,0x98,0x78,0x9c,0xed,0x1b,0x4b,0x6c,0x24,0xc5,0xf5,0x75,0x8f,0xbd,0x1f,
- 0xaf,0xbd,0xff,0x65,0xff,0xd0,0xbb,0x2c,0xb0,0xb,0xf8,0xc3,0x7e,0x60,0x81,0x45,
- 0xe9,0x65,0x91,0x1,0x61,0x91,0x68,0x8d,0x20,0x42,0x49,0x60,0x6c,0xcf,0xda,0xc3,
- 0xae,0x3d,0xc6,0x9e,0xc5,0x6b,0x12,0x45,0x75,0x40,0x4a,0xe,0x48,0x81,0x1b,0x22,
- 0x1f,0x71,0xc8,0x21,0x89,0x38,0x44,0x88,0x3,0x87,0x48,0xe9,0x48,0x7b,0x48,0x94,
- 0x55,0x94,0x3,0x11,0x44,0x22,0x12,0x84,0x48,0xc9,0x21,0x7,0xe,0x49,0x14,0x50,
- 0x3c,0x9d,0x57,0x55,0xef,0x55,0x57,0x55,0x77,0xcf,0x8c,0xbd,0x11,0x4a,0xa4,0x8c,
- 0x55,0x53,0x9f,0xae,0x7a,0xff,0x7a,0xef,0x55,0x4d,0x1b,0x2,0x0,0xe8,0x3,0x1,
- 0x15,0x88,0xbe,0x38,0x3e,0x7c,0xbc,0x72,0xf7,0xba,0x61,0x80,0x4d,0x3d,0x38,0xfa,
- 0xec,0xe4,0x6c,0x75,0xfe,0xc6,0x57,0xf7,0xbf,0x8a,0xed,0x37,0x1,0xc2,0x93,0xd3,
- 0x97,0x96,0x2f,0x1c,0x8c,0xfe,0x75,0x3f,0x3e,0x7f,0x9,0x60,0xe4,0xed,0x99,0x5a,
- 0x75,0xea,0x99,0xad,0xe9,0x2b,0xf8,0xec,0x43,0x9c,0x73,0xf7,0xc,0xe,0x54,0x20,
- 0x7d,0x0,0xa0,0xb2,0x7,0xfb,0x47,0x66,0x66,0x9b,0x57,0xfa,0xcf,0xf4,0xbe,0x85,
- 0xfd,0x33,0x0,0xc1,0x57,0x2e,0x35,0x26,0xab,0x0,0x5f,0xed,0x5,0x38,0x73,0x1a,
- 0xfb,0xcf,0xce,0x56,0xaf,0xcc,0xc3,0x53,0xe9,0x27,0x0,0x3d,0xaf,0xe1,0xfc,0x68,
- 0xae,0x3a,0x5b,0x1b,0xb9,0xf9,0x41,0x6c,0xf6,0xbc,0x3,0xb0,0xee,0xb1,0xf9,0xc6,
- 0x62,0x13,0xc2,0x74,0x5,0xf1,0x4d,0xc9,0xe7,0x58,0x42,0x2c,0x15,0x2c,0x3b,0xf1,
- 0x1b,0x29,0xf,0x8e,0x40,0x4f,0xb0,0x15,0xfb,0x37,0xc0,0x56,0x1c,0x59,0x7,0x87,
- 0xe1,0x4e,0xb8,0xf,0xbe,0x0,0x4f,0xc3,0x33,0xf0,0x22,0x7c,0x33,0xda,0x1b,0x1d,
- 0x4c,0x53,0xb5,0xf6,0x8,0xc,0xe1,0xf8,0x59,0x1c,0xaf,0xe2,0xf8,0x9e,0xe8,0x40,
- 0x9a,0xa6,0x1f,0xa7,0x7f,0x4c,0x3f,0x4a,0xff,0x90,0x7e,0x90,0xbe,0x9f,0xbe,0x97,
- 0xbe,0xfb,0xe1,0xfd,0x1f,0xde,0x2b,0xa1,0xfe,0x4f,0x7f,0xfe,0x2f,0xf,0xf7,0x13,
- 0xe8,0xf2,0xd6,0xfa,0xf4,0xa6,0x67,0xb6,0x9c,0xf9,0x3b,0xa,0x48,0xd,0xff,0x66,
- 0xf2,0xc0,0x7d,0x59,0x9d,0xc6,0x95,0x58,0x9a,0x15,0x6c,0x40,0xb,0xb,0x78,0x1d,
- 0xda,0x72,0x8c,0xdf,0x2f,0x63,0x6f,0xac,0x12,0xe7,0x24,0xf1,0x14,0x5c,0xc3,0xef,
- 0x7e,0x2c,0x9,0x96,0x97,0x75,0x9,0xb0,0x84,0x38,0x16,0xe2,0xb3,0x50,0x8e,0x61,
- 0x1d,0xf4,0xeb,0xa2,0xc6,0x69,0x4c,0x8d,0xd3,0x7c,0xbb,0x5d,0x56,0xe4,0x1c,0xb5,
- 0x7e,0xcc,0xad,0x83,0x6b,0xba,0x98,0x7e,0xbf,0x45,0x3,0xe1,0x33,0xf4,0xd8,0xb5,
- 0x57,0x24,0x97,0xc1,0x35,0x77,0x1d,0xc3,0x76,0xca,0x58,0xd6,0x56,0xfc,0xf6,0x67,
- 0xed,0xd0,0x82,0x91,0x9b,0x3f,0x66,0xc1,0xb7,0xe8,0xb,0xae,0x95,0xc8,0x24,0x50,
- 0x12,0x7e,0x4,0xb6,0x2b,0x59,0x87,0x5,0x9a,0x3d,0x1c,0xfc,0xc0,0xe8,0x64,0x2f,
- 0xad,0x90,0xdf,0xfd,0xd8,0xb,0x68,0xd5,0x7a,0xb8,0x85,0xda,0x15,0xd8,0x8d,0x7b,
- 0x41,0xb7,0x7b,0xd0,0x7f,0x9c,0xa3,0x76,0x2f,0x6c,0x42,0x3c,0xba,0xbd,0xe,0xd7,
- 0x4e,0x50,0x7b,0x3d,0x9c,0x81,0x39,0x6a,0x6f,0x80,0x5d,0xf0,0x13,0x6a,0x6f,0x44,
- 0x6f,0xf9,0x73,0x6a,0xf7,0xc1,0x20,0xfc,0x8a,0xda,0x9b,0x10,0xfe,0x3f,0xa8,0xdd,
- 0xf,0x23,0xc1,0x0,0xb5,0x7,0xe0,0x50,0xf0,0x0,0xb5,0x37,0x23,0x79,0x5f,0xa3,
- 0xf6,0xe,0x38,0xc6,0x6d,0xfc,0xda,0x10,0x7c,0x4b,0x7a,0xb4,0x9e,0x8d,0xd8,0x3d,
- 0x1e,0x7c,0x87,0xda,0x1,0xec,0x9,0x7e,0x41,0xed,0x10,0x36,0x7,0xbf,0xa7,0x76,
- 0x5,0x86,0x82,0x3f,0x53,0xbb,0x7,0x8e,0x86,0xbb,0xa8,0xdd,0xb,0x37,0x84,0xf,
- 0x50,0x7b,0x1d,0xec,0x9,0xc7,0xa9,0xbd,0x1e,0xae,0x84,0x17,0xa9,0xbd,0x1,0x6e,
- 0xf,0x3f,0xa6,0xf6,0x46,0xd8,0x59,0x19,0xa0,0x76,0x1f,0x3c,0x5d,0x39,0x44,0xed,
- 0x4d,0x30,0x54,0xf9,0x3a,0xb5,0xfb,0xe1,0xd9,0xca,0x8f,0xa9,0x3d,0x0,0xf,0x2a,
- 0xec,0xb2,0x8d,0xbc,0xf4,0x3c,0x46,0xed,0x1d,0x70,0x9e,0xdb,0xc8,0xcb,0xd6,0x9e,
- 0xef,0x9f,0x6b,0xcc,0x2f,0x2f,0xd4,0xa7,0x67,0x9a,0xd1,0x43,0xd5,0x17,0xea,0x53,
- 0xd1,0x68,0x6d,0x6e,0x31,0x3a,0x3e,0x72,0xd7,0x89,0xb3,0x93,0xb5,0xe8,0x6c,0xb3,
- 0xd9,0x58,0x98,0xab,0x2d,0x9f,0xaf,0x4d,0x5f,0xbe,0x54,0x5d,0x18,0x6d,0xcc,0x35,
- 0xc7,0x9b,0xb,0x97,0x27,0x9b,0x91,0xfd,0xd4,0x6e,0x47,0x34,0xf5,0xc9,0xda,0xc2,
- 0x62,0xbd,0x31,0x17,0xdd,0x35,0x34,0x82,0x8f,0x7,0xf9,0xb1,0x5,0xa1,0xbe,0x18,
- 0x55,0xa3,0xe6,0x42,0x75,0xaa,0x36,0x5b,0x5d,0xb8,0x18,0x35,0x2e,0x44,0xa3,0xe3,
- 0x8f,0x46,0x6a,0xc2,0x4c,0x63,0x3e,0x7a,0x74,0xae,0x59,0x5b,0x98,0xab,0x36,0x11,
- 0x48,0xf5,0x52,0xf4,0xf0,0xec,0xc4,0x23,0x33,0xcd,0xe6,0xfc,0x7d,0xc3,0xc3,0x17,
- 0x70,0xc6,0xa2,0x2,0x31,0x34,0xd9,0x98,0xcd,0x88,0xde,0x77,0xf5,0x33,0x9b,0x90,
- 0x7d,0x57,0x3f,0x8d,0x96,0xaa,0x8b,0xd1,0xc4,0xe5,0xfa,0xa5,0x66,0xb4,0x54,0x6f,
- 0xce,0x44,0x19,0xf2,0x3e,0x82,0xb5,0xb4,0xb4,0x34,0xa4,0xe0,0x21,0x46,0x9,0xad,
- 0x10,0x85,0xd5,0x45,0x62,0x16,0x87,0x71,0xf2,0xd2,0xf0,0xe9,0x7b,0x4e,0x8d,0x9c,
- 0x3e,0x61,0xb1,0xf3,0x78,0x63,0x6e,0xf0,0x5c,0x63,0x76,0xb6,0xb6,0x30,0x59,0x47,
- 0x82,0xc7,0xea,0x93,0x48,0x53,0x6d,0xb4,0xfe,0x42,0x2d,0x9a,0xa8,0x4f,0x47,0xcf,
- 0x5f,0xae,0x4e,0x5e,0xac,0xcf,0x4d,0x47,0x2f,0xd6,0xe6,0x67,0x96,0x17,0x16,0xa3,
- 0xe7,0x1a,0x48,0xd6,0xec,0x32,0xd2,0x78,0x25,0x9a,0xa8,0x4d,0x9d,0x9b,0x3e,0xf9,
- 0xf8,0xd4,0x93,0xa3,0x73,0x68,0xec,0xd,0x98,0x87,0x65,0x58,0x80,0x3a,0x4c,0xc3,
- 0xc,0x34,0x31,0x0,0x3c,0x84,0x8e,0xff,0x5,0xec,0x4f,0x61,0x7b,0x14,0x6a,0x68,
- 0xec,0x8b,0xd8,0x3a,0xe,0x23,0x70,0x17,0x9c,0xc0,0xc0,0x30,0x89,0x63,0x11,0xd6,
- 0x4d,0xfc,0x6b,0xe0,0xca,0x39,0xec,0x2f,0xc3,0x79,0xfc,0x9e,0x86,0xcb,0x70,0x9,
- 0x57,0x2f,0xe0,0xba,0x6,0x8e,0x37,0x61,0x1c,0xcb,0x2,0x8e,0x4e,0x2a,0xc8,0x65,
- 0x6b,0xcb,0xc6,0x23,0xf,0xea,0x93,0xd8,0x5b,0x40,0x6a,0xea,0xa,0x7a,0x84,0xf4,
- 0xc,0x21,0x55,0x7a,0xf5,0x60,0x6e,0x75,0x31,0xd,0x75,0xc5,0x4d,0x15,0x8b,0x1c,
- 0xad,0x22,0x97,0x35,0x98,0x55,0xd0,0x2f,0xe2,0x58,0x3,0x2e,0x28,0xae,0xc7,0xe1,
- 0x51,0x55,0x33,0x84,0x19,0x25,0xa7,0x8,0x47,0x65,0xbf,0xa6,0x70,0x54,0xb1,0xa5,
- 0x29,0xa9,0x22,0x7d,0x11,0x3c,0x8c,0x70,0x26,0xd0,0x31,0xcd,0x28,0x3a,0xe6,0x31,
- 0xbc,0xe,0xe3,0xdf,0x5,0x82,0xb1,0x68,0x51,0x31,0x84,0xdf,0xd,0x9c,0x5d,0x20,
- 0xe9,0x68,0x1f,0x5c,0x85,0xcf,0xca,0x24,0xa2,0x9e,0x7e,0x8a,0xe3,0x4b,0xb8,0x52,
- 0xf2,0x31,0x81,0x10,0xeb,0x88,0xbd,0xa9,0xc6,0xea,0x58,0xcf,0x38,0x74,0x67,0x38,
- 0xfb,0x3c,0xba,0x96,0xd4,0xdf,0x90,0x45,0x9f,0xe6,0x91,0x69,0xeb,0x9e,0x8b,0xe2,
- 0xa7,0x5a,0x32,0x8b,0xf8,0x54,0x43,0x5e,0xc2,0xd6,0x69,0xb8,0x7,0x4e,0xa1,0xc6,
- 0x4e,0xa3,0x1d,0x15,0x6b,0xe7,0x71,0x35,0x3a,0xa8,0xec,0x72,0x16,0xff,0xa4,0xa4,
- 0x27,0x11,0x96,0x96,0xf0,0x18,0xb6,0x26,0xc9,0x22,0x6b,0x8,0xa1,0x8e,0xd2,0xab,
- 0x29,0x29,0x48,0xeb,0x8d,0xe0,0x79,0x84,0x53,0xc5,0x19,0x17,0xb1,0x3f,0xa7,0x46,
- 0x5e,0xc4,0xe7,0xf3,0x88,0x7f,0x59,0xd9,0x4d,0x4,0xcf,0x21,0x5c,0x2d,0xad,0x59,
- 0x65,0x5f,0x52,0x8e,0x57,0x14,0x84,0x1a,0x6a,0xe1,0x1c,0xae,0x39,0x89,0x34,0x4c,
- 0xa1,0xa5,0x8d,0x22,0x4,0x8,0x83,0x7a,0xf0,0xa,0x7a,0xcf,0x9e,0x50,0x5,0x9a,
- 0xf4,0xd,0x5d,0x63,0x39,0xa1,0xe2,0x12,0xe5,0xc,0x80,0x69,0xb2,0x9b,0x5,0x8c,
- 0x8e,0x3f,0x71,0x1e,0x62,0x88,0xa2,0x83,0xa1,0x50,0xb9,0x82,0xce,0x5,0xb4,0x57,
- 0x4f,0x42,0x9c,0xae,0xb2,0xd6,0xa,0x4d,0xbf,0x80,0xf0,0x8a,0x3e,0xbd,0x2a,0x58,
- 0x89,0x50,0x66,0xe1,0xeb,0xd1,0xfb,0x6e,0xc7,0xfc,0xd,0x2,0xf7,0x83,0x40,0x75,
- 0x3,0xd1,0xa4,0xaf,0xe3,0xfc,0x5f,0x63,0x7d,0x4a,0x1,0xcd,0xfa,0xdf,0x4d,0x7f,
- 0x27,0x93,0x38,0x6c,0xdd,0x2a,0x1,0xe2,0xe8,0xd3,0xf4,0x7c,0x29,0x57,0xd7,0x24,
- 0x52,0x9c,0xfd,0x51,0xfa,0x5e,0xeb,0xac,0x9c,0xbb,0x22,0x74,0xcc,0x94,0x9f,0x98,
- 0x68,0x31,0x54,0xe8,0x51,0x5c,0x90,0xe8,0xda,0xf4,0x92,0x0,0x47,0x5a,0xb1,0x14,
- 0x51,0x90,0x4,0x71,0x98,0xa8,0x75,0x3,0x18,0x13,0x7c,0xe,0x1c,0x38,0x52,0x94,
- 0xa,0x2,0xc3,0x14,0xba,0x70,0x1b,0xa1,0x5a,0xd8,0x52,0xd9,0xa3,0x55,0x72,0x85,
- 0xd5,0xe,0x49,0xd6,0x31,0xe2,0xdd,0x5f,0x8c,0xd3,0x7c,0x68,0x65,0x2b,0xb1,0xf8,
- 0x20,0x3a,0xec,0x92,0x26,0x6e,0xc1,0x39,0x6a,0x34,0x15,0xf6,0xac,0x40,0x78,0x33,
- 0x2d,0x68,0x84,0x61,0xbb,0xa7,0xd7,0x2d,0x28,0x95,0xdd,0x48,0xe5,0x4d,0x70,0x33,
- 0xdc,0x6,0x77,0xe0,0x56,0x39,0x81,0x5b,0xe5,0x7e,0xcc,0xc3,0xcf,0xa1,0x5b,0x69,
- 0x4f,0xfb,0x2a,0x3e,0x2c,0xe3,0x80,0x64,0xda,0x62,0x99,0x73,0xed,0xf1,0xde,0x8a,
- 0xad,0x71,0xa1,0xa9,0xb7,0xe7,0xb7,0x58,0x3f,0xfe,0xb8,0xa7,0xcb,0xc0,0x1e,0x17,
- 0x84,0x3f,0xe6,0xd9,0xbe,0x2e,0xb3,0x1a,0x5b,0x52,0x96,0x44,0x2d,0xd6,0xa2,0xfd,
- 0x7c,0x53,0xfb,0xcf,0xc1,0x83,0x53,0x36,0x7f,0xb3,0xd2,0x4b,0x5c,0xa2,0x97,0x41,
- 0xc,0x38,0xa7,0xe0,0xde,0xeb,0xd1,0x87,0x91,0x6,0xe3,0x64,0x49,0x51,0x49,0x3d,
- 0xc9,0x1b,0xc9,0x79,0x9a,0x31,0x1a,0x12,0xd6,0xda,0xd8,0x7d,0x66,0xec,0xae,0x4c,
- 0xca,0x5e,0x5f,0xee,0x59,0xb5,0x4a,0x14,0xcf,0x33,0xda,0x10,0x16,0xb5,0x31,0xad,
- 0x89,0x73,0x1a,0xa,0xd5,0x5e,0x15,0x6a,0xdf,0x6f,0xb4,0x65,0xc6,0x14,0xc9,0x4f,
- 0x6e,0x57,0xbb,0xbb,0x59,0xf9,0x3f,0x48,0x2a,0x60,0xe9,0xa3,0xd8,0x7b,0x8,0x70,
- 0xe4,0xc7,0xb5,0x8d,0xcb,0xb1,0x38,0x63,0x1,0xd2,0x4d,0xb4,0x24,0xb1,0x3e,0xcf,
- 0xdd,0xe3,0xce,0xe3,0x28,0xa3,0xa5,0x5b,0xdc,0x32,0xdb,0x67,0xdf,0xe5,0xda,0xe1,
- 0x89,0xb5,0x59,0x1f,0x63,0x37,0x9e,0x8e,0x69,0x22,0xed,0x1a,0xfb,0x4a,0xdc,0xe7,
- 0x3c,0x3f,0x5,0xc7,0x62,0x72,0x5e,0xd1,0xaa,0xe3,0x22,0xdb,0xe2,0x7e,0xd0,0xc1,
- 0x16,0x5b,0x31,0x78,0xd0,0xc9,0xbe,0xf2,0x1e,0x55,0xf1,0x84,0x7b,0x35,0x46,0xf9,
- 0x80,0xcf,0x6c,0xa,0xd9,0xde,0xe1,0x7e,0x7e,0x44,0xc1,0x52,0x60,0xc8,0x76,0x45,
- 0x37,0xb6,0x9a,0x3a,0xfb,0xc3,0xd8,0xaa,0x9e,0xab,0x61,0x80,0x59,0x2b,0xf8,0x5b,
- 0x59,0x81,0xb2,0xa9,0xc0,0xf5,0x2f,0xab,0xb2,0xa9,0x82,0x5a,0x18,0xda,0xdb,0xd5,
- 0x94,0xaa,0x38,0xb8,0x73,0x98,0x8d,0xbc,0x19,0x3a,0xeb,0x5,0xa8,0x6d,0xb4,0xa6,
- 0x2d,0x57,0x27,0x5,0x96,0x5,0x13,0xcf,0x88,0xc3,0xce,0x10,0x62,0xcf,0x66,0xd4,
- 0x2a,0xee,0xa9,0xe4,0x62,0xbd,0xa1,0xad,0x17,0xe4,0x69,0x72,0x1b,0x9e,0xab,0xf7,
- 0xc2,0xc1,0x4e,0xb6,0xce,0x14,0x19,0xd,0x17,0x48,0xa8,0xd,0x2f,0xc2,0x58,0x94,
- 0xef,0xf1,0xb8,0x26,0x8f,0x97,0xa,0x8d,0xc1,0x58,0x6f,0x46,0xaf,0xbb,0x3f,0xdb,
- 0xd2,0x5b,0x2a,0xdd,0x98,0x68,0xe9,0x28,0x75,0xd6,0xa5,0x47,0xd,0xe9,0xd8,0xf8,
- 0xef,0xc4,0x48,0x3c,0xb4,0xe8,0x2c,0xb3,0x34,0xd6,0xa,0x53,0xc2,0xd4,0x24,0x90,
- 0x45,0x92,0x44,0x79,0x2,0x5,0xbd,0x95,0x70,0xc4,0x57,0x94,0xd0,0xec,0x16,0xcd,
- 0xc2,0x31,0xdf,0xce,0x76,0x95,0x49,0xa5,0x4c,0x1e,0x2d,0x8d,0xcd,0xf0,0x9f,0xc6,
- 0x8e,0xc,0x98,0x1e,0xad,0xf3,0xc4,0x64,0x5b,0x4c,0x81,0x84,0xe2,0xee,0x33,0xad,
- 0x9d,0x52,0xdd,0x18,0xdc,0x90,0xe1,0xb7,0x3d,0x4f,0xb9,0x3e,0xd8,0xee,0xa4,0x98,
- 0xd,0x7e,0x2f,0x96,0x29,0x7a,0x2a,0xe,0x3d,0x3,0x3e,0x2d,0x26,0xaa,0x43,0x56,
- 0x2b,0xf,0xa6,0xda,0x46,0xdb,0x82,0x76,0x74,0x46,0xcf,0x7f,0xd6,0xe,0xa1,0xfd,
- 0x78,0x9e,0x6f,0xcf,0xe,0x63,0x5b,0x62,0x8e,0x1d,0xfa,0x7e,0xaf,0x2b,0x7d,0xa4,
- 0x19,0xc6,0x2e,0xf5,0xc1,0x31,0x46,0xd3,0x95,0x9a,0x99,0xb2,0x6f,0x79,0x29,0xad,
- 0x30,0xdc,0x4d,0x21,0x14,0x9c,0x65,0x4,0x98,0x4c,0x91,0x77,0x5c,0xc0,0x3b,0x8f,
- 0xe3,0x72,0x51,0x7e,0xd8,0x55,0x5c,0x36,0xb4,0x33,0x4f,0xe0,0xd6,0x7e,0xdc,0xf5,
- 0xe3,0x74,0x8e,0xe7,0xcc,0xcf,0x3b,0x32,0xc8,0x7c,0x45,0x87,0xcc,0x59,0xde,0x6d,
- 0x2a,0x81,0x10,0x4f,0xcc,0x4f,0x47,0x6e,0x98,0x6,0xce,0xe5,0xfd,0x8c,0xd5,0xc4,
- 0x56,0xe6,0x90,0xe6,0x59,0x59,0xa9,0x4f,0x61,0x62,0x51,0x18,0x1b,0x28,0x49,0xce,
- 0xaa,0xf4,0xfc,0xde,0x9c,0x2e,0x3a,0xc6,0xb,0x96,0xaa,0x91,0x9f,0x0,0x47,0x1b,
- 0x52,0xda,0xb6,0xe7,0x61,0x89,0x13,0x4f,0xae,0x64,0x85,0xa1,0x4f,0xf5,0x5b,0xd2,
- 0xba,0xb3,0xec,0x84,0xa0,0x53,0x96,0xb1,0xd1,0x91,0xf1,0x5a,0xec,0x46,0x90,0x15,
- 0x27,0xae,0x94,0x99,0x13,0x3e,0x71,0x95,0x69,0x43,0xf9,0xd4,0x8c,0x6f,0x5b,0xff,
- 0x5e,0x5f,0x42,0x68,0x49,0x8b,0xef,0x30,0x4f,0xdb,0x8d,0xb7,0x17,0x3a,0x9d,0xb3,
- 0x3d,0xaa,0x73,0x7a,0x60,0xea,0x89,0x5a,0x6b,0xb7,0xbb,0xd8,0xe3,0x9c,0xe7,0x51,
- 0x75,0xb,0x58,0x7,0x2d,0xc8,0xf2,0x91,0x40,0xe6,0x23,0x5e,0x8e,0xa8,0xc7,0x2d,
- 0x4c,0xc0,0xde,0xd6,0xd6,0x22,0xdb,0xb0,0xe2,0x37,0x83,0x95,0xcb,0x10,0x7d,0x48,
- 0x79,0x28,0xf8,0xb4,0xcf,0xb3,0x1,0x9d,0xe1,0x1c,0x82,0x5b,0xe0,0x18,0x9e,0x2c,
- 0x57,0x99,0xd5,0x2b,0xa9,0x24,0x96,0x8f,0x24,0xc9,0x5,0xb6,0xb6,0x62,0xf6,0x7c,
- 0xae,0xb4,0xbb,0xf6,0x2d,0x9e,0xd4,0xad,0x5b,0x8e,0x4c,0x4f,0x89,0xa7,0x89,0x8e,
- 0xf6,0x65,0xdd,0x81,0x15,0xe8,0xc4,0xa6,0x8f,0xe4,0xc6,0xd2,0xa4,0xa5,0x32,0x5f,
- 0xc,0xc8,0x46,0xc8,0xa4,0xdb,0xc0,0x4a,0x59,0x4e,0x89,0x91,0x41,0x9c,0xe5,0x9f,
- 0x96,0xa5,0xf8,0x31,0xda,0x87,0x17,0xbb,0xf2,0x6,0x7,0x9e,0xed,0x6f,0x43,0xec,
- 0xaf,0xc8,0xa7,0x65,0xb1,0x42,0xde,0x24,0x74,0xaf,0x6d,0xe1,0xea,0xb7,0xec,0xbe,
- 0x80,0x29,0xe1,0xda,0xb9,0x17,0x48,0x32,0x99,0x82,0x7f,0x5e,0x48,0x48,0xb7,0x49,
- 0x69,0x1c,0x89,0xb3,0x9d,0xc5,0xf7,0x63,0xa9,0xe4,0x32,0xaf,0xcf,0x5e,0xe6,0xcb,
- 0x68,0x52,0xb0,0xf6,0x56,0xf4,0x4a,0x95,0xaf,0x78,0xf7,0x2b,0xfb,0xbb,0xf5,0x81,
- 0x26,0xb2,0x58,0xbc,0x39,0x32,0x21,0x9d,0xb4,0xec,0x67,0x89,0xba,0x5b,0xf0,0xce,
- 0x1f,0xb9,0xb3,0x51,0x61,0x3f,0xd5,0x76,0x47,0x45,0xc5,0x6,0x7a,0x26,0x8b,0x3a,
- 0xb7,0xf8,0x31,0xa8,0x6b,0xf,0xe8,0x7b,0x3c,0x93,0x79,0x5b,0xfa,0xb2,0x69,0xf6,
- 0x3d,0x9d,0xd1,0x8b,0x30,0x34,0x26,0xc4,0x79,0x92,0xc9,0x5e,0xd1,0xd8,0xaf,0x75,
- 0xd0,0xe6,0xae,0x71,0xd5,0x37,0xa,0x12,0x47,0x51,0x34,0x32,0x51,0x87,0xb8,0x5a,
- 0xa1,0xe7,0xbc,0xdf,0x56,0x12,0xf7,0xf9,0xda,0xa3,0x94,0x1b,0x7,0x72,0x99,0x68,
- 0xa7,0xf5,0x3d,0x9e,0xde,0x4a,0xcf,0x28,0x65,0x19,0x83,0x9d,0x29,0x58,0xf1,0x83,
- 0xb1,0x8,0x7b,0x2f,0x65,0x51,0xc9,0xb9,0x73,0xd8,0xd2,0x51,0x2f,0xfa,0xe,0xf8,
- 0xba,0x6e,0x7f,0x59,0x53,0x6c,0x47,0x39,0x89,0x7b,0x7d,0x7f,0x4f,0xb1,0x1f,0x59,
- 0xb3,0x6,0xbb,0xd5,0x64,0x6e,0x7c,0x8d,0x9a,0x2d,0xce,0x4b,0x3a,0x67,0x86,0xc2,
- 0xd5,0xaf,0x9f,0x9f,0xb7,0xd3,0x3b,0xf8,0xe7,0x9d,0xcc,0x87,0x76,0x63,0x7,0xd7,
- 0x7f,0xa6,0x88,0x29,0x22,0x12,0x8d,0x26,0x7e,0xca,0x5a,0x10,0x16,0x1,0x4e,0x5e,
- 0x6a,0xcf,0x63,0x9e,0x2c,0x59,0xa,0x9a,0xe5,0xf2,0x15,0xe7,0x6a,0x3d,0xcf,0x1f,
- 0xb7,0x63,0x82,0x7d,0xba,0x4a,0x28,0x27,0xa1,0x5a,0xc7,0x4a,0x5e,0xa3,0x2c,0x2b,
- 0x9f,0xd3,0xb7,0xbb,0xef,0x65,0x9,0xc6,0x50,0x7a,0x6f,0x59,0x6e,0x2f,0xd2,0xa2,
- 0xb3,0x1b,0x2c,0xe0,0xb3,0x74,0x5e,0xf,0xed,0xcf,0xd2,0xc,0x91,0xf0,0x96,0xc6,
- 0xa4,0x3c,0x5d,0x6c,0x1b,0x2c,0xd,0x96,0xb5,0xdf,0x67,0x5d,0x70,0x3d,0x20,0x17,
- 0x57,0xf2,0x67,0x7e,0xdb,0x6f,0xac,0xed,0x8e,0x38,0xf1,0xec,0x82,0x79,0xe0,0x92,
- 0xb8,0xfd,0x15,0x51,0x3c,0xce,0xfd,0x15,0x70,0xe1,0xe5,0x78,0x2f,0x93,0x81,0x5f,
- 0xfb,0x32,0xc9,0x3f,0xf7,0x65,0xc4,0xb5,0xde,0x5b,0xc5,0x3e,0xb6,0xbb,0xbd,0xc5,
- 0x3c,0x50,0xed,0xff,0xe,0x63,0xf6,0x58,0xec,0x8e,0x17,0x9c,0xd3,0x7c,0x9e,0x8b,
- 0xfb,0x1d,0x72,0x12,0xf8,0xdc,0xed,0x54,0xe7,0xda,0x26,0xb6,0xe5,0x7d,0x44,0x67,
- 0x3a,0xed,0x3b,0xdd,0x55,0xde,0x2c,0x98,0x3c,0x16,0x3a,0xd7,0xca,0x8f,0x25,0xaa,
- 0x99,0x98,0x9c,0xa8,0xdc,0x77,0x15,0xd4,0x46,0x42,0xf4,0xdb,0x2,0xc4,0xf6,0x5d,
- 0x7e,0x18,0x33,0x36,0x25,0x7,0xcd,0x9f,0x8,0x12,0x27,0x97,0xed,0x86,0x3f,0x4b,
- 0xde,0xb6,0xcc,0xd,0x74,0xee,0x27,0x99,0x44,0x8d,0xae,0x12,0x87,0x6,0x57,0x17,
- 0x1c,0x77,0xa8,0x4e,0x5d,0x2c,0xb6,0xe,0x75,0x8c,0x14,0xa1,0xfd,0xfb,0x52,0x37,
- 0x94,0x33,0x35,0x9e,0xf4,0x9d,0x2c,0x56,0x80,0x73,0x4a,0x71,0x62,0xbc,0xef,0x8d,
- 0x7d,0xca,0x69,0xbc,0x95,0x84,0xb1,0x15,0x25,0x5,0xd5,0x49,0xa1,0xcc,0x3b,0xdb,
- 0xbe,0x80,0xb6,0xb1,0x2,0xbc,0xf1,0xd2,0x73,0x70,0xd6,0x4f,0x9c,0xb8,0x98,0x9f,
- 0xc7,0xf2,0x15,0x6b,0x93,0xaf,0x1f,0xa9,0x1d,0x79,0xb,0xc8,0xcb,0x35,0x36,0xcf,
- 0x7d,0xf9,0xba,0x94,0xb2,0x7c,0x85,0xef,0xab,0xe9,0x64,0xdd,0xe3,0xc8,0x77,0x5b,
- 0xfb,0xbb,0x7b,0xf3,0xc2,0x8b,0x25,0x4b,0xc7,0x4f,0x42,0x59,0x36,0x1f,0x30,0x6f,
- 0xc4,0x6b,0x2a,0x2c,0xdb,0xc,0xf5,0x3a,0x75,0xa6,0x2f,0xf9,0x8d,0xca,0xe1,0x59,
- 0x10,0x2c,0x96,0x4d,0xf6,0x76,0x81,0xc8,0x6c,0x7,0xcf,0x49,0x8c,0xa1,0x57,0xe2,
- 0x74,0x6c,0x68,0x6f,0x3b,0xcd,0x30,0x57,0xce,0xbb,0xf,0x49,0x66,0x4d,0x2a,0xb,
- 0x64,0x5d,0x0,0xf1,0xe6,0x7b,0x17,0x23,0x7f,0xbe,0x99,0x36,0x71,0x81,0x56,0xae,
- 0x24,0x74,0xff,0xc0,0x36,0x53,0xc0,0xb9,0xfd,0x5b,0xac,0x5c,0x67,0x28,0x62,0x89,
- 0xf0,0xdd,0x9d,0x60,0x2d,0xf3,0xbd,0x89,0xb9,0x49,0x9,0xb5,0x36,0xc2,0x8e,0xef,
- 0xf0,0xe8,0x77,0x77,0x42,0x96,0x61,0x45,0x5b,0x51,0xc9,0xdd,0x88,0x91,0xbc,0xb,
- 0x25,0x93,0x42,0xa8,0x38,0xc,0xb3,0x18,0xb1,0xc1,0xe1,0xd5,0xbe,0x1b,0xe9,0x2e,
- 0x73,0x61,0xae,0x45,0x71,0xcd,0x94,0xf8,0xb5,0x7f,0x2b,0x62,0x5a,0x5d,0x45,0x7,
- 0xff,0xd4,0x6d,0xfd,0xe6,0x15,0x58,0x72,0xcd,0x7e,0xfb,0x55,0x98,0xd5,0xed,0x87,
- 0xc4,0xab,0xdf,0xe5,0x8a,0x83,0x44,0xc5,0x43,0x1d,0xd,0xdb,0x71,0x4b,0x52,0xe5,
- 0x1b,0x2c,0xb2,0x92,0x9c,0x5f,0x35,0x3e,0x59,0x68,0x99,0x66,0xda,0xe6,0xf8,0xc9,
- 0xf7,0x1f,0x7a,0x9c,0xad,0xc3,0x40,0x21,0xbb,0x53,0xfb,0xa1,0x70,0xc7,0xe5,0xee,
- 0xb,0x6d,0xec,0x9,0x63,0x6d,0x8b,0x49,0xeb,0x3b,0xc9,0xf9,0xed,0x6e,0x7d,0x62,
- 0xd2,0x39,0x53,0xe9,0xfa,0x36,0xd3,0xf7,0xe2,0xfe,0x29,0xc7,0x9f,0xbf,0x2e,0xe7,
- 0x2f,0xba,0xa7,0x5b,0xe9,0x84,0x2d,0x1,0x1c,0x1b,0xcd,0xed,0x5e,0x5f,0xa7,0x1d,
- 0x7c,0xb9,0x75,0x9a,0x24,0x3e,0xf4,0x89,0x32,0x2c,0xa7,0xfb,0xbf,0x2a,0x6,0xad,
- 0x24,0xbe,0xf,0x54,0x16,0x2e,0xd8,0xff,0x7,0x49,0x89,0xa7,0xf1,0x64,0x46,0x76,
- 0x9f,0x40,0x91,0xe5,0xad,0x2d,0x5f,0x88,0x4b,0x6e,0xb7,0x92,0xf6,0xe3,0x39,0xce,
- 0xfd,0xdf,0xde,0xca,0xcf,0xcb,0x1c,0xf3,0x64,0x3e,0x56,0x14,0xf3,0x2c,0x9d,0x94,
- 0xc4,0x3e,0x82,0x18,0x78,0x4f,0xc8,0x17,0xd8,0x7b,0xbc,0x30,0xb6,0xb0,0x1e,0x8a,
- 0xa2,0x9a,0xab,0x55,0xbd,0xd7,0x15,0xf5,0x66,0xff,0xa9,0x5b,0x20,0xca,0xf7,0x57,
- 0x29,0x6b,0xc2,0xb1,0x86,0xf3,0xb3,0x2b,0xd3,0x2e,0xef,0x74,0x81,0xce,0x84,0xca,
- 0xf,0x5f,0xc7,0x6f,0x71,0x45,0xb4,0x95,0x15,0x73,0x8e,0x4e,0xbc,0x7a,0xf5,0xe7,
- 0x60,0x9f,0x17,0xae,0x7,0x4a,0x64,0x7f,0xfd,0x77,0x2,0x6c,0xf,0xcc,0x8b,0xc7,
- 0x7b,0xd9,0xef,0x11,0x6b,0xd6,0x67,0xb9,0xb7,0x2e,0xee,0x77,0x3b,0x2f,0x83,0xbf,
- 0x51,0xf9,0xc5,0x62,0x59,0x75,0x7f,0x27,0x20,0x0,0x98,0x6a,0x43,0xfd,0x2a,0x79,
- 0xce,0x65,0x89,0x71,0x97,0x36,0x9c,0xb7,0x69,0x7d,0x6f,0x26,0x28,0xb7,0x90,0x67,
- 0xed,0xf6,0x39,0x2d,0x64,0x94,0xf8,0xef,0xf4,0xda,0xb5,0xca,0x67,0x85,0xc9,0x95,
- 0x84,0xf1,0xb1,0xa2,0x44,0xb,0xb1,0xed,0x9d,0x75,0xae,0x8d,0x59,0xa3,0xf4,0x19,
- 0x1d,0xee,0xf3,0x2,0x92,0x53,0xd9,0x5e,0x51,0xe3,0x89,0x2a,0x65,0x7a,0xf5,0xc7,
- 0x43,0xe0,0xf7,0x4f,0x7b,0x4b,0xde,0xe9,0xb3,0x56,0x6,0xfa,0x8e,0x29,0x1,0xeb,
- 0x37,0x31,0x7,0xc6,0xda,0xdf,0x61,0xed,0x1,0x7e,0xff,0xbd,0xb7,0xab,0x37,0xfe,
- 0xbc,0x62,0xac,0x48,0x14,0x50,0xa,0x85,0x54,0xeb,0x3a,0xc3,0xfb,0xf9,0xbe,0x77,
- 0xaf,0x3f,0x2f,0x7b,0xe5,0x2a,0x42,0x90,0xff,0xeb,0xfb,0x3e,0x40,0x65,0x1e,0x85,
- 0xf2,0x33,0x6d,0xb4,0xbd,0xdf,0xc0,0xf2,0x4f,0xc,0x1e,0x7,0xb0,0xcc,0x60,0x79,
- 0x13,0xcb,0x6f,0x31,0x61,0x1c,0xc3,0xf2,0x53,0x2c,0x7f,0xc1,0xd,0xfb,0x1a,0x40,
- 0x1f,0xc2,0xed,0x7b,0x1b,0x60,0xd3,0x69,0x2c,0xbf,0x4,0xe8,0x8f,0xb0,0x60,0x3d,
- 0xf0,0x65,0x2c,0xaf,0x0,0x6c,0x9e,0x2,0xd8,0x82,0x30,0xb6,0xe0,0xd8,0xd6,0xef,
- 0x1,0x6c,0xc3,0xf9,0xdb,0x10,0xef,0xb6,0x6b,0x0,0xdb,0xdf,0x5,0xd8,0x81,0xf3,
- 0x77,0x5c,0xc2,0x82,0x78,0x77,0xfe,0x10,0xb,0xe2,0xd8,0xf5,0x6,0xc0,0xd,0xf,
- 0x1,0xec,0x46,0x18,0xbb,0x3f,0x0,0xd8,0x7b,0x12,0xcb,0x9f,0x0,0xf6,0xbd,0x83,
- 0xe5,0x13,0x80,0xfd,0x38,0xff,0xc0,0x4e,0x80,0x83,0x8,0xeb,0x46,0xac,0x6f,0xc4,
- 0xb5,0x37,0x5d,0xc1,0x82,0xf0,0x23,0x5c,0x73,0x68,0x2b,0x16,0x9c,0x7b,0x18,0xf9,
- 0x39,0xfc,0x37,0x80,0x9b,0x9f,0xc0,0xf2,0x57,0x80,0x23,0x5f,0xc2,0xf2,0x6d,0x2c,
- 0xc8,0xeb,0x2d,0x3f,0xc2,0x82,0x34,0xdc,0x8a,0xf4,0xdd,0x8a,0xb4,0xdd,0xf6,0x12,
- 0xc0,0x51,0x94,0xc3,0x51,0x9c,0x7f,0xc,0xe1,0x1e,0x43,0xfe,0x6e,0x7f,0x4,0xb,
- 0xf2,0x7d,0x7,0xae,0xbf,0xf3,0x28,0xc0,0x20,0xd6,0x43,0x58,0xf,0xa1,0xac,0x87,
- 0x71,0xee,0x30,0xca,0x75,0x18,0xe5,0x37,0x72,0x46,0xfe,0x6f,0xf5,0xbf,0x1,0xb1,
- 0xe0,0x76,0x4a,
- // /media/stoned/SHARED/Git/AO2-Client/resource/translations/ao_de.qm
- 0x0,0x0,0xb4,0x4,
- 0x3c,
- 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0xa7,
- 0x0,0x0,0x0,0x5,0x64,0x65,0x5f,0x44,0x45,0x42,0x0,0x0,0x8,0xd8,0x0,0x0,
- 0x5,0x4f,0x0,0x0,0xa8,0xc3,0x0,0x0,0x44,0x3d,0x0,0x0,0x58,0x7f,0x0,0x0,
- 0x48,0xa,0x0,0x0,0x16,0xc5,0x0,0x0,0x57,0x85,0x0,0x0,0x7c,0xe4,0x0,0x0,
- 0x59,0xd8,0x0,0x0,0x8c,0xa7,0x0,0x0,0x5f,0xc3,0x0,0x0,0xa9,0xf8,0x0,0x4,
- 0xd3,0x0,0x0,0x0,0x71,0x73,0x0,0x5,0x48,0x35,0x0,0x0,0x78,0x6,0x0,0x5,
- 0x48,0x35,0x0,0x0,0xa8,0x9d,0x0,0x5,0x56,0x45,0x0,0x0,0x79,0x2e,0x0,0x5,
- 0x7b,0xba,0x0,0x0,0x3b,0xb1,0x0,0x1d,0xb,0x21,0x0,0x0,0xa9,0xbd,0x0,0x30,
- 0x7f,0x4a,0x0,0x0,0x1a,0xe,0x0,0x33,0x9c,0xa,0x0,0x0,0x1c,0xb6,0x0,0x47,
- 0x96,0xc4,0x0,0x0,0xa5,0xa1,0x0,0x48,0xba,0xff,0x0,0x0,0x14,0xd9,0x0,0x49,
- 0x30,0x73,0x0,0x0,0x5c,0xf3,0x0,0x4c,0x99,0x62,0x0,0x0,0x6f,0xe2,0x0,0x4c,
- 0x99,0x62,0x0,0x0,0xaa,0x53,0x0,0x4e,0xb8,0x84,0x0,0x0,0x72,0x10,0x0,0x54,
- 0xc9,0xf3,0x0,0x0,0x77,0xd9,0x0,0x5a,0x81,0xbe,0x0,0x0,0x91,0x50,0x0,0x5b,
- 0xee,0x2e,0x0,0x0,0x74,0x8d,0x0,0x5c,0xcf,0x9e,0x0,0x0,0x72,0xec,0x0,0x73,
- 0x9c,0x8e,0x0,0x0,0x4f,0x36,0x0,0x74,0x22,0x2e,0x0,0x0,0x2b,0xf9,0x0,0x81,
- 0x97,0x4e,0x0,0x0,0x43,0x6d,0x0,0x8b,0xa2,0x99,0x0,0x0,0x85,0xd4,0x0,0x9a,
- 0x6c,0xca,0x0,0x0,0x1a,0x80,0x0,0xa0,0x39,0x3e,0x0,0x0,0x64,0xe,0x0,0xa5,
- 0x9e,0x4e,0x0,0x0,0x0,0x58,0x0,0xa9,0xc1,0x3e,0x0,0x0,0x55,0x6b,0x0,0xb7,
- 0xb7,0x3e,0x0,0x0,0x8b,0x27,0x0,0xc6,0xda,0xde,0x0,0x0,0x2f,0xd3,0x0,0xd1,
- 0x29,0xfe,0x0,0x0,0x1f,0xdc,0x0,0xf4,0x21,0x9e,0x0,0x0,0x9b,0x5b,0x1,0x8,
- 0x6f,0x91,0x0,0x0,0x8e,0x84,0x1,0x8,0xc3,0x9a,0x0,0x0,0x19,0x67,0x1,0xb,
- 0xd3,0x5e,0x0,0x0,0x77,0x43,0x1,0xe,0x4a,0x51,0x0,0x0,0x61,0xb8,0x1,0x11,
- 0x0,0x3,0x0,0x0,0x68,0x8b,0x1,0x36,0x85,0x9e,0x0,0x0,0x68,0xf4,0x1,0x6a,
- 0x19,0x1a,0x0,0x0,0x47,0x77,0x1,0x6d,0x91,0xe4,0x0,0x0,0x96,0x11,0x1,0x71,
- 0x35,0x8e,0x0,0x0,0x91,0x81,0x1,0x71,0xfc,0x57,0x0,0x0,0xa3,0xcb,0x1,0x90,
- 0x8a,0xff,0x0,0x0,0xa6,0xb3,0x1,0x93,0xcc,0xe7,0x0,0x0,0x8e,0x3d,0x1,0xc6,
- 0x62,0xee,0x0,0x0,0x1b,0x5f,0x1,0xd4,0x4c,0xee,0x0,0x0,0x25,0xd6,0x1,0xec,
- 0xca,0xde,0x0,0x0,0x5f,0x55,0x1,0xf4,0xee,0x2e,0x0,0x0,0x6a,0xd5,0x1,0xf6,
- 0xca,0x3e,0x0,0x0,0x3d,0x93,0x2,0x21,0x83,0xba,0x0,0x0,0x16,0x7,0x2,0x2a,
- 0xb9,0xea,0x0,0x0,0x46,0xa0,0x2,0x48,0x6f,0xbe,0x0,0x0,0x7f,0x5c,0x2,0x5b,
- 0x7c,0x2e,0x0,0x0,0x84,0xef,0x2,0x61,0xf3,0x4e,0x0,0x0,0x3,0xc0,0x2,0x77,
- 0xf8,0xaa,0x0,0x0,0x15,0xc,0x2,0x7c,0x19,0x8a,0x0,0x0,0x16,0x4f,0x2,0x89,
- 0x29,0x7e,0x0,0x0,0x51,0x1b,0x2,0x89,0xc1,0x81,0x0,0x0,0xa1,0x27,0x2,0x92,
- 0x1b,0xfe,0x0,0x0,0x96,0x41,0x2,0xb5,0x2d,0xae,0x0,0x0,0x5d,0x20,0x2,0xc5,
- 0x76,0x61,0x0,0x0,0x0,0x0,0x2,0xc6,0xd5,0xca,0x0,0x0,0x15,0xc1,0x2,0xe6,
- 0xd3,0xa2,0x0,0x0,0x5e,0xc7,0x2,0xf7,0xb3,0xca,0x0,0x0,0x33,0xec,0x3,0x2a,
- 0x59,0x7e,0x0,0x0,0x81,0xbd,0x3,0x32,0x44,0x60,0x0,0x0,0x2d,0xe6,0x3,0x37,
- 0x52,0xde,0x0,0x0,0x63,0x2f,0x3,0x3e,0x21,0x33,0x0,0x0,0x16,0xf2,0x3,0x4c,
- 0x3,0x4e,0x0,0x0,0x69,0xb7,0x3,0x4f,0x76,0x7e,0x0,0x0,0x84,0x39,0x3,0x57,
- 0xb0,0x17,0x0,0x0,0x1,0xb7,0x3,0x57,0xb0,0x17,0x0,0x0,0xa8,0x72,0x3,0x69,
- 0x45,0x7a,0x0,0x0,0x47,0x24,0x3,0x74,0x34,0x8a,0x0,0x0,0x17,0xa0,0x3,0xba,
- 0xa8,0xe5,0x0,0x0,0x74,0x40,0x3,0xca,0x97,0x85,0x0,0x0,0x77,0xc,0x3,0xd6,
- 0xdf,0x45,0x0,0x0,0x3b,0x5d,0x3,0xdb,0x87,0x6a,0x0,0x0,0x34,0x27,0x3,0xe3,
- 0x60,0x4a,0x0,0x0,0x33,0x22,0x3,0xf4,0x58,0xee,0x0,0x0,0x2e,0xc1,0x3,0xf6,
- 0xdf,0x45,0x0,0x0,0x7f,0xe,0x4,0x6,0x4a,0xb1,0x0,0x0,0x72,0x74,0x4,0x8,
- 0xf0,0xbe,0x0,0x0,0x83,0x3d,0x4,0x3f,0x13,0xca,0x0,0x0,0x4a,0xd3,0x4,0x49,
- 0x96,0x8a,0x0,0x0,0x17,0xf4,0x4,0x50,0x17,0xc4,0x0,0x0,0xa,0xe,0x4,0x80,
- 0xda,0x34,0x0,0x0,0x5e,0x52,0x4,0x82,0xfd,0x59,0x0,0x0,0x82,0xef,0x4,0x86,
- 0xaf,0x2e,0x0,0x0,0xb,0xed,0x4,0x87,0xdc,0xba,0x0,0x0,0xf,0x3f,0x4,0x92,
- 0x8,0xb2,0x0,0x0,0x71,0xa5,0x4,0x92,0x65,0x9a,0x0,0x0,0x47,0xd7,0x4,0x93,
- 0x7,0x6a,0x0,0x0,0x16,0x8f,0x4,0x98,0x49,0xbc,0x0,0x0,0xa6,0x81,0x4,0x98,
- 0xa0,0x47,0x0,0x0,0x17,0x35,0x4,0x98,0xa0,0x47,0x0,0x0,0x5f,0x9b,0x4,0x9c,
- 0x6,0xae,0x0,0x0,0x54,0xc6,0x4,0xb8,0x6b,0xe3,0x0,0x0,0xa4,0x7a,0x4,0xd2,
- 0xef,0xfe,0x0,0x0,0x1e,0x31,0x4,0xdd,0x4a,0xde,0x0,0x0,0x28,0xed,0x4,0xe0,
- 0xf6,0x35,0x0,0x0,0x7d,0x48,0x4,0xeb,0x2f,0xa,0x0,0x0,0x32,0xe5,0x4,0xf6,
- 0x74,0xde,0x0,0x0,0x1f,0xc,0x5,0x1b,0xad,0x8a,0x0,0x0,0x32,0x5,0x5,0x1c,
- 0x96,0x5a,0x0,0x0,0x32,0x3f,0x5,0x38,0xaa,0xc2,0x0,0x0,0x76,0xdc,0x5,0x4c,
- 0x9f,0x6a,0x0,0x0,0x38,0x91,0x5,0x56,0xaf,0x95,0x0,0x0,0xaa,0xc9,0x5,0x61,
- 0x3,0x44,0x0,0x0,0xb,0xf,0x5,0x96,0x60,0xba,0x0,0x0,0x14,0x84,0x5,0x9b,
- 0x88,0x98,0x0,0x0,0x84,0xc1,0x5,0x9b,0x88,0x98,0x0,0x0,0xa9,0x57,0x5,0x9c,
- 0x9c,0xc2,0x0,0x0,0x85,0xa4,0x5,0xae,0xc3,0x8a,0x0,0x0,0x4d,0xce,0x5,0xcd,
- 0x30,0x15,0x0,0x0,0xa8,0xe7,0x6,0x26,0x54,0x91,0x0,0x0,0x72,0xb0,0x6,0x2d,
- 0x36,0x3e,0x0,0x0,0x57,0x77,0x6,0x60,0x3a,0x14,0x0,0x0,0x93,0x9a,0x6,0x73,
- 0x98,0x7e,0x0,0x0,0x99,0x1a,0x6,0x83,0xdc,0x2e,0x0,0x0,0x58,0xa6,0x6,0x86,
- 0x8a,0xd9,0x0,0x0,0x74,0xef,0x6,0x8b,0xb5,0x54,0x0,0x0,0x95,0xde,0x6,0xb6,
- 0x6c,0xfe,0x0,0x0,0x82,0x84,0x6,0xc6,0x1c,0x9e,0x0,0x0,0x13,0xa5,0x6,0xd8,
- 0xf0,0x5e,0x0,0x0,0x35,0x20,0x6,0xe4,0x3a,0x33,0x0,0x0,0x8d,0xc5,0x6,0xf2,
- 0x42,0x9a,0x0,0x0,0x4b,0x1a,0x6,0xf8,0x3f,0x1e,0x0,0x0,0x6d,0x4b,0x7,0x1f,
- 0x3b,0x1e,0x0,0x0,0x9e,0xbd,0x7,0x55,0xb3,0xce,0x0,0x0,0x12,0x53,0x7,0x5d,
- 0x43,0x91,0x0,0x0,0x90,0xdc,0x7,0x5e,0xae,0x64,0x0,0x0,0x57,0xdb,0x7,0x5e,
- 0xae,0x74,0x0,0x0,0x58,0x2f,0x7,0x5f,0x40,0x71,0x0,0x0,0x91,0x16,0x7,0x64,
- 0xf9,0x6f,0x0,0x0,0xa5,0x65,0x7,0x6a,0xd3,0xde,0x0,0x0,0x76,0x5a,0x7,0x7e,
- 0x12,0xce,0x0,0x0,0x91,0xeb,0x7,0x8b,0x84,0xad,0x0,0x0,0x7d,0xb,0x7,0x92,
- 0x89,0x9,0x0,0x0,0x88,0xd1,0x7,0x93,0x1e,0x9e,0x0,0x0,0x8b,0xd7,0x7,0x9f,
- 0x6c,0xb3,0x0,0x0,0xa4,0xdd,0x7,0xad,0x58,0x6e,0x0,0x0,0x5d,0xeb,0x7,0xd3,
- 0x14,0x2e,0x0,0x0,0x45,0x4a,0x7,0xdc,0x3d,0xbe,0x0,0x0,0x20,0xe5,0x7,0xe0,
- 0x1a,0x4f,0x0,0x0,0x6e,0xcc,0x7,0xf9,0x3b,0xfa,0x0,0x0,0x9,0x67,0x8,0x2b,
- 0x9,0x3a,0x0,0x0,0x48,0x3b,0x8,0x2e,0x78,0xc4,0x0,0x0,0x5f,0x11,0x8,0x3c,
- 0x76,0x59,0x0,0x0,0x1b,0x29,0x8,0x40,0xf,0xbe,0x0,0x0,0x96,0xe2,0x8,0x48,
- 0x10,0x3e,0x0,0x0,0x48,0xbc,0x8,0x49,0x6f,0x6e,0x0,0x0,0x80,0x8c,0x8,0x66,
- 0x21,0xea,0x0,0x0,0x18,0x4b,0x8,0x72,0x3c,0xfe,0x0,0x0,0x6b,0xe6,0x8,0x82,
- 0xd3,0xb4,0x0,0x0,0xa,0x64,0x8,0x99,0x50,0xfe,0x0,0x0,0xf,0x9b,0x8,0xaa,
- 0xe3,0xe4,0x0,0x0,0x7a,0x75,0x8,0xb3,0x26,0x9e,0x0,0x0,0x27,0x1b,0x8,0xb8,
- 0xa6,0x4a,0x0,0x0,0x7e,0x28,0x8,0xcb,0x30,0x7e,0x0,0x0,0x67,0x65,0x8,0xdc,
- 0xf5,0x2e,0x0,0x0,0x58,0xff,0x8,0xe0,0x7,0x3e,0x0,0x0,0x3a,0xa2,0x8,0xe0,
- 0x7,0x3e,0x0,0x0,0x7e,0x59,0x9,0x4,0x4f,0x11,0x0,0x0,0x7,0xa,0x9,0x13,
- 0x10,0xee,0x0,0x0,0x4b,0x6b,0x9,0x25,0x56,0x7e,0x0,0x0,0x1d,0x0,0x9,0x2d,
- 0xc9,0x42,0x0,0x0,0x1,0xea,0x9,0x3c,0x6,0xae,0x0,0x0,0x60,0xf8,0x9,0x3d,
- 0xef,0x3a,0x0,0x0,0x34,0xd6,0x9,0x42,0x7b,0xe1,0x0,0x0,0xa3,0x8c,0x9,0x45,
- 0x92,0xfe,0x0,0x0,0x39,0xf2,0x9,0x4c,0x8f,0x69,0x0,0x0,0x5b,0x9b,0x9,0x5c,
- 0xb,0x5e,0x0,0x0,0x8f,0x96,0x9,0x65,0x8e,0x11,0x0,0x0,0xaa,0x88,0x9,0x8a,
- 0x4,0xea,0x0,0x0,0x17,0x69,0x9,0x8d,0xf6,0xe1,0x0,0x0,0x79,0x5a,0x9,0xa2,
- 0x27,0x1e,0x0,0x0,0x9e,0x62,0x9,0xae,0xf9,0x3a,0x0,0x0,0x4a,0x90,0x9,0xbb,
- 0x17,0xd1,0x0,0x0,0x8,0x61,0x9,0xc8,0xb4,0xb9,0x0,0x0,0x73,0xf8,0x9,0xf7,
- 0x73,0xca,0x0,0x0,0x34,0x78,0x9,0xf8,0xba,0xe,0x0,0x0,0x70,0x11,0x9,0xfb,
- 0x69,0xba,0x0,0x0,0x19,0xa,0x9,0xfe,0x27,0x8a,0x0,0x0,0x15,0x53,0xa,0x21,
- 0x3c,0x1e,0x0,0x0,0x56,0xa6,0xa,0x25,0xf3,0x8e,0x0,0x0,0x11,0x1c,0xa,0x30,
- 0x34,0xee,0x0,0x0,0x9a,0x51,0xa,0x30,0x34,0xee,0x0,0x0,0xaa,0x19,0xa,0x35,
- 0x5e,0x71,0x0,0x0,0x5e,0x82,0xa,0x50,0xfd,0xce,0x0,0x0,0x2,0xa4,0xa,0x7b,
- 0x45,0x52,0x0,0x0,0xa9,0x16,0xa,0x85,0xfd,0xa9,0x0,0x0,0x7a,0x2b,0xa,0x95,
- 0x12,0xfe,0x0,0x0,0x37,0x1e,0xa,0x9c,0x9,0x81,0x0,0x0,0xa2,0xdc,0xa,0xb0,
- 0xb4,0xb5,0x0,0x0,0x59,0xa7,0xa,0xbc,0x8c,0x74,0x0,0x0,0x6b,0x3f,0xa,0xd7,
- 0x53,0x8a,0x0,0x0,0x33,0x85,0xa,0xe3,0xe2,0x14,0x0,0x0,0x7a,0xab,0xa,0xe5,
- 0x47,0xba,0x0,0x0,0x38,0xc7,0xa,0xf8,0x17,0x4,0x0,0x0,0xa,0xb5,0xb,0x14,
- 0x21,0x9,0x0,0x0,0x5a,0x9a,0xb,0x2a,0x64,0x7e,0x0,0x0,0x9c,0xd0,0xb,0x33,
- 0xc3,0x8e,0x0,0x0,0x6d,0xe7,0xb,0xa3,0x6,0x39,0x0,0x0,0xa5,0x17,0xb,0xa7,
- 0x67,0xe7,0x0,0x0,0xb,0x72,0xb,0xaa,0xd1,0x2,0x0,0x0,0x8e,0x4,0xb,0xaf,
- 0xbd,0x1,0x0,0x0,0x79,0x96,0xb,0xb7,0xd2,0xfe,0x0,0x0,0x27,0xf8,0xb,0xc1,
- 0x4f,0x8e,0x0,0x0,0x50,0xd,0xb,0xc8,0x17,0x9a,0x0,0x0,0x31,0xa7,0xb,0xcc,
- 0x5d,0x2a,0x0,0x0,0x19,0xc8,0xb,0xd2,0xf0,0x2e,0x0,0x0,0x0,0xbb,0xb,0xf8,
- 0x7e,0x2e,0x0,0x0,0x6c,0x8e,0xc,0x1b,0xfe,0x7e,0x0,0x0,0x52,0x73,0xc,0x2d,
- 0x1a,0xf1,0x0,0x0,0xa3,0x4e,0xc,0x38,0x78,0xde,0x0,0x0,0x40,0xc7,0xc,0x3a,
- 0x32,0x3e,0x0,0x0,0x4e,0x4,0xc,0x46,0x2c,0xc3,0x0,0x0,0x8f,0x8,0xc,0x54,
- 0x5d,0xa2,0x0,0x0,0x5f,0xc7,0xc,0x55,0xec,0x1e,0x0,0x0,0x39,0x2f,0xc,0x65,
- 0x27,0x6e,0x0,0x0,0x4c,0xe6,0xc,0x78,0x8e,0x4e,0x0,0x0,0x7b,0x2f,0xc,0x7a,
- 0x74,0xbe,0x0,0x0,0x70,0xe1,0xc,0x7f,0xf2,0x1e,0x0,0x0,0x5b,0xe6,0xc,0x86,
- 0x7,0x3e,0x0,0x0,0x60,0x15,0xc,0xbb,0x1,0x73,0x0,0x0,0x46,0x5a,0xc,0xbb,
- 0x1,0x73,0x0,0x0,0x8c,0x67,0xc,0xbb,0x1,0x73,0x0,0x0,0xa9,0x81,0xc,0xbd,
- 0x72,0x9e,0x0,0x0,0xa2,0x37,0xc,0xe0,0xa9,0xbe,0x0,0x0,0x78,0xb4,0xc,0xe2,
- 0xdf,0x55,0x0,0x0,0x6b,0x74,0xc,0xf9,0x5e,0xae,0x0,0x0,0x92,0xb3,0xc,0xfe,
- 0x9c,0x9e,0x0,0x0,0x2d,0x40,0xd,0x4,0x5f,0x59,0x0,0x0,0x75,0x44,0xd,0xf,
- 0x4e,0x6e,0x0,0x0,0x42,0x3,0xd,0x4c,0x1d,0x31,0x0,0x0,0x79,0xd2,0xd,0x58,
- 0x98,0x6e,0x0,0x0,0x99,0xb6,0xd,0x9a,0x50,0xf3,0x0,0x0,0x78,0x30,0xd,0xd4,
- 0x95,0x41,0x0,0x0,0x9f,0x2f,0xd,0xd7,0xfc,0x1e,0x0,0x0,0x23,0xee,0xd,0xe6,
- 0x8f,0x6a,0x0,0x0,0x1a,0xbc,0xd,0xec,0xf9,0xc3,0x0,0x0,0x71,0x1a,0xd,0xfd,
- 0xd,0x22,0x0,0x0,0x9,0x19,0xe,0x13,0x1f,0xfe,0x0,0x0,0x3f,0xa2,0xe,0x30,
- 0x3,0xa5,0x0,0x0,0xa4,0x1a,0xe,0x30,0x6d,0x3e,0x0,0x0,0x53,0x9c,0xe,0x44,
- 0x82,0x3a,0x0,0x0,0x32,0x73,0xe,0x7e,0xd9,0xce,0x0,0x0,0x41,0x5e,0xe,0x87,
- 0xe7,0x64,0x0,0x0,0x9,0xae,0xe,0x89,0xf0,0x4e,0x0,0x0,0x8c,0xce,0xe,0x9f,
- 0x90,0x9e,0x0,0x0,0x59,0xe3,0xe,0x9f,0x90,0x9e,0x0,0x0,0xa5,0xc8,0xe,0xa8,
- 0x94,0x77,0x0,0x0,0x7a,0xe3,0xe,0xb1,0x2b,0xce,0x0,0x0,0x4e,0xa7,0xe,0xb2,
- 0x85,0xee,0x0,0x0,0x2a,0x4c,0xe,0xb4,0x8c,0x1,0x0,0x0,0x7,0xaf,0xe,0xc0,
- 0x3b,0xf1,0x0,0x0,0x72,0x3d,0xe,0xd0,0x9d,0x8e,0x0,0x0,0x7b,0xdb,0xe,0xdc,
- 0xdd,0xce,0x0,0x0,0x22,0xe2,0xe,0xf1,0x38,0xce,0x0,0x0,0x81,0x31,0xe,0xff,
- 0xbf,0x42,0x0,0x0,0x2,0x4c,0xf,0x2,0x2,0x21,0x0,0x0,0x97,0xdb,0xf,0x47,
- 0x35,0x8e,0x0,0x0,0x21,0xe0,0xf,0x48,0xb8,0x5a,0x0,0x0,0x18,0xb3,0xf,0x55,
- 0xd9,0xd1,0x0,0x0,0x6a,0x82,0xf,0x60,0xe2,0x5e,0x0,0x0,0x3b,0xe1,0xf,0x66,
- 0x94,0x9e,0x0,0x0,0x67,0x31,0xf,0x6e,0x43,0xa5,0x0,0x0,0x8d,0x89,0xf,0xa1,
- 0x93,0xca,0x0,0x0,0x46,0xe7,0xf,0xaf,0x1f,0x4f,0x0,0x0,0x6f,0x57,0xf,0xb3,
- 0xad,0xaa,0x0,0x0,0x3a,0x64,0xf,0xc6,0x3f,0xf3,0x0,0x0,0x70,0x7c,0xf,0xcb,
- 0x37,0xde,0x0,0x0,0x24,0xef,0xf,0xd2,0xf,0x4e,0x0,0x0,0x30,0xd6,0xf,0xd3,
- 0x69,0x3e,0x0,0x0,0x42,0xf5,0xf,0xe9,0x8a,0xbe,0x0,0x0,0x90,0x16,0xf,0xef,
- 0x55,0x95,0x0,0x0,0x90,0x95,0xf,0xf4,0x81,0xe1,0x0,0x0,0x9a,0x88,0xf,0xfd,
- 0x3b,0x5a,0x0,0x0,0xe,0xeb,0x69,0x0,0x0,0xab,0x1,0x3,0x0,0x0,0x0,0x24,
- 0x0,0x41,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6e,0x0,0x65,0x0,0x79,
- 0x0,0x20,0x0,0x4f,0x0,0x6e,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,
- 0x0,0x25,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x41,0x74,
- 0x74,0x6f,0x72,0x6e,0x65,0x79,0x20,0x4f,0x6e,0x6c,0x69,0x6e,0x65,0x20,0x25,0x31,
- 0x7,0x0,0x0,0x0,0xd,0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,
- 0x6f,0x6e,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x56,0x0,0x6f,0x0,0x6d,0x0,0x20,
- 0x0,0x53,0x0,0x65,0x0,0x72,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x67,
- 0x0,0x65,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x74,0x0,0x2e,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x44,0x69,0x73,0x63,0x6f,0x6e,
- 0x6e,0x65,0x63,0x74,0x65,0x64,0x20,0x66,0x72,0x6f,0x6d,0x20,0x73,0x65,0x72,0x76,
- 0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0xd,0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,0x63,
- 0x61,0x74,0x69,0x6f,0x6e,0x1,0x3,0x0,0x0,0x0,0x9a,0x0,0x46,0x0,0x65,0x0,
- 0x68,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x69,0x0,
- 0x20,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x56,0x0,0x65,0x0,0x72,0x0,
- 0x62,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x75,0x0,0x6e,0x0,0x67,0x0,0x20,0x0,
- 0x7a,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x4d,0x0,0x61,0x0,0x73,0x0,0x74,0x0,
- 0x65,0x0,0x72,0x0,0x20,0x0,0x53,0x0,0x65,0x0,0x72,0x0,0x76,0x0,0x65,0x0,
- 0x72,0x0,0x2e,0x0,0x20,0x0,0x45,0x0,0x72,0x0,0x6e,0x0,0x65,0x0,0x75,0x0,
- 0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x73,0x0,
- 0x75,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x25,0x0,
- 0x31,0x0,0x20,0x0,0x53,0x0,0x65,0x0,0x6b,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,
- 0x65,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x40,0x45,
- 0x72,0x72,0x6f,0x72,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6e,0x67,0x20,
- 0x74,0x6f,0x20,0x6d,0x61,0x73,0x74,0x65,0x72,0x20,0x73,0x65,0x72,0x76,0x65,0x72,
- 0x2e,0x20,0x57,0x69,0x6c,0x6c,0x20,0x74,0x72,0x79,0x20,0x61,0x67,0x61,0x69,0x6e,
- 0x20,0x69,0x6e,0x20,0x25,0x31,0x20,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x2e,0x7,
- 0x0,0x0,0x0,0xd,0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,
- 0x6e,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x4c,0x0,0x61,0x0,0x64,0x0,0x65,0x0,
- 0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4c,0x6f,0x61,0x64,0x69,
- 0x6e,0x67,0x7,0x0,0x0,0x0,0xd,0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,0x63,0x61,
- 0x74,0x69,0x6f,0x6e,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x4c,0x0,0x61,0x0,0x64,
- 0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6b,
- 0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x3a,0x0,0xa,0x0,0x25,0x0,0x31,
- 0x0,0x2f,0x0,0x25,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,
- 0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x63,0x68,0x61,0x72,0x73,0x3a,0xa,0x25,
- 0x31,0x2f,0x25,0x32,0x7,0x0,0x0,0x0,0xd,0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,
- 0x63,0x61,0x74,0x69,0x6f,0x6e,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x4c,0x0,0x61,
- 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x4d,0x0,0x75,0x0,0x73,0x0,0x69,0x0,0x6b,
- 0x0,0x3a,0x0,0xa,0x0,0x25,0x0,0x31,0x0,0x2f,0x0,0x25,0x0,0x32,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,
- 0x6d,0x75,0x73,0x69,0x63,0x3a,0xa,0x25,0x31,0x2f,0x25,0x32,0x7,0x0,0x0,0x0,
- 0xd,0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x1,0x3,
- 0x0,0x0,0x0,0xaa,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x69,0x0,0x6f,
- 0x0,0x6e,0x0,0x20,0x0,0x7a,0x0,0x75,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x74,
- 0x0,0x21,0x0,0x20,0x0,0x44,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,
- 0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x3a,
- 0x0,0x20,0x0,0x25,0x0,0x31,0x0,0xa,0x0,0x42,0x0,0x69,0x0,0x74,0x0,0x74,
- 0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x73,0x0,0x75,0x0,0x63,0x0,0x68,
- 0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x63,0x0,0x65,0x0,0x61,0x0,0x74,0x0,0x74,
- 0x0,0x6f,0x0,0x72,0x0,0x6e,0x0,0x65,0x0,0x79,0x0,0x6f,0x0,0x6e,0x0,0x6c,
- 0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x2e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x20,
- 0x0,0x66,0x0,0xfc,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x20,
- 0x0,0x55,0x0,0x70,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x2e,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x50,0x4f,0x75,0x74,0x64,0x61,0x74,0x65,0x64,
- 0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x21,0x20,0x59,0x6f,0x75,0x72,0x20,0x76,
- 0x65,0x72,0x73,0x69,0x6f,0x6e,0x3a,0x20,0x25,0x31,0xa,0x50,0x6c,0x65,0x61,0x73,
- 0x65,0x20,0x67,0x6f,0x20,0x74,0x6f,0x20,0x61,0x63,0x65,0x61,0x74,0x74,0x6f,0x72,
- 0x6e,0x65,0x79,0x6f,0x6e,0x6c,0x69,0x6e,0x65,0x2e,0x63,0x6f,0x6d,0x20,0x74,0x6f,
- 0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x2e,0x7,0x0,0x0,0x0,0xd,0x41,0x4f,0x41,
- 0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x1,0x3,0x0,0x0,0x2,0x6,
- 0x0,0x45,0x0,0x73,0x0,0x20,0x0,0x67,0x0,0x61,0x0,0x62,0x0,0x20,0x0,0x65,
- 0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x46,0x0,0x65,0x0,0x68,
- 0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x69,0x0,0x6d,
- 0x0,0x20,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x62,0x0,0x69,0x0,0x6e,0x0,0x64,
- 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x7a,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x4d,
- 0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x53,0x0,0x65,
- 0x0,0x72,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x2e,0x0,0xa,0x0,0x57,0x0,0x69,
- 0x0,0x72,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x77,0x0,0x65,0x0,0x6e,
- 0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x68,0x0,0x72,
- 0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x4d,0x0,0x61,0x0,0x73,0x0,0x74,
- 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x53,0x0,0x65,0x0,0x72,0x0,0x76,0x0,0x65,
- 0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x41,0x0,0x75,0x0,0x73,
- 0x0,0x66,0x0,0xe4,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x75,
- 0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x64,
- 0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x2c,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x64,
- 0x0,0x6f,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x74,0x0,0x20,
- 0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x43,0x0,0x6c,0x0,0x69,0x0,0x65,
- 0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x20,
- 0x0,0x4d,0x0,0xf6,0x0,0x67,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x6b,
- 0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x69,
- 0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x7a,0x0,0x75,0x0,0x20,0x0,0x66,
- 0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x72,
- 0x0,0x73,0x0,0x63,0x0,0x68,0x0,0xf6,0x0,0x70,0x0,0x66,0x0,0x74,0x0,0x2e,
- 0x0,0xa,0x0,0x42,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x70,
- 0x0,0x72,0x0,0xfc,0x0,0x66,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x69,
- 0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,
- 0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x62,0x0,0x69,
- 0x0,0x6e,0x0,0x64,0x0,0x75,0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x75,0x0,0x6e,
- 0x0,0x64,0x0,0x20,0x0,0x46,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x77,0x0,0x61,
- 0x0,0x6c,0x0,0x6c,0x0,0x2c,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x20,
- 0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x75,0x0,0x63,0x0,0x68,0x0,0x65,
- 0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x65,
- 0x0,0x75,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0x22,
- 0x54,0x68,0x65,0x72,0x65,0x20,0x77,0x61,0x73,0x20,0x61,0x6e,0x20,0x65,0x72,0x72,
- 0x6f,0x72,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6e,0x67,0x20,0x74,0x6f,
- 0x20,0x74,0x68,0x65,0x20,0x6d,0x61,0x73,0x74,0x65,0x72,0x20,0x73,0x65,0x72,0x76,
- 0x65,0x72,0x2e,0xa,0x57,0x65,0x20,0x64,0x65,0x70,0x6c,0x6f,0x79,0x20,0x6d,0x75,
- 0x6c,0x74,0x69,0x70,0x6c,0x65,0x20,0x6d,0x61,0x73,0x74,0x65,0x72,0x20,0x73,0x65,
- 0x72,0x76,0x65,0x72,0x73,0x20,0x74,0x6f,0x20,0x6d,0x69,0x74,0x69,0x67,0x61,0x74,
- 0x65,0x20,0x61,0x6e,0x79,0x20,0x70,0x6f,0x73,0x73,0x69,0x62,0x6c,0x65,0x20,0x64,
- 0x6f,0x77,0x6e,0x74,0x69,0x6d,0x65,0x2c,0x20,0x62,0x75,0x74,0x20,0x74,0x68,0x65,
- 0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,0x20,0x61,0x70,0x70,0x65,0x61,0x72,0x73,0x20,
- 0x74,0x6f,0x20,0x68,0x61,0x76,0x65,0x20,0x65,0x78,0x68,0x61,0x75,0x73,0x74,0x65,
- 0x64,0x20,0x61,0x6c,0x6c,0x20,0x70,0x6f,0x73,0x73,0x69,0x62,0x6c,0x65,0x20,0x6d,
- 0x65,0x74,0x68,0x6f,0x64,0x73,0x20,0x6f,0x66,0x20,0x66,0x69,0x6e,0x64,0x69,0x6e,
- 0x67,0x20,0x61,0x6e,0x64,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6e,0x67,
- 0x20,0x74,0x6f,0x20,0x6f,0x6e,0x65,0x2e,0xa,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,
- 0x63,0x68,0x65,0x63,0x6b,0x20,0x79,0x6f,0x75,0x72,0x20,0x49,0x6e,0x74,0x65,0x72,
- 0x6e,0x65,0x74,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,
- 0x6e,0x64,0x20,0x66,0x69,0x72,0x65,0x77,0x61,0x6c,0x6c,0x2c,0x20,0x61,0x6e,0x64,
- 0x20,0x70,0x6c,0x65,0x61,0x73,0x65,0x20,0x74,0x72,0x79,0x20,0x61,0x67,0x61,0x69,
- 0x6e,0x2e,0x7,0x0,0x0,0x0,0xd,0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,0x63,0x61,
- 0x74,0x69,0x6f,0x6e,0x1,0x3,0x0,0x0,0x0,0x5a,0x0,0x44,0x0,0x75,0x0,0x20,
- 0x0,0x62,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x6e,
- 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x6d,0x0,0x20,
- 0x0,0x53,0x0,0x65,0x0,0x72,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x76,
- 0x0,0x65,0x0,0x72,0x0,0x62,0x0,0x61,0x0,0x6e,0x0,0x6e,0x0,0x74,0x0,0x2e,
- 0x0,0xa,0x0,0x47,0x0,0x72,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x3a,0x0,0x20,
- 0x0,0x25,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x29,0x59,0x6f,
- 0x75,0x20,0x61,0x72,0x65,0x20,0x62,0x61,0x6e,0x6e,0x65,0x64,0x20,0x6f,0x6e,0x20,
- 0x74,0x68,0x69,0x73,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x2e,0xa,0x52,0x65,0x61,
- 0x73,0x6f,0x6e,0x3a,0x20,0x25,0x31,0x7,0x0,0x0,0x0,0xd,0x41,0x4f,0x41,0x70,
- 0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x1,0x3,0x0,0x0,0x0,0x60,0x0,
- 0x44,0x0,0x75,0x0,0x20,0x0,0x77,0x0,0x75,0x0,0x72,0x0,0x64,0x0,0x65,0x0,
- 0x73,0x0,0x74,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,
- 0x69,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x65,0x0,
- 0x72,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,
- 0x62,0x0,0x61,0x0,0x6e,0x0,0x6e,0x0,0x74,0x0,0x2e,0x0,0xa,0x0,0x47,0x0,
- 0x72,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x31,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x30,0x59,0x6f,0x75,0x20,0x68,0x61,0x76,
- 0x65,0x20,0x62,0x65,0x65,0x6e,0x20,0x62,0x61,0x6e,0x6e,0x65,0x64,0x20,0x66,0x72,
- 0x6f,0x6d,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x2e,0xa,0x52,
- 0x65,0x61,0x73,0x6f,0x6e,0x3a,0x20,0x25,0x31,0x7,0x0,0x0,0x0,0xd,0x41,0x4f,
- 0x41,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x1,0x3,0x0,0x0,0x0,
- 0x66,0x0,0x44,0x0,0x75,0x0,0x20,0x0,0x77,0x0,0x75,0x0,0x72,0x0,0x64,0x0,
- 0x65,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,
- 0x64,0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x53,0x0,
- 0x65,0x0,0x72,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x67,0x0,0x65,0x0,
- 0x73,0x0,0x63,0x0,0x68,0x0,0x6d,0x0,0x69,0x0,0x73,0x0,0x73,0x0,0x65,0x0,
- 0x6e,0x0,0x2e,0x0,0xa,0x0,0x47,0x0,0x72,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,
- 0x3a,0x0,0x20,0x0,0x25,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x30,0x59,0x6f,0x75,0x20,0x68,0x61,0x76,0x65,0x20,0x62,0x65,0x65,0x6e,0x20,0x6b,
- 0x69,0x63,0x6b,0x65,0x64,0x20,0x66,0x72,0x6f,0x6d,0x20,0x74,0x68,0x65,0x20,0x73,
- 0x65,0x72,0x76,0x65,0x72,0x2e,0xa,0x52,0x65,0x61,0x73,0x6f,0x6e,0x3a,0x20,0x25,
- 0x31,0x7,0x0,0x0,0x0,0xd,0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,
- 0x69,0x6f,0x6e,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x46,0x0,0x61,0x0,0x6c,0x0,
- 0x6c,0x0,0x61,0x0,0x6e,0x0,0x73,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x72,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x43,0x61,0x73,0x65,0x20,0x41,0x6e,
- 0x6e,0x6f,0x75,0x6e,0x63,0x65,0x72,0x7,0x0,0x0,0x0,0x15,0x41,0x4f,0x43,0x61,
- 0x73,0x65,0x41,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x72,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x46,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,
- 0x6e,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0xb,0x43,0x61,0x73,0x65,0x20,0x74,0x69,0x74,0x6c,0x65,0x3a,0x7,0x0,
- 0x0,0x0,0x15,0x41,0x4f,0x43,0x61,0x73,0x65,0x41,0x6e,0x6e,0x6f,0x75,0x6e,0x63,
- 0x65,0x72,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x56,
- 0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x69,0x0,0x64,0x0,0x69,0x0,0x67,
- 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x6e,0x0,0xf6,0x0,0x74,
- 0x0,0x69,0x0,0x67,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,
- 0x44,0x65,0x66,0x65,0x6e,0x73,0x65,0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x7,0x0,
- 0x0,0x0,0x15,0x41,0x4f,0x43,0x61,0x73,0x65,0x41,0x6e,0x6e,0x6f,0x75,0x6e,0x63,
- 0x65,0x72,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x52,
- 0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x62,
- 0x0,0x65,0x0,0x6e,0x0,0xf6,0x0,0x74,0x0,0x69,0x0,0x67,0x0,0x74,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4a,0x75,0x64,0x67,0x65,0x20,0x6e,0x65,
- 0x65,0x64,0x65,0x64,0x7,0x0,0x0,0x0,0x15,0x41,0x4f,0x43,0x61,0x73,0x65,0x41,
- 0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x72,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,
- 0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0x75,0x0,0x72,0x0,0x79,0x0,0x20,0x0,0x62,
- 0x0,0x65,0x0,0x6e,0x0,0xf6,0x0,0x74,0x0,0x69,0x0,0x67,0x0,0x74,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x75,0x72,0x6f,0x72,0x73,0x20,0x6e,
- 0x65,0x65,0x64,0x65,0x64,0x7,0x0,0x0,0x0,0x15,0x41,0x4f,0x43,0x61,0x73,0x65,
- 0x41,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x72,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,
- 0x3,0x0,0x0,0x0,0x1e,0x0,0x4b,0x0,0x6c,0x0,0xe4,0x0,0x67,0x0,0x65,0x0,
- 0x72,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x6e,0x0,0xf6,0x0,0x74,0x0,0x69,0x0,
- 0x67,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x6f,
- 0x73,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x7,
- 0x0,0x0,0x0,0x15,0x41,0x4f,0x43,0x61,0x73,0x65,0x41,0x6e,0x6e,0x6f,0x75,0x6e,
- 0x63,0x65,0x72,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x26,0x0,
- 0x53,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,
- 0x70,0x0,0x68,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x6e,0x0,0xf6,0x0,0x74,0x0,
- 0x69,0x0,0x67,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x53,
- 0x74,0x65,0x6e,0x6f,0x67,0x72,0x61,0x70,0x68,0x65,0x72,0x20,0x6e,0x65,0x65,0x64,
- 0x65,0x64,0x7,0x0,0x0,0x0,0x15,0x41,0x4f,0x43,0x61,0x73,0x65,0x41,0x6e,0x6e,
- 0x6f,0x75,0x6e,0x63,0x65,0x72,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,
- 0x0,0x40,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x61,0x0,0x6b,0x0,0x74,0x0,0x75,
- 0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x45,0x0,0x69,0x0,0x6e,
- 0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x75,0x0,0x6e,0x0,0x67,
- 0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x68,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x65,
- 0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x20,0x2d,0x20,0x4b,
- 0x65,0x65,0x70,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x73,0x65,0x74,0x74,
- 0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,
- 0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x1,0xc8,0x0,0x3c,0x0,
- 0x68,0x0,0x74,0x0,0x6d,0x0,0x6c,0x0,0x3e,0x0,0x3c,0x0,0x68,0x0,0x65,0x0,
- 0x61,0x0,0x64,0x0,0x2f,0x0,0x3e,0x0,0x3c,0x0,0x62,0x0,0x6f,0x0,0x64,0x0,
- 0x79,0x0,0x3e,0x0,0x47,0x0,0x69,0x0,0x62,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,
- 0x20,0x0,0x76,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x41,0x0,
- 0x6c,0x0,0x61,0x0,0x72,0x0,0x6d,0x0,0x77,0x0,0xf6,0x0,0x72,0x0,0x74,0x0,
- 0x65,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x77,0x0,
- 0x69,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x6d,0x0,0xf6,0x0,
- 0x63,0x0,0x68,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x2e,0x0,0x20,0x0,
- 0x47,0x0,0x72,0x0,0x6f,0x0,0xdf,0x0,0x2f,0x0,0x4b,0x0,0x6c,0x0,0x65,0x0,
- 0x69,0x0,0x6e,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x65,0x0,0x69,0x0,
- 0x62,0x0,0x75,0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x74,0x0,
- 0x20,0x0,0x65,0x0,0x67,0x0,0x61,0x0,0x6c,0x0,0x2e,0x0,0x20,0x0,0x46,0x0,
- 0xfc,0x0,0x72,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x20,0x0,
- 0x57,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x6e,0x0,0x75,0x0,0x72,0x0,
- 0x20,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x5a,0x0,0x65,0x0,
- 0x69,0x0,0x6c,0x0,0x65,0x0,0x21,0x0,0x3c,0x0,0x62,0x0,0x72,0x0,0x3e,0x0,
- 0x42,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6b,0x0,0x65,0x0,
- 0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x65,0x0,0x72,0x0,
- 0x65,0x0,0x20,0x0,0x5a,0x0,0x65,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,
- 0x61,0x0,0x6d,0x0,0x20,0x0,0x45,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x20,0x0,
- 0x2d,0x0,0x2d,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x62,0x0,0x65,0x0,
- 0x6b,0x0,0x6f,0x0,0x6d,0x0,0x6d,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x73,0x0,
- 0x6f,0x0,0x6e,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x69,0x0,
- 0x20,0x0,0x6a,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x4e,0x0,
- 0x61,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0,
- 0x20,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x41,0x0,
- 0x6c,0x0,0x61,0x0,0x72,0x0,0x6d,0x0,0x2e,0x0,0x3c,0x0,0x2f,0x0,0x62,0x0,
- 0x6f,0x0,0x64,0x0,0x79,0x0,0x3e,0x0,0x3c,0x0,0x2f,0x0,0x68,0x0,0x74,0x0,
- 0x6d,0x0,0x6c,0x0,0x3e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0x12,0x3c,
- 0x68,0x74,0x6d,0x6c,0x3e,0x3c,0x68,0x65,0x61,0x64,0x2f,0x3e,0x3c,0x62,0x6f,0x64,
- 0x79,0x3e,0x45,0x6e,0x74,0x65,0x72,0x20,0x61,0x73,0x20,0x6d,0x61,0x6e,0x79,0x20,
- 0x63,0x61,0x6c,0x6c,0x77,0x6f,0x72,0x64,0x73,0x20,0x61,0x73,0x20,0x79,0x6f,0x75,
- 0x20,0x77,0x6f,0x75,0x6c,0x64,0x20,0x6c,0x69,0x6b,0x65,0x2e,0x20,0x54,0x68,0x65,
- 0x73,0x65,0x20,0x61,0x72,0x65,0x20,0x63,0x61,0x73,0x65,0x20,0x69,0x6e,0x73,0x65,
- 0x6e,0x73,0x69,0x74,0x69,0x76,0x65,0x2e,0x20,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,
- 0x72,0x65,0x20,0x74,0x6f,0x20,0x6c,0x65,0x61,0x76,0x65,0x20,0x65,0x76,0x65,0x72,
- 0x79,0x20,0x63,0x61,0x6c,0x6c,0x77,0x6f,0x72,0x64,0x20,0x69,0x6e,0x20,0x69,0x74,
- 0x73,0x20,0x6f,0x77,0x6e,0x20,0x6c,0x69,0x6e,0x65,0x21,0x3c,0x62,0x72,0x3e,0x44,
- 0x6f,0x20,0x6e,0x6f,0x74,0x20,0x6c,0x65,0x61,0x76,0x65,0x20,0x61,0x20,0x6c,0x69,
- 0x6e,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x20,0x73,0x70,0x61,0x63,0x65,0x20,
- 0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6e,0x64,0x20,0x2d,0x2d,0x20,0x79,0x6f,
- 0x75,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x61,0x6c,0x65,0x72,0x74,0x65,
- 0x64,0x20,0x65,0x76,0x65,0x72,0x79,0x74,0x69,0x6d,0x65,0x20,0x73,0x6f,0x6d,0x65,
- 0x6f,0x6e,0x65,0x20,0x75,0x73,0x65,0x73,0x20,0x61,0x20,0x73,0x70,0x61,0x63,0x65,
- 0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x69,0x72,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,
- 0x65,0x73,0x2e,0x3c,0x2f,0x62,0x6f,0x64,0x79,0x3e,0x3c,0x2f,0x68,0x74,0x6d,0x6c,
- 0x3e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,
- 0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x45,0x0,0x66,0x0,
- 0x66,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x72,0x0,
- 0x6c,0x0,0x61,0x0,0x75,0x0,0x62,0x0,0x65,0x0,0x6e,0x0,0x3a,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x41,0x6c,0x6c,0x6f,0x77,0x20,0x45,0x66,0x66,
- 0x65,0x63,0x74,0x73,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,
- 0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x26,0x0,
- 0x53,0x0,0x63,0x0,0x68,0x0,0xfc,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,
- 0x6e,0x0,0x20,0x0,0x65,0x0,0x72,0x0,0x6c,0x0,0x61,0x0,0x75,0x0,0x62,0x0,
- 0x65,0x0,0x6e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x41,
- 0x6c,0x6c,0x6f,0x77,0x20,0x53,0x63,0x72,0x65,0x65,0x6e,0x73,0x68,0x61,0x6b,0x65,
- 0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,
- 0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xde,0x0,0x45,0x0,0x72,0x0,
- 0x6c,0x0,0x61,0x0,0x75,0x0,0x62,0x0,0x74,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,
- 0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x75,0x0,
- 0x66,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,
- 0x64,0x0,0x20,0x0,0x7a,0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x68,0x0,
- 0x65,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x66,0x0,0x20,0x0,0x77,0x0,
- 0x65,0x0,0x6c,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x53,0x0,
- 0x65,0x0,0x72,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x75,0x0,
- 0x20,0x0,0x73,0x0,0x70,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x73,0x0,0x74,0x0,
- 0x2c,0x0,0x20,0x0,0x77,0x0,0x65,0x0,0x6c,0x0,0x63,0x0,0x68,0x0,0x65,0x0,
- 0x6e,0x0,0x20,0x0,0x43,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6b,0x0,
- 0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x73,0x0,
- 0x70,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x75,0x0,
- 0x6e,0x0,0x64,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,
- 0x61,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x7f,0x41,0x6c,0x6c,0x6f,0x77,0x73,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,
- 0x20,0x6f,0x6e,0x20,0x44,0x69,0x73,0x63,0x6f,0x72,0x64,0x20,0x74,0x6f,0x20,0x73,
- 0x65,0x65,0x20,0x77,0x68,0x61,0x74,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x20,0x79,
- 0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x69,0x6e,0x2c,0x20,0x77,0x68,0x61,0x74,0x20,
- 0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x20,0x61,0x72,0x65,0x20,0x79,0x6f,
- 0x75,0x20,0x70,0x6c,0x61,0x79,0x69,0x6e,0x67,0x2c,0x20,0x61,0x6e,0x64,0x20,0x68,
- 0x6f,0x77,0x20,0x6c,0x6f,0x6e,0x67,0x20,0x79,0x6f,0x75,0x20,0x68,0x61,0x76,0x65,
- 0x20,0x62,0x65,0x65,0x6e,0x20,0x70,0x6c,0x61,0x79,0x69,0x6e,0x67,0x20,0x66,0x6f,
- 0x72,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,
- 0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xaa,0x0,0x45,0x0,0x72,
- 0x0,0x6c,0x0,0x61,0x0,0x75,0x0,0x62,0x0,0x74,0x0,0x20,0x0,0x42,0x0,0x69,
- 0x0,0x6c,0x0,0x64,0x0,0x65,0x0,0x66,0x0,0x66,0x0,0x65,0x0,0x6b,0x0,0x74,
- 0x0,0x65,0x0,0x2e,0x0,0x20,0x0,0x44,0x0,0x65,0x0,0x61,0x0,0x6b,0x0,0x74,
- 0x0,0x69,0x0,0x76,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x64,
- 0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x6c,0x0,0x6c,
- 0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x42,0x0,0x65,0x0,0x64,
- 0x0,0x65,0x0,0x6e,0x0,0x6b,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x77,0x0,0x65,
- 0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x50,0x0,0x68,0x0,0x6f,0x0,0x74,
- 0x0,0x6f,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,
- 0x0,0x76,0x0,0x69,0x0,0x74,0x0,0xe4,0x0,0x74,0x0,0x20,0x0,0x68,0x0,0x61,
- 0x0,0x73,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x69,
- 0x41,0x6c,0x6c,0x6f,0x77,0x73,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x65,0x66,
- 0x66,0x65,0x63,0x74,0x73,0x2e,0x20,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x20,0x74,
- 0x68,0x69,0x73,0x20,0x69,0x66,0x20,0x79,0x6f,0x75,0x20,0x68,0x61,0x76,0x65,0x20,
- 0x63,0x6f,0x6e,0x63,0x65,0x72,0x6e,0x73,0x20,0x6f,0x72,0x20,0x69,0x73,0x73,0x75,
- 0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x70,0x68,0x6f,0x74,0x6f,0x73,0x65,0x6e,
- 0x73,0x69,0x74,0x69,0x76,0x69,0x74,0x79,0x20,0x61,0x6e,0x64,0x2f,0x6f,0x72,0x20,
- 0x73,0x65,0x69,0x7a,0x75,0x72,0x65,0x73,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,
- 0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,
- 0x0,0x0,0xc6,0x0,0x45,0x0,0x72,0x0,0x6c,0x0,0x61,0x0,0x75,0x0,0x62,0x0,
- 0x74,0x0,0x20,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0xfc,0x0,0x74,0x0,0x74,0x0,
- 0x65,0x0,0x6c,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,
- 0x42,0x0,0x69,0x0,0x6c,0x0,0x64,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x69,0x0,
- 0x72,0x0,0x6d,0x0,0x73,0x0,0x2e,0x0,0x20,0x0,0x44,0x0,0x65,0x0,0x61,0x0,
- 0x6b,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x65,0x0,
- 0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x61,0x0,
- 0x6c,0x0,0x6c,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x42,0x0,
- 0x65,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x6b,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,
- 0x77,0x0,0x65,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x50,0x0,0x68,0x0,
- 0x6f,0x0,0x74,0x0,0x6f,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x69,0x0,
- 0x74,0x0,0x69,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0xe4,0x0,0x74,0x0,0x20,0x0,
- 0x68,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x68,0x41,0x6c,0x6c,0x6f,0x77,0x73,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,
- 0x73,0x68,0x61,0x6b,0x69,0x6e,0x67,0x2e,0x20,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,
- 0x20,0x74,0x68,0x69,0x73,0x20,0x69,0x66,0x20,0x79,0x6f,0x75,0x20,0x68,0x61,0x76,
- 0x65,0x20,0x63,0x6f,0x6e,0x63,0x65,0x72,0x6e,0x73,0x20,0x6f,0x72,0x20,0x69,0x73,
- 0x73,0x75,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x70,0x68,0x6f,0x74,0x6f,0x73,
- 0x65,0x6e,0x73,0x69,0x74,0x69,0x76,0x69,0x74,0x79,0x20,0x61,0x6e,0x64,0x2f,0x6f,
- 0x72,0x20,0x73,0x65,0x69,0x7a,0x75,0x72,0x65,0x73,0x2e,0x7,0x0,0x0,0x0,0xf,
- 0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,
- 0x3,0x0,0x0,0x0,0x58,0x0,0x5a,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x20,0x0,
- 0x28,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x4d,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,
- 0x73,0x0,0x65,0x0,0x6b,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,
- 0x29,0x0,0x20,0x0,0x66,0x0,0xfc,0x0,0x72,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,
- 0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x42,0x0,0x75,0x0,0x63,0x0,0x68,0x0,
- 0x73,0x0,0x74,0x0,0x61,0x0,0x62,0x0,0x65,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x63,0x41,0x6d,0x6f,0x75,0x6e,0x74,0x20,0x6f,0x66,
- 0x20,0x74,0x69,0x6d,0x65,0x20,0x28,0x69,0x6e,0x20,0x6d,0x69,0x6c,0x69,0x73,0x65,
- 0x63,0x6f,0x6e,0x64,0x73,0x29,0x20,0x73,0x70,0x65,0x6e,0x74,0x20,0x6f,0x6e,0x20,
- 0x65,0x61,0x63,0x68,0x20,0x6c,0x65,0x74,0x74,0x65,0x72,0x20,0x77,0x68,0x65,0x6e,
- 0x20,0x74,0x68,0x65,0x20,0x69,0x6e,0x2d,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,
- 0x72,0x20,0x74,0x65,0x78,0x74,0x20,0x69,0x73,0x20,0x62,0x65,0x69,0x6e,0x67,0x20,
- 0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,
- 0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,
- 0x0,0x0,0x0,0x22,0x0,0x41,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x69,0x0,0x65,
- 0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x54,0x0,0x68,0x0,0x65,
- 0x0,0x6d,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,
- 0x41,0x6e,0x69,0x6d,0x61,0x74,0x65,0x64,0x20,0x54,0x68,0x65,0x6d,0x65,0x3a,0x7,
- 0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,
- 0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x41,0x0,0x75,0x0,0x64,0x0,
- 0x69,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x41,0x75,0x64,
- 0x69,0x6f,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,
- 0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x41,0x0,0x75,
- 0x0,0x64,0x0,0x69,0x0,0x6f,0x0,0x67,0x0,0x65,0x0,0x72,0x0,0xe4,0x0,0x74,
- 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x41,0x75,0x64,0x69,
- 0x6f,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,
- 0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,
- 0x0,0x0,0x38,0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,
- 0x69,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x50,0x0,
- 0x72,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,
- 0x69,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x12,0x41,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x20,0x4c,
- 0x6f,0x67,0x67,0x69,0x6e,0x67,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,
- 0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,
- 0x18,0x0,0x52,0x0,0xfc,0x0,0x63,0x0,0x6b,0x0,0x66,0x0,0x61,0x0,0x6c,0x0,
- 0x6c,0x0,0x20,0x0,0x4d,0x0,0x53,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0xa,0x42,0x61,0x63,0x6b,0x75,0x70,0x20,0x4d,0x53,0x3a,0x7,0x0,0x0,
- 0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4c,0x0,0x65,0x0,0x65,0x0,0x72,0x0,
- 0x65,0x0,0x20,0x0,0x42,0x0,0x6c,0x0,0x69,0x0,0x70,0x0,0x73,0x0,0x3a,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x42,0x6c,0x61,0x6e,0x6b,0x20,0x62,
- 0x6c,0x69,0x70,0x73,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,
- 0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x12,0x0,
- 0x42,0x0,0x6c,0x0,0x69,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x65,0x0,
- 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x42,0x6c,0x69,0x70,0x20,
- 0x72,0x61,0x74,0x65,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,
- 0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xc,0x0,
- 0x42,0x0,0x6c,0x0,0x69,0x0,0x70,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x6,0x42,0x6c,0x69,0x70,0x73,0x3a,0x7,0x0,0x0,0x0,0xf,
- 0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,
- 0x3,0x0,0x0,0x0,0x6,0x0,0x43,0x0,0x4d,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x3,0x43,0x4d,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,
- 0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,
- 0x0,0x16,0x0,0x41,0x0,0x6c,0x0,0x61,0x0,0x72,0x0,0x6d,0x0,0x77,0x0,0xf6,
- 0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x9,0x43,0x61,0x6c,0x6c,0x77,0x6f,0x72,0x64,0x73,0x7,0x0,0x0,0x0,0xf,
- 0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,
- 0x3,0x0,0x0,0x0,0xa,0x0,0x46,0x0,0xe4,0x0,0x6c,0x0,0x6c,0x0,0x65,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x61,0x73,0x69,0x6e,0x67,0x7,
- 0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,
- 0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x46,0x0,0xe4,0x0,0x6c,0x0,
- 0x6c,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,
- 0x61,0x73,0x69,0x6e,0x67,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,
- 0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x20,
- 0x0,0x43,0x0,0x68,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x52,0x0,0x61,0x0,0x74,
- 0x0,0x65,0x0,0x20,0x0,0x4c,0x0,0x69,0x0,0x6d,0x0,0x69,0x0,0x74,0x0,0x3a,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x43,0x68,0x61,0x74,0x20,0x52,
- 0x61,0x74,0x65,0x20,0x4c,0x69,0x6d,0x69,0x74,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,
- 0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,
- 0x0,0x0,0x0,0x22,0x0,0x46,0x0,0x61,0x0,0x72,0x0,0x62,0x0,0x65,0x0,0x6e,
- 0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x49,0x0,0x43,0x0,0x20,0x0,0x4c,
- 0x0,0x6f,0x0,0x67,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,
- 0x43,0x6f,0x6c,0x6f,0x72,0x73,0x20,0x69,0x6e,0x20,0x49,0x43,0x20,0x4c,0x6f,0x67,
- 0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,
- 0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x44,0x0,0x75,0x0,
- 0x72,0x0,0x63,0x0,0x68,0x0,0x67,0x0,0x65,0x0,0x68,0x0,0x65,0x0,0x6e,0x0,
- 0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x41,0x0,0x62,0x0,0x73,0x0,0x70,0x0,
- 0x69,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x14,0x43,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x6f,0x75,0x73,0x20,
- 0x50,0x6c,0x61,0x79,0x62,0x61,0x63,0x6b,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,
- 0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,
- 0x0,0x0,0x22,0x0,0x45,0x0,0x69,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,
- 0x20,0x0,0x43,0x0,0x68,0x0,0x61,0x0,0x74,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,
- 0x65,0x0,0x6e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,
- 0x75,0x73,0x74,0x6f,0x6d,0x20,0x43,0x68,0x61,0x74,0x62,0x6f,0x78,0x65,0x73,0x3a,
- 0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,
- 0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x45,0x0,0x69,0x0,0x67,
- 0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x41,0x0,0x6e,0x0,0x7a,
- 0x0,0x65,0x0,0x69,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x65,
- 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73,0x74,
- 0x6f,0x6d,0x20,0x73,0x68,0x6f,0x77,0x6e,0x61,0x6d,0x65,0x73,0x3a,0x7,0x0,0x0,
- 0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,
- 0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x42,0x0,0x65,0x0,0x6e,0x0,
- 0x75,0x0,0x74,0x0,0x7a,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,
- 0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x44,0x65,0x66,
- 0x61,0x75,0x6c,0x74,0x20,0x75,0x73,0x65,0x72,0x6e,0x61,0x6d,0x65,0x3a,0x7,0x0,
- 0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,
- 0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x74,
- 0x0,0x65,0x0,0x69,0x0,0x64,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x6e,0x0,0x67,
- 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x44,0x65,0x66,0x65,
- 0x6e,0x73,0x65,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,
- 0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x50,
- 0x0,0x72,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6c,0x0,0x6c,
- 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x79,0x0,0x6e,0x0,0x63,0x0,0x68,
- 0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x73,0x0,0x69,0x0,0x65,0x0,0x72,
- 0x0,0x65,0x0,0x6e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,
- 0x44,0x65,0x73,0x79,0x6e,0x63,0x68,0x72,0x6f,0x6e,0x69,0x7a,0x65,0x20,0x49,0x43,
- 0x20,0x4c,0x6f,0x67,0x73,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,
- 0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x10,
- 0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x0,0x3a,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x44,0x69,0x73,0x63,0x6f,0x72,
- 0x64,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,
- 0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x57,0x0,0x69,
- 0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x68,0x0,0x6f,0x0,0x6c,0x0,0x65,
- 0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x53,0x0,0x6f,0x0,0x75,0x0,0x6e,
- 0x0,0x64,0x0,0x65,0x0,0x66,0x0,0x66,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x65,
- 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x45,0x6e,0x61,0x62,
- 0x6c,0x65,0x20,0x4c,0x6f,0x6f,0x70,0x69,0x6e,0x67,0x20,0x53,0x46,0x58,0x3a,0x7,
- 0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,
- 0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x53,0x0,0x70,0x0,0x69,0x0,
- 0x65,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x47,0x61,0x6d,
- 0x65,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,
- 0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x9a,0x0,
- 0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,
- 0x77,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x66,0x0,0xfc,0x0,0x72,0x0,
- 0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x41,0x0,0x6e,0x0,0x7a,0x0,
- 0x65,0x0,0x69,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,
- 0x20,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2c,0x0,0x20,0x0,0x77,0x0,0x65,0x0,
- 0x6c,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,
- 0x20,0x0,0x49,0x0,0x6e,0x0,0x2d,0x0,0x43,0x0,0x68,0x0,0x61,0x0,0x72,0x0,
- 0x61,0x0,0x6b,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x4e,0x0,0x61,0x0,
- 0x6d,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x73,0x0,0x74,0x0,
- 0x69,0x0,0x6d,0x0,0x6d,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x99,0x47,0x69,0x76,0x65,0x73,0x20,0x74,0x68,0x65,0x20,0x64,0x65,0x66,
- 0x61,0x75,0x6c,0x74,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x66,0x6f,0x72,0x20,0x74,
- 0x68,0x65,0x20,0x69,0x6e,0x2d,0x67,0x61,0x6d,0x65,0x20,0x27,0x43,0x75,0x73,0x74,
- 0x6f,0x6d,0x20,0x73,0x68,0x6f,0x77,0x6e,0x61,0x6d,0x65,0x73,0x27,0x20,0x74,0x69,
- 0x63,0x6b,0x62,0x6f,0x78,0x2c,0x20,0x77,0x68,0x69,0x63,0x68,0x20,0x69,0x6e,0x20,
- 0x74,0x75,0x72,0x6e,0x20,0x64,0x65,0x74,0x65,0x72,0x6d,0x69,0x6e,0x65,0x73,0x20,
- 0x77,0x68,0x65,0x74,0x68,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x63,0x6c,0x69,0x65,
- 0x6e,0x74,0x20,0x73,0x68,0x6f,0x75,0x6c,0x64,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,
- 0x79,0x20,0x63,0x75,0x73,0x74,0x6f,0x6d,0x20,0x69,0x6e,0x2d,0x63,0x68,0x61,0x72,
- 0x61,0x63,0x74,0x65,0x72,0x20,0x6e,0x61,0x6d,0x65,0x73,0x2e,0x7,0x0,0x0,0x0,
- 0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,
- 0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x46,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x6c,
- 0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x75,0x0,0x6e,0x0,0x67,0x0,0x3a,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x6f,0x73,0x74,0x69,0x6e,0x67,0x20,
- 0x63,0x61,0x73,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,
- 0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xa0,
- 0x0,0x57,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,
- 0x0,0x20,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x7a,0x0,0x65,
- 0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x6c,0x0,0xe4,0x0,0x6e,0x0,0x67,0x0,0x65,
- 0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x20,0x0,0x30,0x0,0x20,
- 0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0xfc,0x0,0x62,0x0,0x65,0x0,0x72,
- 0x0,0x73,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x6e,
- 0x0,0x20,0x0,0x5a,0x0,0x77,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x65,
- 0x0,0x6e,0x0,0x72,0x0,0x75,0x0,0x66,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,
- 0x0,0x65,0x0,0x20,0x0,0x57,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x73,
- 0x0,0x63,0x0,0x68,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x66,0x0,0x65,0x0,0x2e,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6d,0x49,0x66,0x20,0x54,0x65,0x78,
- 0x74,0x20,0x53,0x74,0x61,0x79,0x20,0x54,0x69,0x6d,0x65,0x20,0x69,0x73,0x20,0x6d,
- 0x6f,0x72,0x65,0x20,0x74,0x68,0x61,0x6e,0x20,0x30,0x2c,0x20,0x69,0x6e,0x73,0x74,
- 0x61,0x6e,0x74,0x20,0x6f,0x62,0x6a,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,
- 0x6c,0x6c,0x20,0x73,0x6b,0x69,0x70,0x20,0x71,0x75,0x65,0x75,0x65,0x64,0x20,0x6d,
- 0x65,0x73,0x73,0x61,0x67,0x65,0x73,0x20,0x69,0x6e,0x73,0x74,0x65,0x61,0x64,0x20,
- 0x6f,0x66,0x20,0x77,0x61,0x69,0x74,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x63,0x61,
- 0x74,0x63,0x68,0x20,0x75,0x70,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,
- 0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,
- 0x70,0x0,0x53,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x65,0x0,0x69,0x0,0x62,0x0,
- 0x74,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x50,0x0,0x72,0x0,
- 0x6f,0x0,0x74,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,
- 0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,
- 0x69,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,
- 0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x2f,0x0,0x6c,0x0,0x6f,0x0,0x67,0x0,
- 0x73,0x0,0x20,0x0,0x4f,0x0,0x72,0x0,0x64,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,
- 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x47,0x49,0x66,0x20,0x63,0x68,
- 0x65,0x63,0x6b,0x65,0x64,0x2c,0x20,0x61,0x6c,0x6c,0x20,0x6c,0x6f,0x67,0x73,0x20,
- 0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,
- 0x63,0x61,0x6c,0x6c,0x79,0x20,0x77,0x72,0x69,0x74,0x74,0x65,0x6e,0x20,0x69,0x6e,
- 0x20,0x74,0x68,0x65,0x20,0x2f,0x6c,0x6f,0x67,0x73,0x20,0x66,0x6f,0x6c,0x64,0x65,
- 0x72,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,
- 0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x68,0x0,0x57,0x0,0x65,
- 0x0,0x6e,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x68,
- 0x0,0x61,0x0,0x6b,0x0,0x74,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x72,0x0,0x73,
- 0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x73,
- 0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x69,
- 0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x4d,0x0,0x20,
- 0x0,0x61,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x7a,0x0,0x65,0x0,0x69,0x0,0x67,
- 0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x44,0x49,0x66,
- 0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2c,0x20,0x79,0x6f,0x75,0x20,0x77,0x69,
- 0x6c,0x6c,0x20,0x61,0x70,0x70,0x65,0x61,0x72,0x20,0x61,0x6d,0x6f,0x6e,0x67,0x73,
- 0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x6f,0x74,0x65,0x6e,0x74,0x69,0x61,0x6c,0x20,
- 0x43,0x4d,0x73,0x20,0x6f,0x6e,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x72,0x76,0x65,
- 0x72,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,
- 0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x92,0x0,0x57,0x0,0x65,
- 0x0,0x6e,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x68,
- 0x0,0x61,0x0,0x6b,0x0,0x74,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x72,0x0,0x73,
- 0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x6e,
- 0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,
- 0x0,0x69,0x0,0x67,0x0,0x74,0x0,0x20,0x0,0x77,0x0,0x65,0x0,0x6e,0x0,0x6e,
- 0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x56,0x0,0x65,0x0,0x72,
- 0x0,0x74,0x0,0x65,0x0,0x69,0x0,0x64,0x0,0x69,0x0,0x67,0x0,0x65,0x0,0x72,
- 0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x6e,0x0,0xf6,0x0,0x74,0x0,0x69,0x0,0x67,
- 0x0,0x74,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x72,0x0,0x64,0x0,0x2e,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x53,0x49,0x66,0x20,0x63,0x68,0x65,0x63,0x6b,
- 0x65,0x64,0x2c,0x20,0x79,0x6f,0x75,0x20,0x77,0x69,0x6c,0x6c,0x20,0x67,0x65,0x74,
- 0x20,0x61,0x6c,0x65,0x72,0x74,0x73,0x20,0x61,0x62,0x6f,0x75,0x74,0x20,0x63,0x61,
- 0x73,0x65,0x20,0x61,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x6d,0x65,0x6e,0x74,0x73,
- 0x20,0x69,0x66,0x20,0x61,0x20,0x64,0x65,0x66,0x65,0x6e,0x73,0x65,0x20,0x73,0x70,
- 0x6f,0x74,0x20,0x69,0x73,0x20,0x6f,0x70,0x65,0x6e,0x2e,0x7,0x0,0x0,0x0,0xf,
- 0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,
- 0x3,0x0,0x0,0x0,0x86,0x0,0x57,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x20,0x0,
- 0x61,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x68,0x0,0x61,0x0,0x6b,0x0,0x74,0x0,
- 0x20,0x0,0x77,0x0,0x69,0x0,0x72,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x64,0x0,
- 0x75,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x6e,0x0,0x61,0x0,0x63,0x0,0x68,0x0,
- 0x72,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x69,0x0,0x67,0x0,0x74,0x0,
- 0x20,0x0,0x77,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x69,0x0,
- 0x6e,0x0,0x65,0x0,0x20,0x0,0x4a,0x0,0x75,0x0,0x72,0x0,0x79,0x0,0x20,0x0,
- 0x62,0x0,0x65,0x0,0x6e,0x0,0xf6,0x0,0x74,0x0,0x69,0x0,0x67,0x0,0x74,0x0,
- 0x20,0x0,0x77,0x0,0x69,0x0,0x72,0x0,0x64,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x51,0x49,0x66,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2c,
- 0x20,0x79,0x6f,0x75,0x20,0x77,0x69,0x6c,0x6c,0x20,0x67,0x65,0x74,0x20,0x61,0x6c,
- 0x65,0x72,0x74,0x73,0x20,0x61,0x62,0x6f,0x75,0x74,0x20,0x63,0x61,0x73,0x65,0x20,
- 0x61,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x6d,0x65,0x6e,0x74,0x73,0x20,0x69,0x66,
- 0x20,0x61,0x20,0x6a,0x75,0x72,0x6f,0x72,0x20,0x73,0x70,0x6f,0x74,0x20,0x69,0x73,
- 0x20,0x6f,0x70,0x65,0x6e,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,
- 0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x88,
- 0x0,0x57,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x67,
- 0x0,0x65,0x0,0x68,0x0,0x61,0x0,0x6b,0x0,0x74,0x0,0x20,0x0,0x77,0x0,0x69,
- 0x0,0x72,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x62,
- 0x0,0x65,0x0,0x6e,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x69,0x0,0x63,
- 0x0,0x68,0x0,0x74,0x0,0x69,0x0,0x67,0x0,0x74,0x0,0x20,0x0,0x77,0x0,0x65,
- 0x0,0x6e,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x4b,
- 0x0,0x6c,0x0,0xe4,0x0,0x67,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x62,0x0,0x65,
- 0x0,0x6e,0x0,0xf6,0x0,0x74,0x0,0x69,0x0,0x67,0x0,0x74,0x0,0x20,0x0,0x77,
- 0x0,0x69,0x0,0x72,0x0,0x64,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x56,0x49,0x66,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2c,0x20,0x79,0x6f,
- 0x75,0x20,0x77,0x69,0x6c,0x6c,0x20,0x67,0x65,0x74,0x20,0x61,0x6c,0x65,0x72,0x74,
- 0x73,0x20,0x61,0x62,0x6f,0x75,0x74,0x20,0x63,0x61,0x73,0x65,0x20,0x61,0x6e,0x6e,
- 0x6f,0x75,0x6e,0x63,0x65,0x6d,0x65,0x6e,0x74,0x73,0x20,0x69,0x66,0x20,0x61,0x20,
- 0x70,0x72,0x6f,0x73,0x65,0x63,0x75,0x74,0x6f,0x72,0x20,0x73,0x70,0x6f,0x74,0x20,
- 0x69,0x73,0x20,0x6f,0x70,0x65,0x6e,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,
- 0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,
- 0x0,0x90,0x0,0x57,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x6e,
- 0x0,0x67,0x0,0x65,0x0,0x68,0x0,0x61,0x0,0x6b,0x0,0x74,0x0,0x20,0x0,0x77,
- 0x0,0x69,0x0,0x72,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x20,
- 0x0,0x62,0x0,0x65,0x0,0x6e,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x69,
- 0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x69,0x0,0x67,0x0,0x74,0x0,0x20,0x0,0x77,
- 0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x20,
- 0x0,0x53,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,
- 0x0,0x70,0x0,0x68,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x6e,0x0,0xf6,0x0,0x74,
- 0x0,0x69,0x0,0x67,0x0,0x74,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x72,0x0,0x64,
- 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x58,0x49,0x66,0x20,0x63,
- 0x68,0x65,0x63,0x6b,0x65,0x64,0x2c,0x20,0x79,0x6f,0x75,0x20,0x77,0x69,0x6c,0x6c,
- 0x20,0x67,0x65,0x74,0x20,0x61,0x6c,0x65,0x72,0x74,0x73,0x20,0x61,0x62,0x6f,0x75,
- 0x74,0x20,0x63,0x61,0x73,0x65,0x20,0x61,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x6d,
- 0x65,0x6e,0x74,0x73,0x20,0x69,0x66,0x20,0x61,0x20,0x73,0x74,0x65,0x6e,0x6f,0x67,
- 0x72,0x61,0x70,0x68,0x65,0x72,0x20,0x73,0x70,0x6f,0x74,0x20,0x69,0x73,0x20,0x6f,
- 0x70,0x65,0x6e,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,
- 0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x8a,0x0,0x57,
- 0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x67,0x0,0x65,
- 0x0,0x68,0x0,0x61,0x0,0x6b,0x0,0x74,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x72,
- 0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x62,0x0,0x65,
- 0x0,0x6e,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x68,
- 0x0,0x74,0x0,0x69,0x0,0x67,0x0,0x74,0x0,0x20,0x0,0x77,0x0,0x65,0x0,0x6e,
- 0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x52,0x0,0x69,
- 0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x62,0x0,0x65,
- 0x0,0x6e,0x0,0xf6,0x0,0x74,0x0,0x69,0x0,0x67,0x0,0x74,0x0,0x20,0x0,0x77,
- 0x0,0x69,0x0,0x72,0x0,0x64,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x53,0x49,0x66,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2c,0x20,0x79,0x6f,
- 0x75,0x20,0x77,0x69,0x6c,0x6c,0x20,0x67,0x65,0x74,0x20,0x61,0x6c,0x65,0x72,0x74,
- 0x73,0x20,0x61,0x62,0x6f,0x75,0x74,0x20,0x63,0x61,0x73,0x65,0x20,0x61,0x6e,0x6e,
- 0x6f,0x75,0x6e,0x63,0x65,0x6d,0x65,0x6e,0x74,0x73,0x20,0x69,0x66,0x20,0x74,0x68,
- 0x65,0x20,0x6a,0x75,0x64,0x67,0x65,0x20,0x73,0x70,0x6f,0x74,0x20,0x69,0x73,0x20,
- 0x6f,0x70,0x65,0x6e,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,
- 0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x8a,0x0,
- 0x57,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x67,0x0,
- 0x65,0x0,0x68,0x0,0x61,0x0,0x6b,0x0,0x74,0x0,0x20,0x0,0x77,0x0,0x69,0x0,
- 0x72,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x62,0x0,
- 0x65,0x0,0x6e,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x69,0x0,0x63,0x0,
- 0x68,0x0,0x74,0x0,0x69,0x0,0x67,0x0,0x74,0x0,0x20,0x0,0x77,0x0,0x65,0x0,
- 0x6e,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x46,0x0,
- 0x61,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,
- 0x6b,0x0,0xfc,0x0,0x6e,0x0,0x64,0x0,0x69,0x0,0x67,0x0,0x74,0x0,0x20,0x0,
- 0x77,0x0,0x69,0x0,0x72,0x0,0x64,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x39,0x49,0x66,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2c,0x20,0x79,
- 0x6f,0x75,0x20,0x77,0x69,0x6c,0x6c,0x20,0x67,0x65,0x74,0x20,0x61,0x6c,0x65,0x72,
- 0x74,0x73,0x20,0x61,0x62,0x6f,0x75,0x74,0x20,0x63,0x61,0x73,0x65,0x20,0x61,0x6e,
- 0x6e,0x6f,0x75,0x6e,0x63,0x65,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x7,0x0,0x0,0x0,
- 0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,
- 0x1,0x3,0x0,0x0,0x0,0xa6,0x0,0x57,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x20,
- 0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x65,
- 0x0,0x62,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x4d,0x0,0x61,
- 0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x53,0x0,0x65,0x0,0x72,
- 0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x66,0x0,0x65,0x0,0x68,0x0,0x6c,
- 0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x6c,0x0,0xe4,0x0,0x67,0x0,0x74,0x0,0x2c,
- 0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x64,0x0,0x61,
- 0x0,0x73,0x0,0x20,0x0,0x53,0x0,0x70,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x20,
- 0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x68,
- 0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x77,
- 0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x7b,0x49,0x66,0x20,0x74,0x68,0x65,0x20,0x62,0x75,0x69,
- 0x6c,0x74,0x2d,0x69,0x6e,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x20,0x6c,0x6f,0x6f,
- 0x6b,0x75,0x70,0x73,0x20,0x66,0x61,0x69,0x6c,0x2c,0x20,0x74,0x68,0x65,0x20,0x67,
- 0x61,0x6d,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x74,0x72,0x79,0x20,0x74,0x68,0x65,
- 0x20,0x61,0x64,0x64,0x72,0x65,0x73,0x73,0x20,0x67,0x69,0x76,0x65,0x6e,0x20,0x68,
- 0x65,0x72,0x65,0x20,0x61,0x6e,0x64,0x20,0x75,0x73,0x65,0x20,0x69,0x74,0x20,0x61,
- 0x73,0x20,0x61,0x20,0x62,0x61,0x63,0x6b,0x75,0x70,0x20,0x6d,0x61,0x73,0x74,0x65,
- 0x72,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x20,0x61,0x64,0x64,0x72,0x65,0x73,0x73,
- 0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,
- 0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x7a,0x0,0x44,0x0,0x61,0x0,
- 0x73,0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x6b,0x0,
- 0x6f,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x68,0x0,
- 0xe4,0x0,0x6c,0x0,0x74,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,
- 0x64,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x4e,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,
- 0x6e,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,
- 0x5a,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,
- 0x70,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x55,0x0,
- 0x54,0x0,0x43,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3f,0x49,
- 0x66,0x20,0x74,0x69,0x63,0x6b,0x65,0x64,0x2c,0x20,0x6c,0x6f,0x67,0x20,0x77,0x69,
- 0x6c,0x6c,0x20,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x20,0x61,0x20,0x74,0x69,0x6d,
- 0x65,0x73,0x74,0x61,0x6d,0x70,0x20,0x69,0x6e,0x20,0x55,0x54,0x43,0x20,0x62,0x65,
- 0x66,0x6f,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x6e,0x61,0x6d,0x65,0x2e,0x7,0x0,
- 0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,
- 0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x84,0x0,0x50,0x0,0x72,0x0,0x6f,0x0,0x74,
- 0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x65,0x0,0x72,
- 0x0,0x74,0x0,0x20,0x0,0x43,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6b,
- 0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x6b,0x0,0x74,0x0,0x69,0x0,0x6f,
- 0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x65,0x0,0x20,
- 0x0,0x5a,0x0,0x77,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x6e,
- 0x0,0x72,0x0,0x75,0x0,0x66,0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x64,
- 0x0,0x20,0x0,0x42,0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x69,0x0,0x73,0x0,0x73,
- 0x0,0x74,0x0,0xfc,0x0,0x63,0x0,0x6b,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x4d,0x49,0x66,0x20,0x74,0x69,0x63,0x6b,0x65,0x64,0x2c,
- 0x20,0x6c,0x6f,0x67,0x20,0x77,0x69,0x6c,0x6c,0x20,0x73,0x68,0x6f,0x77,0x20,0x49,
- 0x43,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x73,0x75,0x63,0x68,0x20,0x61,
- 0x73,0x20,0x73,0x68,0x6f,0x75,0x74,0x69,0x6e,0x67,0x20,0x61,0x6e,0x64,0x20,0x70,
- 0x72,0x65,0x73,0x65,0x6e,0x74,0x69,0x6e,0x67,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,
- 0x63,0x65,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,
- 0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xca,0x0,0x57,0x0,
- 0x65,0x0,0x6e,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,
- 0x68,0x0,0x61,0x0,0x6b,0x0,0x74,0x0,0x20,0x0,0x77,0x0,0x65,0x0,0x72,0x0,
- 0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x20,0x0,
- 0x4e,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x68,0x0,
- 0x74,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x66,0x0,0x6f,0x0,
- 0x72,0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x50,0x0,0x72,0x0,
- 0x6f,0x0,0x74,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,
- 0x61,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x7a,0x0,0x65,0x0,0x69,0x0,0x67,0x0,
- 0x74,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,
- 0x73,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x77,0x0,0x61,0x0,0x72,0x0,
- 0x74,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x61,0x0,
- 0x75,0x0,0x66,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x43,0x0,
- 0x68,0x0,0x61,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x71,0x49,0x66,0x20,0x74,0x69,0x63,0x6b,0x65,0x64,0x2c,0x20,0x6c,0x6f,0x67,0x20,
- 0x77,0x69,0x6c,0x6c,0x20,0x73,0x68,0x6f,0x77,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,
- 0x65,0x73,0x20,0x61,0x73,0x2d,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x2c,0x20,
- 0x77,0x68,0x69,0x6c,0x65,0x20,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x20,0x77,
- 0x69,0x6c,0x6c,0x20,0x70,0x61,0x72,0x73,0x65,0x20,0x61,0x63,0x63,0x6f,0x72,0x64,
- 0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x71,0x75,0x65,0x75,0x65,
- 0x20,0x28,0x54,0x65,0x78,0x74,0x20,0x53,0x74,0x61,0x79,0x20,0x54,0x69,0x6d,0x65,
- 0x29,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,
- 0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xfa,0x0,0x57,0x0,0x65,
- 0x0,0x6e,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x68,
- 0x0,0x61,0x0,0x6b,0x0,0x74,0x0,0x20,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x64,
- 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x75,0x0,0x65,0x0,0x20,
- 0x0,0x4e,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x68,
- 0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x74,0x0,0x65,
- 0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x65,
- 0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x77,0x0,0x69,
- 0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x4f,
- 0x0,0x4f,0x0,0x43,0x0,0x29,0x0,0x2e,0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x73,
- 0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x69,0x0,0x74,0x0,0x69,
- 0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x28,
- 0x0,0x41,0x0,0x4f,0x0,0x31,0x0,0x29,0x0,0x20,0x0,0x56,0x0,0x65,0x0,0x72,
- 0x0,0x68,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x77,
- 0x0,0xe4,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x68,
- 0x0,0x74,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x68,0x0,0x61,
- 0x0,0x6b,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8f,
- 0x49,0x66,0x20,0x74,0x69,0x63,0x6b,0x65,0x64,0x2c,0x20,0x6e,0x65,0x77,0x20,0x6d,
- 0x65,0x73,0x73,0x61,0x67,0x65,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x61,0x70,0x70,
- 0x65,0x61,0x72,0x20,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x62,0x6f,0x74,0x74,0x6f,
- 0x6d,0x20,0x28,0x6c,0x69,0x6b,0x65,0x20,0x74,0x68,0x65,0x20,0x4f,0x4f,0x43,0x20,
- 0x63,0x68,0x61,0x74,0x6c,0x6f,0x67,0x29,0x2e,0x20,0x54,0x68,0x65,0x20,0x74,0x72,
- 0x61,0x64,0x69,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x20,0x28,0x41,0x4f,0x31,0x29,0x20,
- 0x62,0x65,0x68,0x61,0x76,0x69,0x6f,0x75,0x72,0x20,0x69,0x73,0x20,0x65,0x71,0x75,
- 0x69,0x76,0x61,0x6c,0x65,0x6e,0x74,0x20,0x74,0x6f,0x20,0x74,0x68,0x69,0x73,0x20,
- 0x62,0x65,0x69,0x6e,0x67,0x20,0x75,0x6e,0x74,0x69,0x63,0x6b,0x65,0x64,0x2e,0x7,
- 0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,
- 0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x8a,0x0,0x57,0x0,0x65,0x0,0x6e,0x0,
- 0x6e,0x0,0x20,0x0,0x4e,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x69,0x0,
- 0x63,0x0,0x68,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,
- 0x68,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x5a,0x0,0x65,0x0,
- 0x69,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,
- 0x68,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x77,0x0,
- 0x69,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x73,0x0,
- 0x20,0x0,0x6d,0x0,0x69,0x0,0x74,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x74,0x0,
- 0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x65,0x0,0x72,0x0,
- 0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x99,0x49,0x66,0x20,
- 0x74,0x69,0x63,0x6b,0x65,0x64,0x2c,0x20,0x6e,0x65,0x77,0x20,0x6d,0x65,0x73,0x73,
- 0x61,0x67,0x65,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x61,0x70,0x70,0x65,0x61,0x72,
- 0x20,0x73,0x65,0x70,0x61,0x72,0x61,0x74,0x65,0x64,0x2c,0x20,0x77,0x69,0x74,0x68,
- 0x20,0x74,0x68,0x65,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x63,0x6f,0x6d,
- 0x69,0x6e,0x67,0x20,0x6f,0x6e,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x78,0x74,0x20,
- 0x6c,0x69,0x6e,0x65,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x6e,
- 0x61,0x6d,0x65,0x2e,0x20,0x57,0x68,0x65,0x6e,0x20,0x75,0x6e,0x74,0x69,0x63,0x6b,
- 0x65,0x64,0x2c,0x20,0x69,0x74,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x73,0x20,
- 0x69,0x74,0x20,0x61,0x73,0x20,0x27,0x6e,0x61,0x6d,0x65,0x3a,0x20,0x6d,0x65,0x73,
- 0x73,0x61,0x67,0x65,0x27,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,
- 0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x46,
- 0x0,0x41,0x0,0x6b,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x69,0x0,0x65,0x0,0x72,
- 0x0,0x74,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x69,0x0,0x65,
- 0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x54,0x0,0x68,0x0,0x65,0x0,0x6d,
- 0x0,0x65,0x0,0x20,0x0,0x45,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x6e,
- 0x0,0x74,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3c,
- 0x49,0x66,0x20,0x74,0x69,0x63,0x6b,0x65,0x64,0x2c,0x20,0x74,0x68,0x65,0x6d,0x65,
- 0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x61,0x6c,0x6c,0x6f,0x77,0x65,
- 0x64,0x20,0x74,0x6f,0x20,0x68,0x61,0x76,0x65,0x20,0x61,0x6e,0x69,0x6d,0x61,0x74,
- 0x65,0x64,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x7,0x0,0x0,0x0,
- 0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,
- 0x1,0x3,0x0,0x0,0x0,0x6e,0x0,0x48,0x0,0xe4,0x0,0x6c,0x0,0x74,0x0,0x20,
- 0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x4d,0x0,0x75,0x0,0x73,0x0,0x69,
- 0x0,0x6b,0x0,0x20,0x0,0x66,0x0,0xfc,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x6c,
- 0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x77,0x0,0x65,
- 0x0,0x6e,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x27,0x0,0x45,
- 0x0,0x69,0x0,0x6e,0x0,0x73,0x0,0x70,0x0,0x72,0x0,0x75,0x0,0x63,0x0,0x68,
- 0x0,0x27,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x6e,0x0,0x75,0x0,0x74,0x0,0x7a,
- 0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x49,0x49,0x66,
- 0x20,0x74,0x72,0x75,0x65,0x2c,0x20,0x41,0x4f,0x32,0x20,0x77,0x69,0x6c,0x6c,0x20,
- 0x61,0x73,0x6b,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x20,0x74,
- 0x6f,0x20,0x73,0x74,0x6f,0x70,0x20,0x6d,0x75,0x73,0x69,0x63,0x20,0x77,0x68,0x65,
- 0x6e,0x20,0x79,0x6f,0x75,0x20,0x75,0x73,0x65,0x20,0x27,0x4f,0x62,0x6a,0x65,0x63,
- 0x74,0x69,0x6f,0x6e,0x21,0x27,0x20,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,
- 0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,
- 0xa2,0x0,0x57,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x6b,0x0,
- 0x74,0x0,0x69,0x0,0x76,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x2c,0x0,
- 0x20,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,
- 0x77,0x0,0x69,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x68,0x0,0x6f,0x0,
- 0x6c,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x53,0x0,0x6f,0x0,
- 0x75,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x66,0x0,0x66,0x0,0x65,0x0,0x6b,0x0,
- 0x74,0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x69,0x0,0x20,0x0,0x64,0x0,
- 0x65,0x0,0x6e,0x0,0x20,0x0,0x56,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,
- 0x69,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,
- 0x6e,0x0,0x20,0x0,0x65,0x0,0x72,0x0,0x6c,0x0,0x61,0x0,0x75,0x0,0x62,0x0,
- 0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4c,0x49,0x66,0x20,
- 0x74,0x72,0x75,0x65,0x2c,0x20,0x74,0x68,0x65,0x20,0x67,0x61,0x6d,0x65,0x20,0x77,
- 0x69,0x6c,0x6c,0x20,0x61,0x6c,0x6c,0x6f,0x77,0x20,0x6c,0x6f,0x6f,0x70,0x69,0x6e,
- 0x67,0x20,0x73,0x6f,0x75,0x6e,0x64,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x73,0x20,
- 0x74,0x6f,0x20,0x70,0x6c,0x61,0x79,0x20,0x6f,0x6e,0x20,0x70,0x72,0x65,0x61,0x6e,
- 0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,
- 0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,
- 0x0,0x0,0x94,0x0,0x57,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,
- 0x6e,0x0,0x67,0x0,0x65,0x0,0x68,0x0,0x61,0x0,0x6b,0x0,0x74,0x0,0x20,0x0,
- 0x77,0x0,0x69,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x73,0x0,
- 0x20,0x0,0x53,0x0,0x70,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x61,0x0,
- 0x75,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x69,0x0,0x20,0x0,
- 0x65,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x4c,0x0,0x65,0x0,
- 0x65,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,
- 0x6e,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,
- 0x42,0x0,0x6c,0x0,0x69,0x0,0x70,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,
- 0x68,0x0,0x65,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x4b,0x49,0x66,0x20,0x74,0x72,0x75,0x65,0x2c,0x20,0x74,0x68,0x65,0x20,0x67,0x61,
- 0x6d,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x70,0x6c,0x61,0x79,0x20,0x61,0x20,0x62,
- 0x6c,0x69,0x70,0x20,0x73,0x6f,0x75,0x6e,0x64,0x20,0x65,0x76,0x65,0x6e,0x20,0x77,
- 0x68,0x65,0x6e,0x20,0x61,0x20,0x73,0x70,0x61,0x63,0x65,0x20,0x69,0x73,0x20,0x27,
- 0x62,0x65,0x69,0x6e,0x67,0x20,0x73,0x61,0x69,0x64,0x27,0x2e,0x7,0x0,0x0,0x0,
- 0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,
- 0x1,0x3,0x0,0x0,0x0,0x74,0x0,0x57,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x20,
- 0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x43,0x0,0x4d,0x0,0x20,0x0,0x62,0x0,0x69,
- 0x0,0x73,0x0,0x74,0x0,0x2c,0x0,0x20,0x0,0x67,0x0,0x69,0x0,0x62,0x0,0x20,
- 0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x77,0x0,0x65,0x0,0x6c,0x0,0x63,
- 0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x46,0x0,0xe4,0x0,0x6c,0x0,0x6c,0x0,0x65,
- 0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x70,0x0,0x69,0x0,0x65,
- 0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0xf6,0x0,0x63,0x0,0x68,
- 0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x39,0x49,0x66,0x20,0x79,0x6f,0x75,0x27,0x72,0x65,0x20,0x61,0x20,
- 0x43,0x4d,0x2c,0x20,0x65,0x6e,0x74,0x65,0x72,0x20,0x77,0x68,0x61,0x74,0x20,0x63,
- 0x61,0x73,0x65,0x73,0x20,0x79,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x77,0x69,0x6c,
- 0x6c,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x68,0x6f,0x73,0x74,0x2e,0x7,0x0,0x0,
- 0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x5a,0x0,0x77,0x0,0x69,0x0,0x73,0x0,
- 0x63,0x0,0x68,0x0,0x65,0x0,0x6e,0x0,0x72,0x0,0x75,0x0,0x66,0x0,0x65,0x0,
- 0x20,0x0,0x73,0x0,0x6f,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x3a,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x49,0x6e,0x73,0x74,0x61,0x6e,0x74,
- 0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x7,0x0,0x0,0x0,0xf,
- 0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,
- 0x3,0x0,0x0,0x0,0x10,0x0,0x52,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0,
- 0x65,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4a,
- 0x75,0x64,0x67,0x65,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,
- 0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xa,0x0,
- 0x4a,0x0,0x75,0x0,0x72,0x0,0x79,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x6,0x4a,0x75,0x72,0x6f,0x72,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,
- 0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,
- 0x0,0x0,0x36,0x0,0x53,0x0,0x74,0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x65,0x0,
- 0x20,0x0,0x4d,0x0,0x75,0x0,0x73,0x0,0x69,0x0,0x6b,0x0,0x20,0x0,0x62,0x0,
- 0x65,0x0,0x69,0x0,0x20,0x0,0x45,0x0,0x69,0x0,0x6e,0x0,0x73,0x0,0x70,0x0,
- 0x72,0x0,0x75,0x0,0x63,0x0,0x68,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x18,0x4b,0x69,0x6c,0x6c,0x20,0x4d,0x75,0x73,0x69,0x63,0x20,0x4f,0x6e,
- 0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x7,0x0,0x0,0x0,0xf,
- 0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,
- 0x3,0x0,0x0,0x0,0x10,0x0,0x53,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x63,0x0,
- 0x68,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4c,
- 0x61,0x6e,0x67,0x75,0x61,0x67,0x65,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,
- 0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,
- 0x0,0x30,0x0,0x41,0x0,0x6b,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,
- 0x0,0x6e,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x6b,
- 0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,
- 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x4c,0x6f,0x67,0x20,
- 0x49,0x43,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x3a,0x7,0x0,0x0,0x0,0xf,
- 0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,
- 0x3,0x0,0x0,0x0,0x30,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x6c,0x0,0x61,0x0,
- 0x75,0x0,0x66,0x0,0x20,0x0,0x67,0x0,0x65,0x0,0x68,0x0,0x74,0x0,0x20,0x0,
- 0x6e,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x74,0x0,
- 0x65,0x0,0x6e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4c,
- 0x6f,0x67,0x20,0x67,0x6f,0x65,0x73,0x20,0x64,0x6f,0x77,0x6e,0x77,0x61,0x72,0x64,
- 0x73,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,
- 0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x4c,0x0,0xe4,
- 0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0xb,0x4c,0x6f,0x67,0x20,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3a,0x7,0x0,0x0,
- 0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x72,0x0,0x6f,0x0,0x74,0x0,
- 0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x62,0x0,0x73,0x0,
- 0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0xb,0x4c,0x6f,0x67,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x7,0x0,
- 0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,
- 0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x41,0x0,0x62,0x0,0x73,0x0,0xe4,
- 0x0,0x74,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x74,
- 0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x65,0x0,0x72,
- 0x0,0x65,0x0,0x6e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,
- 0x4c,0x6f,0x67,0x20,0x6e,0x65,0x77,0x6c,0x69,0x6e,0x65,0x3a,0x7,0x0,0x0,0x0,
- 0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,
- 0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x5a,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x73,
- 0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x65,0x0,0x6c,0x0,0x3a,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x4c,0x6f,0x67,0x20,0x74,0x69,0x6d,0x65,
- 0x73,0x74,0x61,0x6d,0x70,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,
- 0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x1,0x34,
- 0x0,0x4d,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6c,0x0,0x65,
- 0x0,0x20,0x0,0x5a,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x69,
- 0x0,0x6e,0x0,0x20,0x0,0x4d,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x65,
- 0x0,0x6b,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x29,0x0,0x20,
- 0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x65,
- 0x0,0x20,0x0,0x49,0x0,0x43,0x0,0x20,0x0,0x4e,0x0,0x61,0x0,0x63,0x0,0x68,
- 0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x61,0x0,0x75,
- 0x0,0x66,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x42,0x0,0x69,
- 0x0,0x6c,0x0,0x64,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x72,0x0,0x6d,
- 0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x62,0x0,0x74,0x0,0x20,
- 0x0,0x62,0x0,0x65,0x0,0x76,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x64,
- 0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0xe4,0x0,0x63,0x0,0x68,0x0,0x73,
- 0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6d,0x0,0x6d,0x0,0x74,
- 0x0,0x2c,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x69,
- 0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x41,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x27,
- 0x0,0x57,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x68,
- 0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x27,0x0,0x2e,0x0,0x20,
- 0x0,0x30,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x61,0x0,0x6b,0x0,0x74,0x0,0x69,
- 0x0,0x76,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x61,
- 0x0,0x73,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa6,0x4d,0x69,
- 0x6e,0x69,0x6d,0x75,0x6d,0x20,0x61,0x6d,0x6f,0x75,0x6e,0x74,0x20,0x6f,0x66,0x20,
- 0x74,0x69,0x6d,0x65,0x20,0x28,0x69,0x6e,0x20,0x6d,0x69,0x6c,0x69,0x73,0x65,0x63,
- 0x6f,0x6e,0x64,0x73,0x29,0x20,0x61,0x6e,0x20,0x49,0x43,0x20,0x6d,0x65,0x73,0x73,
- 0x61,0x67,0x65,0x20,0x6d,0x75,0x73,0x74,0x20,0x73,0x74,0x61,0x79,0x20,0x6f,0x6e,
- 0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x62,0x65,0x66,0x6f,0x72,0x65,0x20,0x74,
- 0x68,0x65,0x20,0x6e,0x65,0x78,0x74,0x20,0x49,0x43,0x20,0x6d,0x65,0x73,0x73,0x61,
- 0x67,0x65,0x20,0x69,0x73,0x20,0x73,0x68,0x6f,0x77,0x6e,0x2c,0x20,0x61,0x63,0x74,
- 0x69,0x6e,0x67,0x20,0x61,0x73,0x20,0x61,0x20,0x27,0x71,0x75,0x65,0x75,0x65,0x27,
- 0x2e,0x20,0x53,0x65,0x74,0x20,0x74,0x6f,0x20,0x30,0x20,0x74,0x6f,0x20,0x64,0x69,
- 0x73,0x61,0x62,0x6c,0x65,0x20,0x74,0x68,0x69,0x73,0x20,0x62,0x65,0x68,0x61,0x76,
- 0x69,0x6f,0x72,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,
- 0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xde,0x0,0x4d,
- 0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x20,
- 0x0,0x5a,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x69,0x0,0x6e,
- 0x0,0x20,0x0,0x4d,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x6b,
- 0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x29,0x0,0x20,0x0,0x64,
- 0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x74,
- 0x0,0x72,0x0,0x65,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x6e,0x0,0x20,
- 0x0,0x6d,0x0,0xfc,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x62,
- 0x0,0x65,0x0,0x76,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,
- 0x0,0x72,0x0,0x20,0x0,0x6e,0x0,0xe4,0x0,0x63,0x0,0x68,0x0,0x73,0x0,0x74,
- 0x0,0x65,0x0,0x20,0x0,0x45,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,
- 0x0,0x44,0x0,0x72,0x0,0x75,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x64,0x0,0x69,
- 0x0,0x65,0x0,0x20,0x0,0x4e,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x69,
- 0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,
- 0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x71,0x4d,0x69,0x6e,0x69,0x6d,0x75,0x6d,0x20,0x61,0x6d,
- 0x6f,0x75,0x6e,0x74,0x20,0x6f,0x66,0x20,0x74,0x69,0x6d,0x65,0x20,0x28,0x69,0x6e,
- 0x20,0x6d,0x69,0x6c,0x69,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x29,0x20,0x74,0x68,
- 0x61,0x74,0x20,0x6d,0x75,0x73,0x74,0x20,0x70,0x61,0x73,0x73,0x20,0x62,0x65,0x66,
- 0x6f,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x78,0x74,0x20,0x45,0x6e,0x74,
- 0x65,0x72,0x20,0x6b,0x65,0x79,0x20,0x70,0x72,0x65,0x73,0x73,0x20,0x77,0x69,0x6c,
- 0x6c,0x20,0x73,0x65,0x6e,0x64,0x20,0x79,0x6f,0x75,0x72,0x20,0x49,0x43,0x20,0x6d,
- 0x65,0x73,0x73,0x61,0x67,0x65,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,
- 0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,
- 0xc,0x0,0x4d,0x0,0x75,0x0,0x73,0x0,0x69,0x0,0x6b,0x0,0x3a,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4d,0x75,0x73,0x69,0x63,0x3a,0x7,0x0,0x0,
- 0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x4e,0x0,0x65,0x0,0x74,0x0,0x7a,0x0,
- 0x77,0x0,0x65,0x0,0x72,0x0,0x6b,0x0,0x20,0x0,0x46,0x0,0x72,0x0,0x61,0x0,
- 0x6d,0x0,0x65,0x0,0x2d,0x0,0x45,0x0,0x66,0x0,0x66,0x0,0x65,0x0,0x6b,0x0,
- 0x74,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x4e,
- 0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x46,0x72,0x61,0x6d,0x65,0x20,0x45,0x66,0x66,
- 0x65,0x63,0x74,0x73,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,
- 0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x58,0x0,
- 0x53,0x0,0x70,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x65,0x0,
- 0x69,0x0,0x6e,0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x70,0x0,0x20,0x0,
- 0x65,0x0,0x69,0x0,0x6e,0x0,0x6d,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x66,0x0,
- 0xfc,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x58,0x0,
- 0x20,0x0,0x42,0x0,0x75,0x0,0x63,0x0,0x68,0x0,0x73,0x0,0x74,0x0,0x61,0x0,
- 0x62,0x0,0x65,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x47,0x50,0x6c,0x61,0x79,0x20,0x61,0x20,0x62,0x6c,0x69,0x70,0x20,0x73,0x6f,0x75,
- 0x6e,0x64,0x20,0x22,0x6f,0x6e,0x63,0x65,0x20,0x70,0x65,0x72,0x20,0x65,0x76,0x65,
- 0x72,0x79,0x20,0x58,0x20,0x73,0x79,0x6d,0x62,0x6f,0x6c,0x73,0x22,0x2c,0x20,0x77,
- 0x68,0x65,0x72,0x65,0x20,0x58,0x20,0x69,0x73,0x20,0x74,0x68,0x65,0x20,0x62,0x6c,
- 0x69,0x70,0x20,0x72,0x61,0x74,0x65,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,
- 0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,
- 0x0,0x36,0x0,0x45,0x0,0x69,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6c,
- 0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6c,0x0,0x62,
- 0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6b,0x0,0x6c,0x0,0xe4,0x0,0x72,
- 0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x18,0x50,0x72,0x65,0x74,0x74,0x79,0x20,0x73,0x65,0x6c,0x66,0x2d,0x65,0x78,
- 0x70,0x6c,0x61,0x6e,0x61,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,
- 0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,
- 0x0,0x0,0x0,0xe,0x0,0x4b,0x0,0x6c,0x0,0xe4,0x0,0x67,0x0,0x65,0x0,0x72,
- 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x50,0x72,0x6f,0x73,
- 0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,
- 0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,
- 0x0,0x5a,0x0,0x41,0x0,0x6b,0x0,0x74,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x69,
- 0x0,0x73,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x61,
- 0x0,0x73,0x0,0x20,0x0,0x44,0x0,0x65,0x0,0x73,0x0,0x69,0x0,0x67,0x0,0x6e,
- 0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x6c,
- 0x0,0x65,0x0,0x20,0x0,0x55,0x0,0x49,0x0,0x20,0x0,0x45,0x0,0x6c,0x0,0x65,
- 0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x3d,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x74,0x68,
- 0x65,0x20,0x74,0x68,0x65,0x6d,0x65,0x20,0x61,0x6e,0x64,0x20,0x75,0x70,0x64,0x61,
- 0x74,0x65,0x20,0x61,0x6c,0x6c,0x20,0x6f,0x66,0x20,0x74,0x68,0x65,0x20,0x75,0x69,
- 0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x20,0x74,0x6f,0x20,0x6d,0x61,0x74,
- 0x63,0x68,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,
- 0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x41,0x0,
- 0x75,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x68,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,
- 0x6e,0x0,0x65,0x0,0x75,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x65,0x0,
- 0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x52,0x65,0x6c,0x6f,0x61,
- 0x64,0x20,0x54,0x68,0x65,0x6d,0x65,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,
- 0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,
- 0x8,0x0,0x53,0x0,0x46,0x0,0x58,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x4,0x53,0x46,0x58,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,
- 0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x1,
- 0x2,0x0,0x53,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x74,0x0,0x20,0x0,
- 0x73,0x0,0x63,0x0,0x68,0x0,0xfc,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,
- 0x2c,0x0,0x20,0x0,0x42,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x7a,0x0,0x65,0x0,
- 0x20,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x47,0x0,0x65,0x0,0x72,0x0,
- 0xe4,0x0,0x75,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x61,0x0,
- 0x75,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x63,0x0,
- 0x68,0x0,0x61,0x0,0x72,0x0,0x2e,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,
- 0x44,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x69,0x0,0x20,0x0,0xfc,0x0,0x62,0x0,
- 0x65,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x4e,0x0,
- 0x65,0x0,0x74,0x0,0x7a,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x6b,0x0,0x2e,0x0,
- 0x20,0x0,0x46,0x0,0x75,0x0,0x6e,0x0,0x6b,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,
- 0x69,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x6e,0x0,0x75,0x0,0x72,0x0,
- 0x20,0x0,0x77,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,
- 0x72,0x0,0x20,0x0,0x53,0x0,0x65,0x0,0x72,0x0,0x76,0x0,0x65,0x0,0x72,0x0,
- 0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,
- 0x74,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x74,0x0,0xfc,0x0,0x74,0x0,0x7a,0x0,
- 0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8c,0x53,0x65,0x6e,
- 0x64,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x2d,0x73,0x68,0x61,0x6b,0x69,0x6e,0x67,
- 0x2c,0x20,0x66,0x6c,0x61,0x73,0x68,0x65,0x73,0x20,0x61,0x6e,0x64,0x20,0x73,0x6f,
- 0x75,0x6e,0x64,0x73,0x20,0x61,0x73,0x20,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x20,
- 0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x63,0x68,0x61,0x72,0x2e,0x69,0x6e,0x69,0x20,
- 0x6f,0x76,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,
- 0x2e,0x20,0x4f,0x6e,0x6c,0x79,0x20,0x77,0x6f,0x72,0x6b,0x73,0x20,0x66,0x6f,0x72,
- 0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x73,0x20,0x74,0x68,0x61,0x74,0x20,0x73,0x75,
- 0x70,0x70,0x6f,0x72,0x74,0x20,0x74,0x68,0x69,0x73,0x20,0x66,0x75,0x6e,0x63,0x74,
- 0x69,0x6f,0x6e,0x61,0x6c,0x69,0x74,0x79,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,
- 0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,
- 0x0,0x1,0x36,0x0,0x53,0x0,0x65,0x0,0x74,0x0,0x7a,0x0,0x74,0x0,0x20,0x0,
- 0x65,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x27,0x0,0x55,0x0,0x6e,0x0,0x74,0x0,
- 0x65,0x0,0x72,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x27,0x0,
- 0x2c,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,
- 0x6c,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x20,0x0,
- 0x64,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x61,0x0,0x6b,0x0,0x74,0x0,0x75,0x0,
- 0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x54,0x0,0x68,0x0,
- 0x65,0x0,0x6d,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x65,0x0,
- 0x74,0x0,0x7a,0x0,0x74,0x0,0x2e,0x0,0x20,0x0,0x4c,0x0,0x61,0x0,0x73,0x0,
- 0x73,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x66,0x0,
- 0x20,0x0,0x27,0x0,0x53,0x0,0x65,0x0,0x72,0x0,0x76,0x0,0x65,0x0,0x72,0x0,
- 0x27,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,
- 0x20,0x0,0x53,0x0,0x65,0x0,0x72,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x20,0x0,
- 0x65,0x0,0x6e,0x0,0x74,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x69,0x0,
- 0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x7a,0x0,0x75,0x0,0x20,0x0,0x6c,0x0,
- 0x61,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x2e,0x0,0x20,0x0,0x27,0x0,
- 0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,
- 0x27,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x20,0x0,
- 0x73,0x0,0x6f,0x0,0x20,0x0,0x7a,0x0,0x75,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,
- 0x73,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0xb5,0x53,0x65,0x74,0x73,0x20,0x61,0x20,0x27,0x73,0x75,0x62,0x74,0x68,
- 0x65,0x6d,0x65,0x27,0x2c,0x20,0x77,0x68,0x69,0x63,0x68,0x20,0x77,0x69,0x6c,0x6c,
- 0x20,0x73,0x74,0x61,0x63,0x6b,0x20,0x6f,0x6e,0x20,0x74,0x6f,0x70,0x20,0x6f,0x66,
- 0x20,0x74,0x68,0x65,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x74,0x68,0x65,
- 0x6d,0x65,0x20,0x61,0x6e,0x64,0x20,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x20,0x61,
- 0x6e,0x79,0x74,0x68,0x69,0x6e,0x67,0x20,0x69,0x74,0x20,0x63,0x61,0x6e,0x2e,0x4b,
- 0x65,0x65,0x70,0x20,0x69,0x74,0x20,0x61,0x74,0x20,0x27,0x73,0x65,0x72,0x76,0x65,
- 0x72,0x27,0x20,0x74,0x6f,0x20,0x6c,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x73,0x65,
- 0x72,0x76,0x65,0x72,0x20,0x64,0x65,0x63,0x69,0x64,0x65,0x2e,0x20,0x4b,0x65,0x65,
- 0x70,0x20,0x69,0x74,0x20,0x61,0x74,0x20,0x27,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,
- 0x27,0x20,0x74,0x6f,0x20,0x6b,0x65,0x65,0x70,0x20,0x69,0x74,0x20,0x75,0x6e,0x63,
- 0x68,0x61,0x6e,0x67,0x69,0x6e,0x67,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,
- 0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,
- 0x0,0xac,0x0,0x53,0x0,0x65,0x0,0x74,0x0,0x7a,0x0,0x74,0x0,0x20,0x0,0x64,
- 0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x4c,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x73,
- 0x0,0x74,0x0,0xe4,0x0,0x72,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,
- 0x0,0x72,0x0,0x20,0x0,0x53,0x0,0x6f,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x65,
- 0x0,0x66,0x0,0x66,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x77,
- 0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x45,0x0,0x69,0x0,0x6e,0x0,0x73,0x0,0x70,
- 0x0,0x72,0x0,0xfc,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x6e,
- 0x0,0x64,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x47,0x0,0x65,
- 0x0,0x72,0x0,0xe4,0x0,0x75,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x20,
- 0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x43,0x0,0x68,0x0,0x61,0x0,0x72,
- 0x0,0x61,0x0,0x6b,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x2e,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x55,0x53,0x65,0x74,0x73,0x20,0x74,0x68,0x65,
- 0x20,0x53,0x46,0x58,0x27,0x73,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x20,0x76,
- 0x6f,0x6c,0x75,0x6d,0x65,0x2e,0x20,0x49,0x6e,0x74,0x65,0x72,0x6a,0x65,0x63,0x74,
- 0x69,0x6f,0x6e,0x73,0x20,0x61,0x6e,0x64,0x20,0x61,0x63,0x74,0x75,0x61,0x6c,0x20,
- 0x73,0x6f,0x75,0x6e,0x64,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x73,0x20,0x63,0x6f,
- 0x75,0x6e,0x74,0x20,0x61,0x73,0x20,0x27,0x53,0x46,0x58,0x27,0x2e,0x7,0x0,0x0,
- 0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0x0,0x0,0x0,0x4e,0x0,0x53,0x0,0x65,0x0,0x74,0x0,0x7a,0x0,
- 0x74,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x41,0x0,0x75,0x0,
- 0x64,0x0,0x69,0x0,0x6f,0x0,0x67,0x0,0x65,0x0,0x72,0x0,0xe4,0x0,0x74,0x0,
- 0x20,0x0,0x66,0x0,0xfc,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,
- 0x20,0x0,0x47,0x0,0x65,0x0,0x72,0x0,0xe4,0x0,0x75,0x0,0x73,0x0,0x63,0x0,
- 0x68,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x25,0x53,
- 0x65,0x74,0x73,0x20,0x74,0x68,0x65,0x20,0x61,0x75,0x64,0x69,0x6f,0x20,0x64,0x65,
- 0x76,0x69,0x63,0x65,0x20,0x66,0x6f,0x72,0x20,0x61,0x6c,0x6c,0x20,0x73,0x6f,0x75,
- 0x6e,0x64,0x73,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,
- 0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x52,0x0,0x53,
- 0x0,0x65,0x0,0x74,0x0,0x7a,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,
- 0x0,0x20,0x0,0x50,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x7a,
- 0x0,0x77,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x6e,0x0,0x20,
- 0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x7a,0x0,0x65,0x0,0x6c,0x0,0x6e,0x0,0x65,
- 0x0,0x6e,0x0,0x20,0x0,0x42,0x0,0x6c,0x0,0x69,0x0,0x70,0x0,0x73,0x0,0x2e,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x53,0x65,0x74,0x73,0x20,0x74,
- 0x68,0x65,0x20,0x64,0x65,0x6c,0x61,0x79,0x20,0x62,0x65,0x74,0x77,0x65,0x65,0x6e,
- 0x20,0x70,0x6c,0x61,0x79,0x69,0x6e,0x67,0x20,0x74,0x68,0x65,0x20,0x62,0x6c,0x69,
- 0x70,0x20,0x73,0x6f,0x75,0x6e,0x64,0x73,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,
- 0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,
- 0x0,0x0,0x8e,0x0,0x53,0x0,0x65,0x0,0x74,0x0,0x7a,0x0,0x74,0x0,0x65,0x0,
- 0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x53,0x0,0x70,0x0,0x72,0x0,
- 0x61,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x6c,0x0,
- 0x6c,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,
- 0x63,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x20,0x0,
- 0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x73,0x0,0x70,0x0,
- 0x72,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x65,0x0,
- 0x72,0x0,0x77,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,
- 0x6d,0x0,0xf6,0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x74,0x0,
- 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x40,0x53,0x65,0x74,0x73,0x20,
- 0x74,0x68,0x65,0x20,0x6c,0x61,0x6e,0x67,0x75,0x61,0x67,0x65,0x20,0x69,0x66,0x20,
- 0x79,0x6f,0x75,0x20,0x64,0x6f,0x6e,0x27,0x74,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,
- 0x6f,0x20,0x75,0x73,0x65,0x20,0x79,0x6f,0x75,0x72,0x20,0x73,0x79,0x73,0x74,0x65,
- 0x6d,0x20,0x6c,0x61,0x6e,0x67,0x75,0x61,0x67,0x65,0x2e,0x7,0x0,0x0,0x0,0xf,
- 0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,
- 0x3,0x0,0x0,0x0,0x34,0x0,0x53,0x0,0x65,0x0,0x74,0x0,0x7a,0x0,0x74,0x0,
- 0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x4d,0x0,0x75,0x0,0x73,0x0,
- 0x69,0x0,0x6b,0x0,0x6c,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x73,0x0,0x74,0x0,
- 0xe4,0x0,0x72,0x0,0x6b,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x20,0x53,0x65,0x74,0x73,0x20,0x74,0x68,0x65,0x20,0x6d,0x75,0x73,0x69,
- 0x63,0x27,0x73,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x20,0x76,0x6f,0x6c,0x75,
- 0x6d,0x65,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,
- 0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xfe,0x0,0x53,0x0,
- 0x65,0x0,0x74,0x0,0x7a,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x73,0x0,
- 0x20,0x0,0x54,0x0,0x68,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x2e,0x0,0x20,0x0,
- 0x57,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x73,0x0,
- 0x20,0x0,0x6e,0x0,0x65,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x54,0x0,0x68,0x0,
- 0x65,0x0,0x6d,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x63,0x0,0x68,0x0,
- 0x20,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x41,0x0,0x75,0x0,0x73,0x0,
- 0x73,0x0,0x65,0x0,0x68,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,
- 0x72,0x0,0x20,0x0,0x4c,0x0,0x6f,0x0,0x62,0x0,0x62,0x0,0x79,0x0,0x20,0x0,
- 0x76,0x0,0x65,0x0,0x72,0x0,0xe4,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,
- 0x74,0x0,0x2c,0x0,0x20,0x0,0x6d,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x20,0x0,
- 0x64,0x0,0x75,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x65,0x0,
- 0x20,0x0,0x6e,0x0,0x65,0x0,0x75,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,
- 0x65,0x0,0x6e,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0x69,0x0,
- 0x65,0x0,0x20,0x0,0xc4,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x75,0x0,
- 0x6e,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x7a,0x0,0x75,0x0,0x20,0x0,
- 0x73,0x0,0x65,0x0,0x68,0x0,0x65,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0xbb,0x53,0x65,0x74,0x73,0x20,0x74,0x68,0x65,0x20,0x74,0x68,
- 0x65,0x6d,0x65,0x20,0x75,0x73,0x65,0x64,0x20,0x69,0x6e,0x2d,0x67,0x61,0x6d,0x65,
- 0x2e,0x20,0x49,0x66,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x20,0x74,0x68,0x65,
- 0x6d,0x65,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x73,0x20,0x74,0x68,0x65,0x20,0x6c,
- 0x6f,0x62,0x62,0x79,0x27,0x73,0x20,0x6c,0x6f,0x6f,0x6b,0x20,0x61,0x73,0x20,0x77,
- 0x65,0x6c,0x6c,0x2c,0x20,0x79,0x6f,0x75,0x27,0x6c,0x6c,0x20,0x6e,0x65,0x65,0x64,
- 0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x6f,0x61,0x64,0x20,0x74,0x68,0x65,0x20,0x6c,
- 0x6f,0x62,0x62,0x79,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x65,0x20,0x63,0x68,0x61,
- 0x6e,0x67,0x65,0x73,0x20,0x74,0x6f,0x20,0x74,0x61,0x6b,0x65,0x20,0x65,0x66,0x66,
- 0x65,0x63,0x74,0x2c,0x20,0x73,0x75,0x63,0x68,0x20,0x61,0x73,0x20,0x62,0x79,0x20,
- 0x6a,0x6f,0x69,0x6e,0x69,0x6e,0x67,0x20,0x61,0x20,0x73,0x65,0x72,0x76,0x65,0x72,
- 0x20,0x61,0x6e,0x64,0x20,0x6c,0x65,0x61,0x76,0x69,0x6e,0x67,0x20,0x69,0x74,0x2e,
- 0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,
- 0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xb4,0x0,0x53,0x0,0x65,0x0,0x74,
- 0x0,0x7a,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x4c,
- 0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x73,0x0,0x74,0x0,0xe4,0x0,0x72,0x0,0x6b,
- 0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x42,0x0,0x6c,
- 0x0,0x69,0x0,0x70,0x0,0x73,0x0,0x2c,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x73,
- 0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x73,
- 0x0,0x20,0x0,0x47,0x0,0x65,0x0,0x72,0x0,0xe4,0x0,0x75,0x0,0x73,0x0,0x63,
- 0x0,0x68,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x69,
- 0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6b,
- 0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x69,
- 0x0,0x6d,0x0,0x20,0x0,0x52,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,
- 0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x6e,0x0,0x2e,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x38,0x53,0x65,0x74,0x73,0x20,0x74,0x68,0x65,
- 0x20,0x76,0x6f,0x6c,0x75,0x6d,0x65,0x20,0x6f,0x66,0x20,0x74,0x68,0x65,0x20,0x62,
- 0x6c,0x69,0x70,0x73,0x2c,0x20,0x74,0x68,0x65,0x20,0x74,0x61,0x6c,0x6b,0x69,0x6e,
- 0x67,0x20,0x73,0x6f,0x75,0x6e,0x64,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x73,0x2e,
- 0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,
- 0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x45,0x0,0x69,0x0,0x6e,
- 0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x75,0x0,0x6e,0x0,0x67,
- 0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x65,
- 0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,
- 0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x16,
- 0x0,0x53,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,
- 0x0,0x70,0x0,0x68,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,
- 0x53,0x74,0x65,0x6e,0x6f,0x67,0x72,0x61,0x70,0x68,0x65,0x72,0x3a,0x7,0x0,0x0,
- 0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x53,0x0,0x74,0x0,0x69,0x0,0x63,0x0,
- 0x6b,0x0,0x65,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x9,0x53,0x74,0x69,0x63,0x6b,0x65,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,
- 0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,
- 0x0,0x0,0x0,0x20,0x0,0x4b,0x0,0x6c,0x0,0x65,0x0,0x62,0x0,0x65,0x0,0x6e,
- 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x45,0x0,0x66,0x0,0x66,0x0,0x65,0x0,0x6b,
- 0x0,0x74,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x53,0x74,
- 0x69,0x63,0x6b,0x79,0x20,0x45,0x66,0x66,0x65,0x63,0x74,0x73,0x3a,0x7,0x0,0x0,
- 0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x4b,0x0,0x6c,0x0,0x65,0x0,0x62,0x0,
- 0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x56,0x0,0x6f,0x0,0x72,0x0,
- 0x61,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,
- 0x6e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x53,0x74,0x69,
- 0x63,0x6b,0x79,0x20,0x50,0x72,0x65,0x61,0x6e,0x69,0x6d,0x73,0x3a,0x7,0x0,0x0,
- 0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x4b,0x0,0x6c,0x0,0x65,0x0,0x62,0x0,
- 0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x47,0x0,0x65,0x0,0x72,0x0,
- 0xe4,0x0,0x75,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x75,0x0,0x73,0x0,
- 0x77,0x0,0x61,0x0,0x68,0x0,0x6c,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0xe,0x53,0x74,0x69,0x63,0x6b,0x79,0x20,0x53,0x6f,0x75,0x6e,0x64,0x73,
- 0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,
- 0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x4d,0x0,0x75,0x0,
- 0x73,0x0,0x69,0x0,0x6b,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x72,0x0,0x63,0x0,
- 0x68,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x4b,0x0,
- 0x61,0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x65,0x0,
- 0x20,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,
- 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x53,0x74,0x6f,0x70,0x20,
- 0x4d,0x75,0x73,0x69,0x63,0x20,0x77,0x2f,0x20,0x43,0x61,0x74,0x65,0x67,0x6f,0x72,
- 0x79,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,
- 0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x1,0x40,0x0,0x53,0x0,0x74,
- 0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,
- 0x0,0x20,0x0,0x4d,0x0,0x75,0x0,0x73,0x0,0x69,0x0,0x6b,0x0,0x20,0x0,0x77,
- 0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x65,
- 0x0,0x20,0x0,0x4b,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x72,
- 0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x65,
- 0x0,0x6c,0x0,0x74,0x0,0x20,0x0,0x67,0x0,0x65,0x0,0x6b,0x0,0x6c,0x0,0x69,
- 0x0,0x63,0x0,0x6b,0x0,0x74,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x72,0x0,0x64,
- 0x0,0x2e,0x0,0x20,0x0,0x57,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x20,0x0,0x64,
- 0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x61,0x0,0x6b,
- 0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x20,
- 0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x2c,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x6e,
- 0x0,0x75,0x0,0x74,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,
- 0x0,0x20,0x0,0x52,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x65,0x0,0x20,
- 0x0,0x4d,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x73,0x0,0x74,
- 0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x64,0x0,0x61,
- 0x0,0x73,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x78,
- 0x0,0x74,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0xfc,0x0,0x20,0x0,0x75,0x0,0x6d,
- 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x4d,0x0,0x75,0x0,0x73,
- 0x0,0x69,0x0,0x6b,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x7a,0x0,0x75,0x0,0x68,
- 0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x70,0x53,0x74,0x6f,0x70,0x20,0x6d,0x75,0x73,0x69,0x63,
- 0x20,0x77,0x68,0x65,0x6e,0x20,0x64,0x6f,0x75,0x62,0x6c,0x65,0x2d,0x63,0x6c,0x69,
- 0x63,0x6b,0x69,0x6e,0x67,0x20,0x61,0x20,0x63,0x61,0x74,0x65,0x67,0x6f,0x72,0x79,
- 0x2e,0x20,0x49,0x66,0x20,0x74,0x68,0x69,0x73,0x20,0x69,0x73,0x20,0x64,0x69,0x73,
- 0x61,0x62,0x6c,0x65,0x64,0x2c,0x20,0x75,0x73,0x65,0x20,0x74,0x68,0x65,0x20,0x72,
- 0x69,0x67,0x68,0x74,0x2d,0x63,0x6c,0x69,0x63,0x6b,0x20,0x63,0x6f,0x6e,0x74,0x65,
- 0x78,0x74,0x20,0x6d,0x65,0x6e,0x75,0x20,0x74,0x6f,0x20,0x73,0x74,0x6f,0x70,0x20,
- 0x6d,0x75,0x73,0x69,0x63,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,
- 0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x16,
- 0x0,0x55,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x68,0x0,0x65,
- 0x0,0x6d,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,
- 0x53,0x75,0x62,0x74,0x68,0x65,0x6d,0x65,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,
- 0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,
- 0x0,0x0,0x14,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x7a,0x0,
- 0x65,0x0,0x69,0x0,0x74,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0xf,0x54,0x65,0x78,0x74,0x20,0x53,0x74,0x61,0x79,0x20,0x54,0x69,0x6d,0x65,0x3a,
- 0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,
- 0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x4b,0x0,0x72,0x0,0x69,
- 0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,
- 0x0,0x20,0x0,0x54,0x0,0x65,0x0,0x78,0x0,0x74,0x0,0x3a,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0xb,0x54,0x65,0x78,0x74,0x20,0x63,0x72,0x61,0x77,0x6c,
- 0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,
- 0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xd2,0x0,0x44,0x0,0x69,0x0,
- 0x65,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x20,0x0,
- 0x61,0x0,0x6e,0x0,0x20,0x0,0x5a,0x0,0x65,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,
- 0x6e,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x61,0x0,
- 0x73,0x0,0x20,0x0,0x49,0x0,0x43,0x0,0x20,0x0,0x4c,0x0,0x6f,0x0,0x67,0x0,
- 0x20,0x0,0x62,0x0,0x65,0x0,0x68,0x0,0xe4,0x0,0x6c,0x0,0x74,0x0,0x20,0x0,
- 0x62,0x0,0x65,0x0,0x76,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0xe4,0x0,0x6c,0x0,
- 0x74,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x4e,0x0,0x61,0x0,0x63,0x0,
- 0x68,0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,
- 0x20,0x0,0x67,0x0,0x65,0x0,0x6c,0x0,0xf6,0x0,0x73,0x0,0x63,0x0,0x68,0x0,
- 0x74,0x0,0x20,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,
- 0x2e,0x0,0x20,0x0,0x30,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x64,0x0,0x65,0x0,
- 0x75,0x0,0x74,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x65,0x0,
- 0x6e,0x0,0x64,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x2e,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x85,0x54,0x68,0x65,0x20,0x61,0x6d,0x6f,0x75,0x6e,
- 0x74,0x20,0x6f,0x66,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x6c,0x69,0x6e,
- 0x65,0x73,0x20,0x74,0x68,0x65,0x20,0x49,0x43,0x20,0x63,0x68,0x61,0x74,0x6c,0x6f,
- 0x67,0x20,0x77,0x69,0x6c,0x6c,0x20,0x6b,0x65,0x65,0x70,0x20,0x62,0x65,0x66,0x6f,
- 0x72,0x65,0x20,0x64,0x65,0x6c,0x65,0x74,0x69,0x6e,0x67,0x20,0x6f,0x6c,0x64,0x65,
- 0x72,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x6c,0x69,0x6e,0x65,0x73,0x2e,
- 0x20,0x41,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x6f,0x66,0x20,0x30,0x20,0x6f,0x72,
- 0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x63,0x6f,0x75,0x6e,0x74,0x73,0x20,0x61,0x73,
- 0x20,0x27,0x69,0x6e,0x66,0x69,0x6e,0x69,0x74,0x65,0x27,0x2e,0x7,0x0,0x0,0x0,
- 0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,
- 0x1,0x3,0x0,0x0,0x0,0x80,0x0,0x53,0x0,0x65,0x0,0x74,0x0,0x7a,0x0,0x74,
- 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x41,0x0,0x62,0x0,0x73,
- 0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x7a,0x0,0x77,0x0,0x69,
- 0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,
- 0x0,0x6e,0x0,0x20,0x0,0x5a,0x0,0x65,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x6e,
- 0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x6f,0x0,0x74,
- 0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x2e,0x0,0x20,0x0,0x53,
- 0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x3a,
- 0x0,0x20,0x0,0x30,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x44,
- 0x54,0x68,0x65,0x20,0x64,0x69,0x73,0x74,0x61,0x6e,0x63,0x65,0x20,0x69,0x6e,0x20,
- 0x70,0x69,0x78,0x65,0x6c,0x73,0x20,0x62,0x65,0x74,0x77,0x65,0x65,0x6e,0x20,0x65,
- 0x61,0x63,0x68,0x20,0x65,0x6e,0x74,0x72,0x79,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,
- 0x20,0x49,0x43,0x20,0x6c,0x6f,0x67,0x2e,0x20,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,
- 0x3a,0x20,0x30,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,
- 0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x54,
- 0x0,0x68,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x6,0x54,0x68,0x65,0x6d,0x65,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,
- 0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,
- 0x0,0x0,0x0,0x56,0x0,0x44,0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x72,
- 0x0,0x20,0x0,0x53,0x0,0x65,0x0,0x72,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x20,
- 0x0,0x75,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x74,0x0,0xfc,
- 0x0,0x74,0x0,0x7a,0x0,0x74,0x0,0x20,0x0,0x46,0x0,0x61,0x0,0x6c,0x0,0x6c,
- 0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x72,0x0,0x6d,0x0,0x65,0x0,0x20,0x0,0x6e,
- 0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x29,0x54,0x68,0x69,0x73,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x20,
- 0x64,0x6f,0x65,0x73,0x20,0x6e,0x6f,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,
- 0x20,0x63,0x61,0x73,0x65,0x20,0x61,0x6c,0x65,0x72,0x74,0x73,0x2e,0x7,0x0,0x0,
- 0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0x0,0x0,0x0,0x4a,0x0,0x44,0x0,0x69,0x0,0x65,0x0,0x73,0x0,
- 0x65,0x0,0x72,0x0,0x20,0x0,0x53,0x0,0x65,0x0,0x72,0x0,0x76,0x0,0x65,0x0,
- 0x72,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x73,0x0,
- 0x74,0x0,0xfc,0x0,0x74,0x0,0x7a,0x0,0x74,0x0,0x20,0x0,0x46,0x0,0x61,0x0,
- 0x6c,0x0,0x6c,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x72,0x0,0x6d,0x0,0x65,0x0,
- 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x54,0x68,0x69,0x73,0x20,
- 0x73,0x65,0x72,0x76,0x65,0x72,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x73,0x20,
- 0x63,0x61,0x73,0x65,0x20,0x61,0x6c,0x65,0x72,0x74,0x73,0x2e,0x7,0x0,0x0,0x0,
- 0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,
- 0x1,0x3,0x0,0x0,0x0,0x66,0x0,0x43,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x61,
- 0x0,0x6b,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6b,0x0,0xf6,
- 0x0,0x6e,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x69,0x0,0x68,0x0,0x72,
- 0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x65,
- 0x0,0x6e,0x0,0x20,0x0,0x43,0x0,0x68,0x0,0x61,0x0,0x74,0x0,0x62,0x0,0x6f,
- 0x0,0x78,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x77,
- 0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x4d,0x54,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x20,
- 0x6f,0x6e,0x20,0x74,0x6f,0x20,0x61,0x6c,0x6c,0x6f,0x77,0x20,0x63,0x68,0x61,0x72,
- 0x61,0x63,0x74,0x65,0x72,0x73,0x20,0x74,0x6f,0x20,0x64,0x65,0x66,0x69,0x6e,0x65,
- 0x20,0x74,0x68,0x65,0x69,0x72,0x20,0x6f,0x77,0x6e,0x20,0x63,0x75,0x73,0x74,0x6f,
- 0x6d,0x20,0x63,0x68,0x61,0x74,0x20,0x62,0x6f,0x78,0x20,0x64,0x65,0x73,0x69,0x67,
- 0x6e,0x73,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,
- 0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x62,0x0,0x41,0x0,
- 0x6e,0x0,0x20,0x0,0x7a,0x0,0x65,0x0,0x69,0x0,0x67,0x0,0x74,0x0,0x20,0x0,
- 0x27,0x0,0x53,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x65,0x0,0x72,0x0,
- 0x27,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x2c,0x0,0x20,0x0,0x6b,0x0,0x6c,0x0,
- 0x65,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x42,0x0,0x69,0x0,0x6c,0x0,
- 0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x65,0x0,0x20,0x0,
- 0x41,0x0,0x76,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x2e,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x88,0x54,0x75,0x72,0x6e,0x20,0x74,0x68,
- 0x69,0x73,0x20,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x61,0x6c,0x6c,0x6f,0x77,0x20,0x63,
- 0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x73,0x20,0x74,0x6f,0x20,0x64,0x65,0x66,
- 0x69,0x6e,0x65,0x20,0x74,0x68,0x65,0x69,0x72,0x20,0x6f,0x77,0x6e,0x20,0x73,0x74,
- 0x69,0x63,0x6b,0x65,0x72,0x73,0x20,0x28,0x75,0x6e,0x69,0x71,0x75,0x65,0x20,0x69,
- 0x6d,0x61,0x67,0x65,0x73,0x20,0x74,0x68,0x61,0x74,0x20,0x73,0x68,0x6f,0x77,0x20,
- 0x75,0x70,0x20,0x6f,0x76,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x63,0x68,0x61,0x74,
- 0x62,0x6f,0x78,0x20,0x2d,0x20,0x6c,0x69,0x6b,0x65,0x20,0x61,0x76,0x61,0x74,0x61,
- 0x72,0x73,0x20,0x6f,0x72,0x20,0x73,0x68,0x6f,0x77,0x6e,0x61,0x6d,0x65,0x73,0x29,
- 0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,
- 0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xe0,0x0,0x41,0x0,0x6b,0x0,
- 0x74,0x0,0x69,0x0,0x76,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,
- 0x64,0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x6d,0x0,
- 0x69,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x4b,0x0,
- 0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x6b,0x0,
- 0xe4,0x0,0x73,0x0,0x74,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,
- 0x66,0x0,0xfc,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x20,0x0,
- 0x56,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,
- 0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,
- 0x68,0x0,0x74,0x0,0x20,0x0,0x7a,0x0,0x75,0x0,0x72,0x0,0xfc,0x0,0x63,0x0,
- 0x6b,0x0,0x73,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x74,0x0,
- 0x20,0x0,0x6e,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,
- 0x20,0x0,0x73,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x62,0x0,0x67,0x0,
- 0x65,0x0,0x73,0x0,0x70,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x74,0x0,0x20,0x0,
- 0x77,0x0,0x75,0x0,0x72,0x0,0x64,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x54,0x54,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x20,0x6f,
- 0x6e,0x20,0x74,0x6f,0x20,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x20,0x70,0x72,0x65,
- 0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x20,0x63,0x68,0x65,0x63,0x6b,0x62,
- 0x6f,0x78,0x20,0x66,0x72,0x6f,0x6d,0x20,0x63,0x6c,0x65,0x61,0x72,0x69,0x6e,0x67,
- 0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x70,0x6c,0x61,0x79,0x69,0x6e,0x67,0x20,0x74,
- 0x68,0x65,0x20,0x65,0x6d,0x6f,0x74,0x65,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,
- 0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,
- 0x0,0x0,0xae,0x0,0x41,0x0,0x6b,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x69,0x0,
- 0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x73,0x0,
- 0x20,0x0,0x64,0x0,0x61,0x0,0x6d,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x64,0x0,
- 0x69,0x0,0x65,0x0,0x20,0x0,0x45,0x0,0x66,0x0,0x66,0x0,0x65,0x0,0x6b,0x0,
- 0x74,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x77,0x0,0x61,0x0,0x68,0x0,0x6c,0x0,
- 0x20,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x7a,0x0,
- 0x75,0x0,0x72,0x0,0xfc,0x0,0x63,0x0,0x6b,0x0,0x73,0x0,0x70,0x0,0x72,0x0,
- 0x69,0x0,0x6e,0x0,0x67,0x0,0x74,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x63,0x0,
- 0x68,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x65,0x0,0x72,0x0,0x20,0x0,
- 0x61,0x0,0x62,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x70,0x0,0x69,0x0,0x65,0x0,
- 0x6c,0x0,0x74,0x0,0x20,0x0,0x77,0x0,0x75,0x0,0x72,0x0,0x64,0x0,0x65,0x0,
- 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x57,0x54,0x75,0x72,0x6e,0x20,
- 0x74,0x68,0x69,0x73,0x20,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x70,0x72,0x65,0x76,0x65,
- 0x6e,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x73,0x20,0x64,
- 0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x20,0x66,0x72,0x6f,0x6d,0x20,0x63,0x6c,0x65,
- 0x61,0x72,0x69,0x6e,0x67,0x20,0x74,0x68,0x65,0x20,0x65,0x66,0x66,0x65,0x63,0x74,
- 0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x70,0x6c,0x61,0x79,0x69,0x6e,0x67,0x20,0x69,
- 0x74,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,
- 0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xb2,0x0,0x41,0x0,0x6b,
- 0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,
- 0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x6d,
- 0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x47,
- 0x0,0x65,0x0,0x72,0x0,0xe4,0x0,0x75,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x61,
- 0x0,0x75,0x0,0x73,0x0,0x77,0x0,0x61,0x0,0x68,0x0,0x6c,0x0,0x20,0x0,0x6e,
- 0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x7a,0x0,0x75,0x0,0x72,
- 0x0,0xfc,0x0,0x63,0x0,0x6b,0x0,0x73,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x6e,
- 0x0,0x67,0x0,0x74,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x64,
- 0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x62,
- 0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x70,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x74,
- 0x0,0x20,0x0,0x77,0x0,0x75,0x0,0x72,0x0,0x64,0x0,0x65,0x0,0x2e,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x54,0x54,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,
- 0x73,0x20,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x20,
- 0x74,0x68,0x65,0x20,0x73,0x6f,0x75,0x6e,0x64,0x20,0x64,0x72,0x6f,0x70,0x64,0x6f,
- 0x77,0x6e,0x20,0x66,0x72,0x6f,0x6d,0x20,0x63,0x6c,0x65,0x61,0x72,0x69,0x6e,0x67,
- 0x20,0x74,0x68,0x65,0x20,0x73,0x6f,0x75,0x6e,0x64,0x20,0x61,0x66,0x74,0x65,0x72,
- 0x20,0x70,0x6c,0x61,0x79,0x69,0x6e,0x67,0x20,0x69,0x74,0x2e,0x7,0x0,0x0,0x0,
- 0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,
- 0x1,0x3,0x0,0x0,0x0,0x52,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x77,0x0,0x65,
- 0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x46,0x0,0x61,0x0,0x72,
- 0x0,0x62,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x49,0x0,0x43,
- 0x0,0x20,0x0,0x4c,0x0,0x6f,0x0,0x67,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x20,
- 0x0,0x77,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x42,
- 0x0,0x69,0x0,0x6c,0x0,0x64,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x2f,0x55,0x73,0x65,0x20,0x74,0x68,0x65,0x20,0x6d,0x61,0x72,0x6b,0x75,0x70,
- 0x20,0x63,0x6f,0x6c,0x6f,0x72,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x73,
- 0x65,0x72,0x76,0x65,0x72,0x20,0x49,0x43,0x20,0x63,0x68,0x61,0x74,0x6c,0x6f,0x67,
- 0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,
- 0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xb4,0x0,0x53,0x0,0x70,0x0,
- 0x69,0x0,0x65,0x0,0x6c,0x0,0x74,0x0,0x20,0x0,0x41,0x0,0x6e,0x0,0x69,0x0,
- 0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,
- 0x20,0x0,0x77,0x0,0x69,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,
- 0x64,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x61,0x0,0x62,0x0,0x20,0x0,
- 0x77,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x61,0x0,
- 0x75,0x0,0x66,0x0,0x67,0x0,0x65,0x0,0x68,0x0,0xf6,0x0,0x72,0x0,0x74,0x0,
- 0x20,0x0,0x68,0x0,0x61,0x0,0x62,0x0,0x65,0x0,0x6e,0x0,0x2e,0x0,0x20,0x0,
- 0x41,0x0,0x75,0x0,0x73,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x6c,0x0,
- 0x74,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x6e,0x0,0x6e,0x0,
- 0x20,0x0,0x62,0x0,0x65,0x0,0x69,0x0,0x20,0x0,0x4c,0x0,0x61,0x0,0x67,0x0,
- 0x20,0x0,0x68,0x0,0x65,0x0,0x6c,0x0,0x66,0x0,0x65,0x0,0x6e,0x0,0x2e,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x63,0x57,0x68,0x65,0x74,0x68,0x65,0x72,
- 0x20,0x6f,0x72,0x20,0x6e,0x6f,0x74,0x20,0x74,0x6f,0x20,0x72,0x65,0x73,0x75,0x6d,
- 0x65,0x20,0x70,0x6c,0x61,0x79,0x69,0x6e,0x67,0x20,0x61,0x6e,0x69,0x6d,0x61,0x74,
- 0x69,0x6f,0x6e,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x77,0x68,0x65,0x72,0x65,0x20,
- 0x74,0x68,0x65,0x79,0x20,0x6c,0x65,0x66,0x74,0x20,0x6f,0x66,0x66,0x2e,0x20,0x54,
- 0x75,0x72,0x6e,0x69,0x6e,0x67,0x20,0x6f,0x66,0x66,0x20,0x6d,0x69,0x67,0x68,0x74,
- 0x20,0x72,0x65,0x64,0x75,0x63,0x65,0x20,0x6c,0x61,0x67,0x2e,0x7,0x0,0x0,0x0,
- 0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,
- 0x1,0x3,0x0,0x0,0x0,0x60,0x0,0x44,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x20,
- 0x0,0x4f,0x0,0x4f,0x0,0x43,0x0,0x20,0x0,0x4e,0x0,0x61,0x0,0x6d,0x0,0x65,
- 0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x61,0x0,0x75,
- 0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x73,0x0,0x63,
- 0x0,0x68,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x66,0x0,0x20,0x0,0x64,0x0,0x69,
- 0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,
- 0x0,0x7a,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4d,
- 0x59,0x6f,0x75,0x72,0x20,0x4f,0x4f,0x43,0x20,0x6e,0x61,0x6d,0x65,0x20,0x77,0x69,
- 0x6c,0x6c,0x20,0x62,0x65,0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x61,
- 0x6c,0x6c,0x79,0x20,0x73,0x65,0x74,0x20,0x74,0x6f,0x20,0x74,0x68,0x69,0x73,0x20,
- 0x76,0x61,0x6c,0x75,0x65,0x20,0x77,0x68,0x65,0x6e,0x20,0x79,0x6f,0x75,0x20,0x6a,
- 0x6f,0x69,0x6e,0x20,0x61,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x2e,0x7,0x0,0x0,
- 0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x22,0x0,0x25,0x0,0x31,0x0,0x22,0x0,
- 0x20,0x0,0x77,0x0,0x75,0x0,0x72,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0xfc,0x0,
- 0x62,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x67,0x0,0x65,0x0,
- 0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x22,0x25,0x31,
- 0x22,0x20,0x68,0x61,0x73,0x20,0x62,0x65,0x65,0x6e,0x20,0x74,0x72,0x61,0x6e,0x73,
- 0x66,0x65,0x72,0x72,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x25,0x0,0x20,0x0,
- 0x48,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,
- 0x61,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x41,0x0,0x62,0x0,0x73,0x0,
- 0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0xa,0x25,0x20,0x78,0x20,0x6f,0x66,0x66,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x28,0x0,
- 0x25,0x0,0x20,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x6b,0x0,
- 0x61,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x41,0x0,0x62,0x0,0x73,0x0,
- 0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0xa,0x25,0x20,0x79,0x20,0x6f,0x66,0x66,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x6,0x0,
- 0x41,0x0,0x2f,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x41,
- 0x2f,0x4d,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,
- 0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x4e,0x0,0x65,0x0,0x75,0x0,0x65,0x0,0x73,
- 0x0,0x20,0x0,0x42,0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x69,0x0,0x73,0x0,0x73,
- 0x0,0x74,0x0,0xfc,0x0,0x63,0x0,0x6b,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x41,0x64,0x64,0x20,0x6e,0x65,0x77,0x20,
- 0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x58,0x0,
- 0x46,0x0,0xfc,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x54,0x0,0x65,0x0,0x78,0x0,
- 0x74,0x0,0x20,0x0,0x7a,0x0,0x75,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x69,0x0,
- 0x6e,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x7a,0x0,
- 0x74,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x4e,0x0,0x61,0x0,0x63,0x0,0x68,0x0,
- 0x72,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x68,0x0,0x69,0x0,
- 0x6e,0x0,0x7a,0x0,0x75,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x32,0x41,0x64,0x64,0x20,0x74,0x65,0x78,0x74,0x20,0x74,0x6f,0x20,0x79,0x6f,0x75,
- 0x72,0x20,0x6c,0x61,0x73,0x74,0x20,0x73,0x70,0x6f,0x6b,0x65,0x6e,0x20,0x6d,0x65,
- 0x73,0x73,0x61,0x67,0x65,0x20,0x77,0x68,0x65,0x6e,0x20,0x63,0x68,0x65,0x63,0x6b,
- 0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x48,0x0,0x69,0x0,0x6e,0x0,0x7a,0x0,
- 0x75,0x0,0x66,0x0,0xfc,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x64,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x41,0x64,0x64,0x69,0x74,0x69,0x76,0x65,0x7,
- 0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,
- 0x0,0x0,0x66,0x0,0x4c,0x0,0xe4,0x0,0x73,0x0,0x73,0x0,0x74,0x0,0x20,0x0,
- 0x64,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,
- 0x73,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,
- 0x65,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x20,0x0,
- 0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x43,0x0,0x6c,0x0,0x69,0x0,0x65,0x0,
- 0x6e,0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x70,0x0,0x61,0x0,
- 0x73,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x33,0x41,0x6c,0x6c,0x6f,0x77,0x73,0x20,0x79,0x6f,0x75,0x20,0x74,0x6f,
- 0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x20,0x76,0x61,0x72,0x69,0x6f,0x75,0x73,0x20,
- 0x61,0x73,0x70,0x65,0x63,0x74,0x73,0x20,0x6f,0x66,0x20,0x74,0x68,0x65,0x20,0x63,
- 0x6c,0x69,0x65,0x6e,0x74,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x82,0x0,0x45,0x0,0x69,0x0,0x6e,
- 0x0,0x20,0x0,0x4d,0x0,0x65,0x0,0x6e,0x0,0xfc,0x0,0x20,0x0,0x75,0x0,0x6d,
- 0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x46,
- 0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x7a,0x0,0x75,
- 0x0,0x6b,0x0,0xfc,0x0,0x6e,0x0,0x64,0x0,0x69,0x0,0x67,0x0,0x65,0x0,0x6e,
- 0x0,0x20,0x0,0x28,0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x6d,0x0,0x75,0x0,0x73,
- 0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x66,0x0,0xfc,0x0,0x72,
- 0x0,0x20,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x43,0x0,0x4d,
- 0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x29,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x61,0x41,0x6e,0x20,0x69,0x6e,0x74,0x65,0x72,0x66,0x61,
- 0x63,0x65,0x20,0x74,0x6f,0x20,0x68,0x65,0x6c,0x70,0x20,0x79,0x6f,0x75,0x20,0x61,
- 0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x20,0x61,0x20,0x63,0x61,0x73,0x65,0x20,0x28,
- 0x79,0x6f,0x75,0x20,0x68,0x61,0x76,0x65,0x20,0x74,0x6f,0x20,0x62,0x65,0x20,0x61,
- 0x20,0x43,0x4d,0x20,0x66,0x69,0x72,0x73,0x74,0x20,0x74,0x6f,0x20,0x62,0x65,0x20,
- 0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x61,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,
- 0x20,0x63,0x61,0x73,0x65,0x73,0x29,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x5a,0x0,0x75,0x0,
- 0x72,0x0,0xfc,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x7a,0x0,0x75,0x0,0x72,0x0,
- 0x20,0x0,0x4c,0x0,0x6f,0x0,0x62,0x0,0x62,0x0,0x79,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0xd,0x42,0x61,0x63,0x6b,0x20,0x74,0x6f,0x20,0x4c,0x6f,0x62,
- 0x62,0x79,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,
- 0x1,0x3,0x0,0x0,0x0,0xa0,0x0,0x57,0x0,0x65,0x0,0x72,0x0,0x64,0x0,0x65,
- 0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x5a,0x0,0x75,0x0,0x73,
- 0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x75,0x0,0x65,0x0,0x72,0x0,0x2e,0x0,0x20,
- 0x0,0x45,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x64,
- 0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,
- 0x0,0x20,0x0,0x6d,0x0,0xf6,0x0,0x67,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x68,
- 0x0,0x20,0x0,0x6d,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6d,
- 0x0,0x20,0x0,0x53,0x0,0x70,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x66,0x0,0x65,
- 0x0,0x6c,0x0,0x64,0x0,0x20,0x0,0x7a,0x0,0x75,0x0,0x20,0x0,0x69,0x0,0x6e,
- 0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x65,0x0,0x72,
- 0x0,0x65,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4f,
- 0x42,0x65,0x63,0x6f,0x6d,0x65,0x20,0x61,0x20,0x73,0x70,0x65,0x63,0x74,0x61,0x74,
- 0x6f,0x72,0x2e,0x20,0x59,0x6f,0x75,0x20,0x77,0x6f,0x6e,0x27,0x74,0x20,0x62,0x65,
- 0x20,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x74,0x65,0x72,0x61,0x63,
- 0x74,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x69,0x6e,0x2d,0x63,0x68,
- 0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x2e,0x7,
- 0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,
- 0x0,0x0,0xa,0x0,0x42,0x0,0x6c,0x0,0x69,0x0,0x70,0x0,0x73,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x42,0x6c,0x69,0x70,0x73,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x6e,
- 0x0,0x5a,0x0,0x65,0x0,0x69,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,
- 0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6b,
- 0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x77,0x0,0x61,
- 0x0,0x68,0x0,0x6c,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0xe4,
- 0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,
- 0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x43,0x0,0x68,0x0,0x61,
- 0x0,0x72,0x0,0x61,0x0,0x6b,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x2e,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3f,0x42,0x72,0x69,0x6e,0x67,0x20,0x75,0x70,
- 0x20,0x74,0x68,0x65,0x20,0x43,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x20,0x53,
- 0x65,0x6c,0x65,0x63,0x74,0x20,0x53,0x63,0x72,0x65,0x65,0x6e,0x20,0x61,0x6e,0x64,
- 0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x20,0x79,0x6f,0x75,0x72,0x20,0x63,0x68,0x61,
- 0x72,0x61,0x63,0x74,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x5a,0x0,0x65,0x0,
- 0x69,0x0,0x67,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x20,0x0,
- 0x42,0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x69,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,
- 0x73,0x0,0x74,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x1d,0x42,0x72,0x69,0x6e,0x67,0x20,0x75,0x70,0x20,0x74,0x68,0x65,0x20,0x45,0x76,
- 0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x2e,0x7,0x0,
- 0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,
- 0x0,0xc,0x0,0x43,0x0,0x4c,0x0,0x49,0x0,0x45,0x0,0x4e,0x0,0x54,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x4c,0x49,0x45,0x4e,0x54,0x7,0x0,
- 0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,
- 0x0,0x16,0x0,0x53,0x0,0x50,0x0,0x45,0x0,0x5a,0x0,0x49,0x0,0x41,0x0,0x4c,
- 0x0,0x52,0x0,0x55,0x0,0x46,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x11,0x43,0x55,0x53,0x54,0x4f,0x4d,0x20,0x4f,0x42,0x4a,0x45,0x43,0x54,0x49,
- 0x4f,0x4e,0x21,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x4d,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,
- 0x72,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x72,0x0,0x75,0x0,
- 0x66,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x43,
- 0x61,0x6c,0x6c,0x20,0x4d,0x6f,0x64,0x65,0x72,0x61,0x74,0x6f,0x72,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0x1e,0x0,0x4d,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x74,0x0,
- 0x6f,0x0,0x72,0x0,0x20,0x0,0x72,0x0,0x75,0x0,0x66,0x0,0x65,0x0,0x6e,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x61,0x6c,0x6c,0x20,0x6d,0x6f,
- 0x64,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,
- 0x3,0x0,0x0,0x0,0x18,0x0,0x46,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,
- 0x76,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x25,0x0,0x31,0x0,0x2e,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x43,0x61,0x73,0x65,0x20,0x6d,0x61,0x64,0x65,
- 0x20,0x62,0x79,0x20,0x25,0x31,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x46,0x0,0x61,0x0,
- 0x6c,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x61,0x73,
- 0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x43,0x0,0x68,0x0,0x61,0x0,0x72,0x0,
- 0x61,0x0,0x6b,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0xe4,0x0,0x6e,0x0,
- 0x64,0x0,0x65,0x0,0x72,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x10,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,
- 0x72,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,
- 0x3,0x0,0x0,0x0,0x62,0x0,0xc4,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,
- 0x74,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x48,0x0,0x6f,0x0,
- 0x69,0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,
- 0x6e,0x0,0x20,0x0,0x41,0x0,0x62,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,
- 0x64,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x69,0x0,
- 0x76,0x0,0x20,0x0,0x7a,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x4d,0x0,0x69,0x0,
- 0x74,0x0,0x74,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x63,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x74,0x68,0x65,0x20,0x68,0x6f,0x72,0x69,
- 0x7a,0x6f,0x6e,0x74,0x61,0x6c,0x20,0x70,0x65,0x72,0x63,0x65,0x6e,0x74,0x61,0x67,
- 0x65,0x20,0x6f,0x66,0x66,0x73,0x65,0x74,0x20,0x6f,0x66,0x20,0x79,0x6f,0x75,0x72,
- 0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x27,0x73,0x20,0x70,0x6f,0x73,
- 0x69,0x74,0x69,0x6f,0x6e,0x20,0x66,0x72,0x6f,0x6d,0x20,0x74,0x68,0x65,0x20,0x63,
- 0x65,0x6e,0x74,0x65,0x72,0x20,0x6f,0x66,0x20,0x74,0x68,0x65,0x20,0x73,0x63,0x72,
- 0x65,0x65,0x6e,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x70,0x0,0xc4,0x0,0x6e,0x0,0x64,0x0,0x65,
- 0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x52,
- 0x0,0x65,0x0,0x69,0x0,0x68,0x0,0x65,0x0,0x6e,0x0,0x66,0x0,0x6f,0x0,0x6c,
- 0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,
- 0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x68,
- 0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6b,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x65,
- 0x0,0x20,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x69,
- 0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x32,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x74,0x68,0x65,0x20,0x6f,0x72,0x64,
- 0x65,0x72,0x20,0x6f,0x66,0x20,0x61,0x70,0x70,0x65,0x61,0x72,0x61,0x6e,0x63,0x65,
- 0x20,0x66,0x6f,0x72,0x20,0x79,0x6f,0x75,0x72,0x20,0x63,0x68,0x61,0x72,0x61,0x63,
- 0x74,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xc8,0x0,0xc4,0x0,0x6e,0x0,0x64,0x0,0x65,
- 0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x54,
- 0x0,0x65,0x0,0x78,0x0,0x74,0x0,0x66,0x0,0x61,0x0,0x72,0x0,0x62,0x0,0x65,
- 0x0,0x2e,0x0,0xa,0x0,0x44,0x0,0x75,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x6e,
- 0x0,0x6e,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x63,0x0,0x68,
- 0x0,0x20,0x0,0x6e,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x6e,
- 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x54,0x0,0x65,0x0,0x69,0x0,0x6c,0x0,0x20,
- 0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x4e,0x0,0x61,0x0,0x63,0x0,0x68,
- 0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x61,0x0,0x75,
- 0x0,0x73,0x0,0x77,0x0,0xe4,0x0,0x68,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x20,
- 0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x73,
- 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x46,0x0,0x61,0x0,0x72,0x0,0x62,0x0,0x65,
- 0x0,0x20,0x0,0xe4,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x21,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x91,0x43,0x68,0x61,0x6e,0x67,0x65,
- 0x20,0x74,0x68,0x65,0x20,0x74,0x65,0x78,0x74,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x20,
- 0x6f,0x66,0x20,0x74,0x68,0x65,0x20,0x73,0x70,0x6f,0x6b,0x65,0x6e,0x20,0x6d,0x65,
- 0x73,0x73,0x61,0x67,0x65,0x2e,0xa,0x59,0x6f,0x75,0x20,0x63,0x61,0x6e,0x20,0x61,
- 0x6c,0x73,0x6f,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x61,0x20,0x70,0x61,0x72,
- 0x74,0x20,0x6f,0x66,0x20,0x79,0x6f,0x75,0x72,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,
- 0x74,0x6c,0x79,0x20,0x74,0x79,0x70,0x65,0x64,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,
- 0x65,0x20,0x61,0x6e,0x64,0x20,0x75,0x73,0x65,0x20,0x74,0x68,0x65,0x20,0x64,0x72,
- 0x6f,0x70,0x64,0x6f,0x77,0x6e,0x20,0x74,0x6f,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,
- 0x20,0x69,0x74,0x73,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x21,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x60,0x0,
- 0xc4,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x64,0x0,
- 0x65,0x0,0x6e,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x69,0x0,
- 0x6b,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x41,0x0,0x62,0x0,
- 0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x72,0x0,0x65,0x0,
- 0x6c,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x20,0x0,0x7a,0x0,0x75,0x0,
- 0x72,0x0,0x20,0x0,0x4d,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x2e,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x61,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,
- 0x74,0x68,0x65,0x20,0x76,0x65,0x72,0x74,0x69,0x63,0x61,0x6c,0x20,0x70,0x65,0x72,
- 0x63,0x65,0x6e,0x74,0x61,0x67,0x65,0x20,0x6f,0x66,0x66,0x73,0x65,0x74,0x20,0x6f,
- 0x66,0x20,0x79,0x6f,0x75,0x72,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,
- 0x27,0x73,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x20,0x66,0x72,0x6f,0x6d,
- 0x20,0x74,0x68,0x65,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x20,0x6f,0x66,0x20,0x74,
- 0x68,0x65,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,
- 0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x1,0xf2,0x0,0x57,
- 0x0,0xe4,0x0,0x68,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x6e,
- 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x45,0x0,0x66,0x0,0x66,0x0,0x65,0x0,0x6b,
- 0x0,0x74,0x0,0x20,0x0,0x66,0x0,0xfc,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x69,
- 0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0xe4,0x0,0x63,0x0,0x68,0x0,0x73,0x0,0x74,
- 0x0,0x65,0x0,0x20,0x0,0x4e,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x69,
- 0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x2e,0x0,0xa,0x0,0x44,0x0,0x69,0x0,0x65,
- 0x0,0x20,0x0,0x45,0x0,0x66,0x0,0x66,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x65,
- 0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x64,0x0,0x65,
- 0x0,0x66,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x20,
- 0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x6d,0x0,0x65,
- 0x0,0x2f,0x0,0x65,0x0,0x66,0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x73,
- 0x0,0x2f,0x0,0x65,0x0,0x66,0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x73,
- 0x0,0x2e,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x2e,0x0,0x20,0x0,0x44,0x0,0x65,
- 0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x43,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x61,
- 0x0,0x6b,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x6e,
- 0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x65,
- 0x0,0x20,0x0,0x45,0x0,0x66,0x0,0x66,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x65,
- 0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0xa,
- 0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x2e,0x0,0x69,0x0,0x6e,0x0,0x69,
- 0x0,0x20,0x0,0x5b,0x0,0x4f,0x0,0x70,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,
- 0x0,0x73,0x0,0x5d,0x0,0x20,0x0,0x4b,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x67,
- 0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x65,0x0,0x66,
- 0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x3d,0x0,0x20,
- 0x0,0x27,0x0,0x6d,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6e,0x0,0x61,0x0,0x6d,
- 0x0,0x65,0x0,0x27,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x62,0x0,0x65,0x0,0x6e,
- 0x0,0x20,0x0,0x77,0x0,0x65,0x0,0x6c,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x72,
- 0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x6e,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x69,
- 0x0,0x73,0x0,0x63,0x0,0x2f,0x0,0x3c,0x0,0x6d,0x0,0x69,0x0,0x73,0x0,0x63,
- 0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x3e,0x0,0x2f,0x0,0x65,0x0,0x66,
- 0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x73,0x0,0x2e,0x0,0x69,0x0,0x6e,
- 0x0,0x69,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x2e,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0x13,0x43,0x68,0x6f,0x6f,0x73,0x65,
- 0x20,0x61,0x6e,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x20,0x74,0x6f,0x20,0x70,0x6c,
- 0x61,0x79,0x20,0x6f,0x6e,0x20,0x79,0x6f,0x75,0x72,0x20,0x6e,0x65,0x78,0x74,0x20,
- 0x73,0x70,0x6f,0x6b,0x65,0x6e,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2e,0xa,
- 0x54,0x68,0x65,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x73,0x20,0x61,0x72,0x65,0x20,
- 0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x20,0x69,0x6e,0x20,0x79,0x6f,0x75,0x72,0x20,
- 0x74,0x68,0x65,0x6d,0x65,0x2f,0x65,0x66,0x66,0x65,0x63,0x74,0x73,0x2f,0x65,0x66,
- 0x66,0x65,0x63,0x74,0x73,0x2e,0x69,0x6e,0x69,0x2e,0x20,0x59,0x6f,0x75,0x72,0x20,
- 0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x20,0x63,0x61,0x6e,0x20,0x64,0x65,
- 0x66,0x69,0x6e,0x65,0x20,0x63,0x75,0x73,0x74,0x6f,0x6d,0x20,0x65,0x66,0x66,0x65,
- 0x63,0x74,0x73,0x20,0x62,0x79,0xa,0x63,0x68,0x61,0x72,0x2e,0x69,0x6e,0x69,0x20,
- 0x5b,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x5d,0x20,0x63,0x61,0x74,0x65,0x67,0x6f,
- 0x72,0x79,0x2c,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x73,0x20,0x3d,0x20,0x27,0x6d,
- 0x69,0x73,0x63,0x6e,0x61,0x6d,0x65,0x27,0x20,0x77,0x68,0x65,0x72,0x65,0x20,0x69,
- 0x74,0x20,0x72,0x65,0x66,0x65,0x72,0x65,0x73,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,
- 0x63,0x2f,0x3c,0x6d,0x69,0x73,0x63,0x6e,0x61,0x6d,0x65,0x3e,0x2f,0x65,0x66,0x66,
- 0x65,0x63,0x74,0x73,0x2e,0x69,0x6e,0x69,0x20,0x74,0x6f,0x20,0x72,0x65,0x61,0x64,
- 0x20,0x74,0x68,0x65,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x73,0x2e,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0xe,0x0,0x57,0x0,0xe4,0x0,0x68,0x0,0x6c,0x0,0x65,0x0,0x2e,0x0,0x2e,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x68,0x6f,0x6f,0x73,0x65,0x2e,
- 0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,
- 0x3,0x0,0x0,0x0,0xa8,0x0,0x53,0x0,0x63,0x0,0x68,0x0,0x6c,0x0,0x69,0x0,
- 0x65,0x0,0xdf,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x20,0x0,
- 0x42,0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x69,0x0,0x73,0x0,0x66,0x0,0x65,0x0,
- 0x6e,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x2e,0x0,0xa,0x0,0x44,0x0,
- 0x75,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x72,0x0,0x73,0x0,0x74,0x0,0x20,0x0,
- 0x67,0x0,0x65,0x0,0x66,0x0,0x72,0x0,0x61,0x0,0x67,0x0,0x74,0x0,0x20,0x0,
- 0x77,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x20,0x0,
- 0x75,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x69,0x0,
- 0x63,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0xc4,0x0,
- 0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x75,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,
- 0x6e,0x0,0x20,0x0,0x67,0x0,0x69,0x0,0x62,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x60,0x43,0x6c,0x6f,0x73,0x65,0x20,0x74,0x68,0x65,
- 0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,
- 0x79,0x2f,0x65,0x64,0x69,0x74,0x69,0x6e,0x67,0x20,0x6f,0x76,0x65,0x72,0x6c,0x61,
- 0x79,0x2e,0xa,0x59,0x6f,0x75,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x70,
- 0x72,0x6f,0x6d,0x70,0x74,0x65,0x64,0x20,0x69,0x66,0x20,0x74,0x68,0x65,0x72,0x65,
- 0x27,0x73,0x20,0x61,0x6e,0x79,0x20,0x75,0x6e,0x73,0x61,0x76,0x65,0x64,0x20,0x63,
- 0x68,0x61,0x6e,0x67,0x65,0x73,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x41,0x0,0x6c,0x0,
- 0x6c,0x0,0x65,0x0,0x20,0x0,0x4b,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x67,0x0,
- 0x6f,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x76,0x0,0x65,0x0,
- 0x72,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x63,0x0,0x6b,0x0,0x65,0x0,0x6e,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x43,0x6f,0x6c,0x6c,0x61,0x70,0x73,
- 0x65,0x20,0x41,0x6c,0x6c,0x20,0x43,0x61,0x74,0x65,0x67,0x6f,0x72,0x69,0x65,0x73,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0x6e,0x0,0x42,0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x69,0x0,0x73,
- 0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x67,
- 0x0,0x6c,0x0,0x6f,0x0,0x62,0x0,0x61,0x0,0x6c,0x0,0x2e,0x0,0x20,0x0,0x4b,
- 0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x75,
- 0x0,0x6d,0x0,0x20,0x0,0x7a,0x0,0x75,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x67,
- 0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x7a,0x0,0x75,0x0,0x20,
- 0x0,0x77,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x73,0x0,0x65,0x0,0x6c,0x0,0x6e,
- 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x37,0x43,0x75,0x72,0x72,
- 0x65,0x6e,0x74,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x69,0x73,0x20,
- 0x67,0x6c,0x6f,0x62,0x61,0x6c,0x2e,0x20,0x43,0x6c,0x69,0x63,0x6b,0x20,0x74,0x6f,
- 0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x20,0x74,0x6f,0x20,0x70,0x72,0x69,0x76,0x61,
- 0x74,0x65,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0x76,0x0,0x42,0x0,0x65,0x0,0x77,0x0,0x65,0x0,
- 0x69,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,
- 0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x67,0x0,
- 0x65,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x2e,0x0,0x20,0x0,0x4b,0x0,0x6c,0x0,
- 0x69,0x0,0x63,0x0,0x6b,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,
- 0x20,0x0,0x7a,0x0,0x75,0x0,0x20,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x62,0x0,
- 0x61,0x0,0x6c,0x0,0x20,0x0,0x7a,0x0,0x75,0x0,0x20,0x0,0x77,0x0,0x65,0x0,
- 0x63,0x0,0x68,0x0,0x73,0x0,0x65,0x0,0x6c,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x37,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x65,
- 0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x69,0x73,0x20,0x70,0x72,0x69,0x76,0x61,
- 0x74,0x65,0x2e,0x20,0x43,0x6c,0x69,0x63,0x6b,0x20,0x74,0x6f,0x20,0x73,0x77,0x69,
- 0x74,0x63,0x68,0x20,0x74,0x6f,0x20,0x67,0x6c,0x6f,0x62,0x61,0x6c,0x2e,0x7,0x0,
- 0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,
- 0x0,0x28,0x0,0x45,0x0,0x69,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72,
- 0x0,0x20,0x0,0x5a,0x0,0x77,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x65,
- 0x0,0x6e,0x0,0x72,0x0,0x75,0x0,0x66,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0xd,0x43,0x75,0x73,0x74,0x6f,0x6d,0x20,0x53,0x68,0x6f,0x75,0x74,
- 0x21,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,
- 0x3,0x0,0x0,0x0,0x34,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x72,0x0,0x69,0x0,
- 0x6e,0x0,0x67,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,
- 0x65,0x0,0x20,0x0,0x47,0x0,0x65,0x0,0x73,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,
- 0x68,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x18,0x44,0x65,0x63,0x72,0x65,0x61,0x73,0x65,0x20,0x74,0x68,0x65,0x20,
- 0x68,0x65,0x61,0x6c,0x74,0x68,0x20,0x62,0x61,0x72,0x2e,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x10,0x0,
- 0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0x36,0x0,0x5a,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x74,0x0,0xf6,
- 0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x65,
- 0x0,0x73,0x0,0x20,0x0,0x42,0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x69,0x0,0x73,
- 0x0,0x73,0x0,0x74,0x0,0xfc,0x0,0x63,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x1e,0x44,0x65,0x73,0x74,0x72,0x6f,0x79,0x20,0x74,0x68,0x69,0x73,
- 0x20,0x70,0x69,0x65,0x63,0x65,0x20,0x6f,0x66,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,
- 0x63,0x65,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,
- 0x1,0x3,0x0,0x0,0x0,0x52,0x0,0x5a,0x0,0x65,0x0,0x69,0x0,0x67,0x0,0x74,
- 0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6c,0x0,0x62,0x0,0x73,0x0,0x74,0x0,0x20,
- 0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x6c,
- 0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x4e,0x0,0x61,0x0,0x6d,
- 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x66,0x0,0xfc,0x0,0x72,0x0,0x20,0x0,0x61,
- 0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x38,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x63,0x75,0x73,0x74,0x6f,0x6d,
- 0x69,0x7a,0x65,0x64,0x20,0x73,0x68,0x6f,0x77,0x6e,0x61,0x6d,0x65,0x73,0x20,0x66,
- 0x6f,0x72,0x20,0x61,0x6c,0x6c,0x20,0x75,0x73,0x65,0x72,0x73,0x20,0x77,0x68,0x65,
- 0x6e,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,
- 0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x68,0x0,0x5a,
- 0x0,0x65,0x0,0x69,0x0,0x67,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,
- 0x0,0x20,0x0,0x43,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6b,0x0,0x74,
- 0x0,0x65,0x0,0x72,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x20,
- 0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,
- 0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x6d,0x0,0x6d,0x0,0x20,0x0,0x7a,
- 0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x6c,0x0,0x74,
- 0x0,0x65,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x37,
- 0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x74,0x68,0x65,0x20,0x6c,0x69,0x73,0x74,
- 0x20,0x6f,0x66,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x20,0x66,0x6f,
- 0x6c,0x64,0x65,0x72,0x73,0x20,0x79,0x6f,0x75,0x20,0x77,0x69,0x73,0x68,0x20,0x74,
- 0x6f,0x20,0x6d,0x75,0x74,0x65,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x52,0x0,0x5a,0x0,0x65,0x0,
- 0x69,0x0,0x67,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x20,0x0,
- 0x4c,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,
- 0x72,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x61,0x0,0x72,0x0,0x62,0x0,0x61,0x0,
- 0x72,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x43,0x0,0x68,0x0,0x61,0x0,0x72,0x0,
- 0x61,0x0,0x6b,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x2c,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x74,
- 0x68,0x65,0x20,0x6c,0x69,0x73,0x74,0x20,0x6f,0x66,0x20,0x63,0x68,0x61,0x72,0x61,
- 0x63,0x74,0x65,0x72,0x73,0x20,0x74,0x6f,0x20,0x70,0x61,0x69,0x72,0x20,0x77,0x69,
- 0x74,0x68,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x49,0x0,0x67,0x0,0x6e,0x0,0x6f,0x0,
- 0x72,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,
- 0x64,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x73,0x0,0x20,0x0,0x75,0x0,
- 0x6e,0x0,0x64,0x0,0x20,0x0,0x73,0x0,0x70,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,
- 0x20,0x0,0x6b,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,
- 0x54,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x62,0x0,0x2e,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x71,0x44,0x6f,0x20,0x6e,0x6f,0x74,0x20,0x6c,0x69,
- 0x73,0x74,0x65,0x6e,0x20,0x74,0x6f,0x20,0x6d,0x6f,0x64,0x20,0x63,0x61,0x6c,0x6c,
- 0x73,0x20,0x77,0x68,0x65,0x6e,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2c,0x20,
- 0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x69,0x6e,0x67,0x20,0x74,0x68,0x65,0x6d,0x20,
- 0x66,0x72,0x6f,0x6d,0x20,0x70,0x6c,0x61,0x79,0x69,0x6e,0x67,0x20,0x73,0x6f,0x75,
- 0x6e,0x64,0x73,0x20,0x6f,0x72,0x20,0x66,0x6f,0x63,0x75,0x73,0x69,0x6e,0x67,0x20,
- 0x61,0x74,0x74,0x65,0x6e,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x6e,0x20,0x74,0x68,0x65,
- 0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,
- 0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x4c,0x0,0x4d,0x0,0xf6,
- 0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x64,
- 0x0,0x75,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,
- 0x0,0xc4,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x75,0x0,0x6e,0x0,0x67,
- 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x69,0x0,0x63,
- 0x0,0x68,0x0,0x65,0x0,0x6e,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x21,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,
- 0x20,0x73,0x61,0x76,0x65,0x20,0x79,0x6f,0x75,0x72,0x20,0x63,0x68,0x61,0x6e,0x67,
- 0x65,0x73,0x3f,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0x4c,0x0,0x4d,0x0,0xf6,0x0,0x63,0x0,0x68,0x0,
- 0x74,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x20,0x0,
- 0x64,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0xc4,0x0,0x6e,0x0,
- 0x64,0x0,0x65,0x0,0x72,0x0,0x75,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,
- 0x20,0x0,0x62,0x0,0x65,0x0,0x68,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x65,0x0,
- 0x6e,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x44,0x6f,0x20,
- 0x79,0x6f,0x75,0x20,0x77,0x69,0x73,0x68,0x20,0x74,0x6f,0x20,0x6b,0x65,0x65,0x70,
- 0x20,0x79,0x6f,0x75,0x72,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x73,0x3f,0x7,0x0,
- 0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,
- 0x0,0xc,0x0,0x46,0x0,0x65,0x0,0x68,0x0,0x6c,0x0,0x65,0x0,0x72,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x45,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0x32,0x0,0x42,0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x69,0x0,0x73,0x0,0x65,0x0,
- 0x20,0x0,0x77,0x0,0x75,0x0,0x72,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,
- 0x76,0x0,0x65,0x0,0x72,0x0,0xe4,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,
- 0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x76,0x69,
- 0x64,0x65,0x6e,0x63,0x65,0x20,0x68,0x61,0x73,0x20,0x62,0x65,0x65,0x6e,0x20,0x6d,
- 0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,
- 0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x41,0x0,0x6c,
- 0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x4b,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x67,
- 0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x72,
- 0x0,0x77,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6e,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x45,0x78,0x70,0x61,0x6e,0x64,0x20,0x41,
- 0x6c,0x6c,0x20,0x43,0x61,0x74,0x65,0x67,0x6f,0x72,0x69,0x65,0x73,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0x14,0x0,0x45,0x0,0x69,0x0,0x6e,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,
- 0x64,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x46,
- 0x61,0x64,0x65,0x20,0x49,0x6e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x56,0x0,0x6f,0x0,0x72,
- 0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,
- 0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x64,
- 0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x46,0x61,
- 0x64,0x65,0x20,0x4f,0x75,0x74,0x20,0x50,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x7,
- 0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,
- 0x0,0x0,0x10,0x0,0x53,0x0,0x70,0x0,0x69,0x0,0x65,0x0,0x67,0x0,0x65,0x0,
- 0x6c,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x6c,0x69,
- 0x70,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,
- 0x3,0x0,0x0,0x0,0x36,0x0,0x47,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,
- 0x69,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x68,0x0,0x61,0x0,
- 0x72,0x0,0x61,0x0,0x6b,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x3a,0x0,
- 0xa,0x0,0x25,0x0,0x31,0x0,0x2f,0x0,0x25,0x0,0x32,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x17,0x47,0x65,0x6e,0x65,0x72,0x61,0x74,0x69,0x6e,0x67,0x20,
- 0x63,0x68,0x61,0x72,0x73,0x3a,0xa,0x25,0x31,0x2f,0x25,0x32,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xa,
- 0x0,0x57,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x5,0x47,0x75,0x61,0x72,0x64,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,
- 0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x53,0x0,
- 0x63,0x0,0x68,0x0,0x75,0x0,0x6c,0x0,0x64,0x0,0x69,0x0,0x67,0x0,0x21,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x47,0x75,0x69,0x6c,0x74,0x79,0x21,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0x16,0x0,0x4d,0x0,0x4f,0x0,0x4d,0x0,0x45,0x0,0x4e,0x0,0x54,
- 0x0,0x20,0x0,0x4d,0x0,0x41,0x0,0x4c,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x8,0x48,0x4f,0x4c,0x44,0x20,0x49,0x54,0x21,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x16,
- 0x0,0x4d,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x6d,
- 0x0,0x61,0x0,0x6c,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,
- 0x48,0x6f,0x6c,0x64,0x20,0x49,0x74,0x21,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,
- 0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x90,0x0,0x53,0x0,0x74,
- 0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x66,
- 0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x7a,0x0,0x75,0x0,0x20,0x0,0x73,
- 0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x6e,0x0,0x2c,
- 0x0,0x20,0x0,0x6f,0x0,0x68,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x75,
- 0x0,0x66,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x45,0x0,0x6e,
- 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x56,
- 0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x74,
- 0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x7a,0x0,0x75,0x0,0x20,0x0,0x77,
- 0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x5e,0x49,0x66,0x20,0x70,0x72,0x65,0x61,0x6e,0x69,0x6d,
- 0x20,0x69,0x73,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2c,0x20,0x64,0x69,0x73,
- 0x70,0x6c,0x61,0x79,0x20,0x74,0x68,0x65,0x20,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,
- 0x65,0x78,0x74,0x20,0x69,0x6d,0x6d,0x65,0x64,0x69,0x61,0x74,0x65,0x6c,0x79,0x20,
- 0x61,0x73,0x20,0x74,0x68,0x65,0x20,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,
- 0x20,0x70,0x6c,0x61,0x79,0x73,0x20,0x63,0x6f,0x6e,0x63,0x75,0x72,0x72,0x65,0x6e,
- 0x74,0x6c,0x79,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x42,0x0,0x69,0x0,0x6c,0x0,0x64,
- 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x28,0x0,0x2a,0x0,0x2e,0x0,0x70,0x0,0x6e,
- 0x0,0x67,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x49,0x6d,
- 0x61,0x67,0x65,0x73,0x20,0x28,0x2a,0x2e,0x70,0x6e,0x67,0x29,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x26,
- 0x0,0x4b,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x55,0x0,0x6e,
- 0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x68,
- 0x0,0x75,0x0,0x6e,0x0,0x67,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,
- 0x49,0x6d,0x6d,0x65,0x64,0x69,0x61,0x74,0x65,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,
- 0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x45,0x0,
- 0x72,0x0,0x68,0x0,0xf6,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,
- 0x65,0x0,0x20,0x0,0x47,0x0,0x65,0x0,0x73,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,
- 0x68,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x18,0x49,0x6e,0x63,0x72,0x65,0x61,0x73,0x65,0x20,0x74,0x68,0x65,0x20,
- 0x68,0x65,0x61,0x6c,0x74,0x68,0x20,0x62,0x61,0x72,0x2e,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x26,0x0,
- 0x49,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x74,0x0,0x65,0x0,
- 0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x2a,0x0,0x2e,0x0,0x69,0x0,
- 0x6e,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x49,
- 0x6e,0x69,0x20,0x46,0x69,0x6c,0x65,0x73,0x20,0x28,0x2a,0x2e,0x69,0x6e,0x69,0x29,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0x9e,0x0,0x4c,0x0,0xe4,0x0,0x73,0x0,0x73,0x0,0x74,0x0,0x20,
- 0x0,0x64,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x46,0x0,0x61,0x0,0x6c,
- 0x0,0x6c,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x72,0x0,0x6d,0x0,0x65,0x0,0x20,
- 0x0,0x65,0x0,0x72,0x0,0x68,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x6e,
- 0x0,0x2e,0x0,0xa,0x0,0x28,0x0,0x44,0x0,0x75,0x0,0x20,0x0,0x6b,0x0,0x61,
- 0x0,0x6e,0x0,0x6e,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,
- 0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6e,
- 0x0,0x20,0x0,0x45,0x0,0x69,0x0,0x6e,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6c,
- 0x0,0x6c,0x0,0x75,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x61,
- 0x0,0x6e,0x0,0x70,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x21,
- 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5a,0x4c,0x65,0x74,0x73,
- 0x20,0x79,0x6f,0x75,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x20,0x63,0x61,0x73,
- 0x65,0x20,0x61,0x6c,0x65,0x72,0x74,0x73,0x20,0x77,0x68,0x65,0x6e,0x20,0x65,0x6e,
- 0x61,0x62,0x6c,0x65,0x64,0x2e,0xa,0x28,0x59,0x6f,0x75,0x20,0x63,0x61,0x6e,0x20,
- 0x73,0x65,0x74,0x20,0x79,0x6f,0x75,0x72,0x20,0x70,0x72,0x65,0x66,0x65,0x72,0x65,
- 0x6e,0x63,0x65,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x53,0x65,0x74,0x74,
- 0x69,0x6e,0x67,0x73,0x21,0x29,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x4c,0x0,0x61,0x0,0x64,
- 0x0,0x65,0x0,0x20,0x0,0x42,0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x69,0x0,0x73,
- 0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x69,
- 0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x2e,0x0,0x69,0x0,0x6e,0x0,0x69,
- 0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x69,0x0,0x2e,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x20,0x4c,0x6f,0x61,0x64,0x20,0x65,0x76,0x69,
- 0x64,0x65,0x6e,0x63,0x65,0x20,0x66,0x72,0x6f,0x6d,0x20,0x61,0x6e,0x20,0x2e,0x69,
- 0x6e,0x69,0x20,0x66,0x69,0x6c,0x65,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,
- 0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x4d,0x0,0x61,
- 0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x6,0x4d,0x61,0x73,0x74,0x65,0x72,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,
- 0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4e,0x0,0x61,
- 0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x7,
- 0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,
- 0x0,0x0,0x4c,0x0,0x53,0x0,0x70,0x0,0x69,0x0,0x65,0x0,0x67,0x0,0x65,0x0,
- 0x6c,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x45,0x0,
- 0x6d,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,
- 0x69,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x43,0x0,0x68,0x0,0x61,0x0,
- 0x72,0x0,0x61,0x0,0x6b,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x2e,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2c,0x4d,0x69,0x72,0x72,0x6f,0x72,0x20,
- 0x79,0x6f,0x75,0x72,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x27,0x73,
- 0x20,0x65,0x6d,0x6f,0x74,0x65,0x73,0x20,0x77,0x68,0x65,0x6e,0x20,0x63,0x68,0x65,
- 0x63,0x6b,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,
- 0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x4d,0x0,0x75,0x0,0x73,0x0,
- 0x69,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x4d,0x75,0x73,
- 0x69,0x63,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,
- 0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x4e,0x0,0x61,0x0,0x6d,0x0,0x65,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e,0x61,0x6d,0x65,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x44,
- 0x0,0x4e,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x31,
- 0x0,0xa,0x0,0x42,0x0,0x69,0x0,0x6c,0x0,0x64,0x0,0x3a,0x0,0x20,0x0,0x25,
- 0x0,0x32,0x0,0xa,0x0,0x42,0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x72,
- 0x0,0x65,0x0,0x69,0x0,0x62,0x0,0x75,0x0,0x6e,0x0,0x67,0x0,0x3a,0x0,0xa,
- 0x0,0x25,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x22,0x4e,0x61,
- 0x6d,0x65,0x3a,0x20,0x25,0x31,0xa,0x49,0x6d,0x61,0x67,0x65,0x3a,0x20,0x25,0x32,
- 0xa,0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3a,0xa,0x25,0x33,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0x3e,0x0,0x47,0x0,0x65,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x7a,
- 0x0,0x75,0x0,0x20,0x0,0x25,0x0,0x31,0x0,0x20,0x0,0x66,0x0,0xfc,0x0,0x72,
- 0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x43,0x0,0x4d,0x0,0x20,
- 0x0,0x44,0x0,0x6f,0x0,0x6b,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,
- 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x4e,0x61,0x76,0x69,
- 0x67,0x61,0x74,0x65,0x20,0x74,0x6f,0x20,0x25,0x31,0x20,0x66,0x6f,0x72,0x20,0x74,
- 0x68,0x65,0x20,0x43,0x4d,0x20,0x64,0x6f,0x63,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,
- 0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x4b,
- 0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x4,0x4e,0x6f,0x6e,0x65,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x45,0x0,0x49,0x0,0x4e,
- 0x0,0x53,0x0,0x50,0x0,0x52,0x0,0x55,0x0,0x43,0x0,0x48,0x0,0x21,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x4f,0x42,0x4a,0x45,0x43,0x54,0x49,0x4f,
- 0x4e,0x21,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,
- 0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x45,0x0,0x69,0x0,0x6e,0x0,0x73,0x0,0x70,
- 0x0,0x72,0x0,0x75,0x0,0x63,0x0,0x68,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0xa,0x4f,0x62,0x6a,0x65,0x63,0x74,0x69,0x6f,0x6e,0x21,0x7,0x0,
- 0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,
- 0x0,0x28,0x0,0x4f,0x0,0x68,0x0,0x6a,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x64,
- 0x0,0x75,0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x73,
- 0x0,0x74,0x0,0x75,0x0,0x6d,0x0,0x6d,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x13,0x4f,0x6f,0x70,0x73,0x2c,0x20,0x79,0x6f,0x75,0x27,0x72,0x65,
- 0x20,0x6d,0x75,0x74,0x65,0x64,0x21,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x49,0x0,0x6e,0x0,
- 0x76,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0xf6,0x0,
- 0x66,0x0,0x66,0x0,0x6e,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x20,0x49,0x6e,0x76,0x65,0x6e,0x74,0x6f,0x72,
- 0x79,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,
- 0x3,0x0,0x0,0x0,0x10,0x0,0x50,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x77,0x0,
- 0x6f,0x0,0x72,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x50,
- 0x61,0x73,0x73,0x77,0x6f,0x72,0x64,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x47,0x0,0x65,0x0,
- 0x73,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x72,0x0,0x74,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0xa,0x50,0x61,0x73,0x73,0x77,0x6f,0x72,0x64,0x65,0x64,0x7,
- 0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,
- 0x0,0x0,0x1e,0x0,0x5a,0x0,0x75,0x0,0x66,0x0,0xe4,0x0,0x6c,0x0,0x6c,0x0,
- 0x69,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x4c,0x0,0x69,0x0,0x65,0x0,
- 0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x50,0x6c,0x61,0x79,0x20,
- 0x52,0x61,0x6e,0x64,0x6f,0x6d,0x20,0x53,0x6f,0x6e,0x67,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x4c,0x0,
- 0x5a,0x0,0x65,0x0,0x69,0x0,0x67,0x0,0x74,0x0,0x20,0x0,0x65,0x0,0x69,0x0,
- 0x6e,0x0,0x65,0x0,0x20,0x0,0x41,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,
- 0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x72,0x0,
- 0x20,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x70,0x0,0x72,0x0,
- 0x65,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x42,0x50,0x6c,0x61,0x79,0x20,0x61,0x20,0x73,0x69,0x6e,0x67,
- 0x6c,0x65,0x2d,0x73,0x68,0x6f,0x74,0x20,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,
- 0x6e,0x20,0x61,0x73,0x20,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x20,0x62,0x79,0x20,
- 0x74,0x68,0x65,0x20,0x65,0x6d,0x6f,0x74,0x65,0x20,0x77,0x68,0x65,0x6e,0x20,0x63,
- 0x68,0x65,0x63,0x6b,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x8e,0x0,0x53,0x0,0x70,0x0,
- 0x69,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,
- 0x20,0x0,0x52,0x0,0x65,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x69,0x0,
- 0x65,0x0,0x72,0x0,0x75,0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x53,0x0,0x6f,0x0,
- 0x75,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,
- 0x41,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,
- 0x6e,0x0,0x20,0x0,0x6d,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x65,0x0,
- 0x72,0x0,0x20,0x0,0x6e,0x0,0xe4,0x0,0x63,0x0,0x68,0x0,0x73,0x0,0x74,0x0,
- 0x65,0x0,0x6e,0x0,0x20,0x0,0x4e,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x72,0x0,
- 0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x5d,0x50,0x6c,0x61,0x79,0x20,0x72,0x65,0x61,0x6c,0x69,0x7a,0x61,0x74,
- 0x69,0x6f,0x6e,0x20,0x73,0x6f,0x75,0x6e,0x64,0x20,0x61,0x6e,0x64,0x20,0x61,0x6e,
- 0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x76,
- 0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x20,0x6f,0x6e,0x20,0x74,0x68,0x65,0x20,0x6e,
- 0x65,0x78,0x74,0x20,0x73,0x70,0x6f,0x6b,0x65,0x6e,0x20,0x6d,0x65,0x73,0x73,0x61,
- 0x67,0x65,0x20,0x77,0x68,0x65,0x6e,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2e,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0x6,0x0,0x56,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x3,0x50,0x72,0x65,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x56,0x0,0x6f,0x0,
- 0x72,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0,
- 0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x50,0x72,0x65,
- 0x61,0x6e,0x69,0x6d,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x7c,0x0,0x50,0x0,0x72,0x0,0xe4,0x0,0x73,
- 0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,
- 0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x42,
- 0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x69,0x0,0x73,0x0,0x73,0x0,0x74,0x0,0xfc,
- 0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6e,
- 0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,
- 0x0,0x6e,0x0,0xe4,0x0,0x63,0x0,0x68,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6e,
- 0x0,0x20,0x0,0x4e,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x69,0x0,0x63,
- 0x0,0x68,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x46,0x50,0x72,
- 0x65,0x73,0x65,0x6e,0x74,0x20,0x74,0x68,0x69,0x73,0x20,0x70,0x69,0x65,0x63,0x65,
- 0x20,0x6f,0x66,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x74,0x6f,0x20,
- 0x65,0x76,0x65,0x72,0x79,0x6f,0x6e,0x65,0x20,0x6f,0x6e,0x20,0x79,0x6f,0x75,0x72,
- 0x20,0x6e,0x65,0x78,0x74,0x20,0x73,0x70,0x6f,0x6b,0x65,0x6e,0x20,0x6d,0x65,0x73,
- 0x73,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x47,0x0,0x72,0x0,0x75,0x0,0x6e,
- 0x0,0x64,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x52,0x65,
- 0x61,0x73,0x6f,0x6e,0x3a,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,
- 0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x5a,0x0,0x41,0x0,0x6b,0x0,0x74,0x0,
- 0x75,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x69,0x0,0x65,0x0,0x72,0x0,
- 0x74,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x44,0x0,0x65,0x0,
- 0x73,0x0,0x69,0x0,0x67,0x0,0x6e,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,
- 0x20,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x55,0x0,0x49,0x0,
- 0x20,0x0,0x45,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,
- 0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3d,0x52,0x65,0x66,
- 0x72,0x65,0x73,0x68,0x20,0x74,0x68,0x65,0x20,0x74,0x68,0x65,0x6d,0x65,0x20,0x61,
- 0x6e,0x64,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x61,0x6c,0x6c,0x20,0x6f,0x66,
- 0x20,0x74,0x68,0x65,0x20,0x75,0x69,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,
- 0x20,0x74,0x6f,0x20,0x6d,0x61,0x74,0x63,0x68,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,
- 0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x41,
- 0x0,0x75,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x68,0x0,0x65,0x0,0x6e,0x0,0x20,
- 0x0,0x6e,0x0,0x65,0x0,0x75,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x65,
- 0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x52,0x65,0x6c,0x6f,
- 0x61,0x64,0x20,0x74,0x68,0x65,0x6d,0x65,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,
- 0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xb2,0x0,0x45,0x0,0x6e,
- 0x0,0x74,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x64,
- 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x6b,0x0,0x74,0x0,0x75,0x0,0x65,
- 0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,
- 0x0,0x73,0x0,0x77,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x6e,
- 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x4c,0x0,0x69,0x0,0x73,
- 0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x73,
- 0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x65,
- 0x0,0x6e,0x0,0x20,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x67,0x0,0x69,0x0,0x6e,
- 0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x4f,0x0,0x72,0x0,0x64,
- 0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x65,0x0,0x64,
- 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x2e,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x60,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x74,
- 0x68,0x65,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x6c,0x79,0x20,0x73,0x65,0x6c,
- 0x65,0x63,0x74,0x65,0x64,0x20,0x69,0x6e,0x69,0x73,0x77,0x61,0x70,0x20,0x66,0x72,
- 0x6f,0x6d,0x20,0x74,0x68,0x65,0x20,0x6c,0x69,0x73,0x74,0x20,0x61,0x6e,0x64,0x20,
- 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x6f,0x72,
- 0x69,0x67,0x69,0x6e,0x61,0x6c,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,
- 0x20,0x66,0x6f,0x6c,0x64,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,
- 0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x5c,0x0,0x45,0x0,0x6e,
- 0x0,0x74,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x64,
- 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x6b,0x0,0x74,0x0,0x75,0x0,0x65,
- 0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x67,0x0,0x65,
- 0x0,0x77,0x0,0xe4,0x0,0x68,0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x20,
- 0x0,0x53,0x0,0x6f,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x66,0x0,0x66,
- 0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x2b,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x63,0x75,0x72,
- 0x72,0x65,0x6e,0x74,0x6c,0x79,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,
- 0x73,0x6f,0x75,0x6e,0x64,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x2e,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0x36,0x0,0x46,0x0,0x6f,0x0,0x72,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,
- 0x20,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x4d,0x0,
- 0x6f,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,
- 0x20,0x0,0x61,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x38,0x52,0x65,0x71,0x75,0x65,0x73,0x74,0x20,0x74,0x68,0x65,0x20,0x61,0x74,0x74,
- 0x65,0x6e,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x66,0x20,0x74,0x68,0x65,0x20,0x63,0x75,
- 0x72,0x72,0x65,0x6e,0x74,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x27,0x73,0x20,0x6d,
- 0x6f,0x64,0x65,0x72,0x61,0x74,0x6f,0x72,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,
- 0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x6a,0x0,0x53,0x0,
- 0x65,0x0,0x74,0x0,0x7a,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,
- 0x20,0x0,0x5a,0x0,0x75,0x0,0x73,0x0,0x61,0x0,0x74,0x0,0x7a,0x0,0x68,0x0,
- 0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x67,0x0,0x72,0x0,0x75,0x0,
- 0x6e,0x0,0x64,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,
- 0x73,0x0,0x20,0x0,0x43,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6b,0x0,
- 0x74,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x20,0x0,0x7a,0x0,0x75,0x0,0x72,0x0,
- 0xfc,0x0,0x63,0x0,0x6b,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x3f,0x52,0x65,0x73,0x65,0x74,0x20,0x79,0x6f,0x75,0x72,0x20,0x63,0x68,0x61,0x72,
- 0x61,0x63,0x74,0x65,0x72,0x27,0x73,0x20,0x73,0x75,0x70,0x70,0x6c,0x65,0x6d,0x65,
- 0x6e,0x74,0x61,0x72,0x79,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,
- 0x20,0x74,0x6f,0x20,0x69,0x74,0x73,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x2e,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0x2e,0x0,0x5a,0x0,0x75,0x0,0x72,0x0,0xfc,0x0,0x63,0x0,0x6b,
- 0x0,0x20,0x0,0x7a,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x53,0x0,0x65,0x0,0x72,
- 0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,
- 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1f,0x52,0x65,0x74,0x75,
- 0x72,0x6e,0x20,0x62,0x61,0x63,0x6b,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x73,
- 0x65,0x72,0x76,0x65,0x72,0x20,0x6c,0x69,0x73,0x74,0x2e,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x22,0x0,
- 0x49,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x72,0x0,
- 0x20,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,
- 0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x61,0x76,0x65,0x20,
- 0x49,0x6e,0x76,0x65,0x6e,0x74,0x6f,0x72,0x79,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,
- 0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x96,0x0,0x53,0x0,
- 0x70,0x0,0x65,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x74,0x0,
- 0x20,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0xc4,0x0,0x6e,0x0,
- 0x64,0x0,0x65,0x0,0x72,0x0,0x75,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,
- 0x20,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x73,0x0,
- 0x65,0x0,0x6d,0x0,0x20,0x0,0x42,0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x69,0x0,
- 0x73,0x0,0x73,0x0,0x74,0x0,0xfc,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x75,0x0,
- 0x6e,0x0,0x64,0x0,0x20,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x63,0x0,
- 0x6b,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,
- 0x75,0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x65,0x0,0x72,0x0,0x76,0x0,0x65,0x0,
- 0x72,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x48,0x53,0x61,0x76,
- 0x65,0x20,0x61,0x6e,0x79,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x73,0x20,0x6d,0x61,
- 0x64,0x65,0x20,0x74,0x6f,0x20,0x74,0x68,0x69,0x73,0x20,0x70,0x69,0x65,0x63,0x65,
- 0x20,0x6f,0x66,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x61,0x6e,0x64,
- 0x20,0x73,0x65,0x6e,0x64,0x20,0x74,0x68,0x65,0x6d,0x20,0x74,0x6f,0x20,0x73,0x65,
- 0x72,0x76,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,
- 0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x4c,0x0,0x53,0x0,0x70,0x0,0x65,0x0,
- 0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x42,0x0,
- 0x65,0x0,0x77,0x0,0x65,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x69,0x0,
- 0x6e,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x20,0x0,
- 0x2e,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x74,0x0,
- 0x65,0x0,0x69,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x53,
- 0x61,0x76,0x65,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x74,0x6f,0x20,
- 0x61,0x6e,0x20,0x2e,0x69,0x6e,0x69,0x20,0x66,0x69,0x6c,0x65,0x2e,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0xa,0x0,0x53,0x0,0x75,0x0,0x63,0x0,0x68,0x0,0x65,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x6,0x53,0x65,0x61,0x72,0x63,0x68,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x6e,0x0,
- 0x57,0x0,0xe4,0x0,0x68,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x69,0x0,
- 0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x43,0x0,0x68,0x0,0x61,0x0,0x72,0x0,
- 0x61,0x0,0x6b,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6d,0x0,0x69,0x0,
- 0x74,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0x75,0x0,
- 0x20,0x0,0x67,0x0,0x65,0x0,0x70,0x0,0x61,0x0,0x61,0x0,0x72,0x0,0x74,0x0,
- 0x20,0x0,0x73,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0xf6,0x0,
- 0x63,0x0,0x68,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x29,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x61,0x20,
- 0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x20,0x79,0x6f,0x75,0x20,0x77,0x69,
- 0x73,0x68,0x20,0x74,0x6f,0x20,0x70,0x61,0x69,0x72,0x20,0x77,0x69,0x74,0x68,0x2e,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0xc,0x0,0x53,0x0,0x65,0x0,0x72,0x0,0x76,0x0,0x65,0x0,0x72,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53,0x65,0x72,0x76,0x65,0x72,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x1,0xfe,0x0,0x57,0x0,0xe4,0x0,0x68,0x0,0x6c,0x0,0x65,0x0,0x20,
- 0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x53,0x0,0x6f,
- 0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x66,0x0,0x66,0x0,0x65,0x0,0x6b,
- 0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x62,0x0,0x65,
- 0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6e,0x0,0xe4,
- 0x0,0x63,0x0,0x68,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x27,
- 0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x27,
- 0x0,0x20,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x70,0x0,0x69,0x0,0x65,0x0,0x6c,
- 0x0,0x74,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x72,0x0,0x64,0x0,0x2e,0x0,0x20,
- 0x0,0x4c,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,
- 0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x66,0x0,0x20,0x0,0x53,
- 0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,
- 0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x65,
- 0x0,0x6d,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x2d,0x0,0x53,0x0,0x6f,0x0,0x75,
- 0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x7a,0x0,0x75,0x0,0x20,0x0,0x76,0x0,0x65,
- 0x0,0x72,0x0,0x77,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x2e,
- 0x0,0xa,0x0,0x42,0x0,0x65,0x0,0x61,0x0,0x72,0x0,0x62,0x0,0x65,0x0,0x69,
- 0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x72,0x0,0x63,
- 0x0,0x68,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x70,0x0,0x70,0x0,0x65,0x0,0x6e,
- 0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x45,0x0,0x6e,0x0,0x74,
- 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0xfc,0x0,0x63,0x0,0x6b,
- 0x0,0x65,0x0,0x6e,0x0,0x2c,0x0,0x20,0x0,0x5b,0x0,0x58,0x0,0x5d,0x0,0x20,
- 0x0,0x7a,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x66,
- 0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x2e,0x0,0x20,0x0,0x44,
- 0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x72,0x0,0x64,0x0,0x20,
- 0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x73,0x0,0x65,
- 0x0,0x2f,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x74,
- 0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x2f,0x0,0x3c,0x0,0x63,0x0,0x68,0x0,0x61,
- 0x0,0x72,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x3e,0x0,0x2f,0x0,0x73,
- 0x0,0x6f,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x74,
- 0x0,0x2e,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x67,0x0,0x65,0x0,0x73,
- 0x0,0x70,0x0,0x65,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x74,
- 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe1,0x53,0x65,0x74,0x20,
- 0x61,0x20,0x73,0x6f,0x75,0x6e,0x64,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x20,0x74,
- 0x6f,0x20,0x70,0x6c,0x61,0x79,0x20,0x6f,0x6e,0x20,0x79,0x6f,0x75,0x72,0x20,0x6e,
- 0x65,0x78,0x74,0x20,0x27,0x50,0x72,0x65,0x61,0x6e,0x69,0x6d,0x27,0x2e,0x20,0x4c,
- 0x65,0x61,0x76,0x69,0x6e,0x67,0x20,0x69,0x74,0x20,0x6f,0x6e,0x20,0x44,0x65,0x66,
- 0x61,0x75,0x6c,0x74,0x20,0x77,0x69,0x6c,0x6c,0x20,0x75,0x73,0x65,0x20,0x74,0x68,
- 0x65,0x20,0x65,0x6d,0x6f,0x74,0x65,0x2d,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x20,
- 0x73,0x6f,0x75,0x6e,0x64,0x20,0x28,0x69,0x66,0x20,0x61,0x6e,0x79,0x29,0x2e,0xa,
- 0x45,0x64,0x69,0x74,0x20,0x62,0x79,0x20,0x74,0x79,0x70,0x69,0x6e,0x67,0x20,0x61,
- 0x6e,0x64,0x20,0x70,0x72,0x65,0x73,0x73,0x69,0x6e,0x67,0x20,0x45,0x6e,0x74,0x65,
- 0x72,0x2c,0x20,0x5b,0x58,0x5d,0x20,0x74,0x6f,0x20,0x72,0x65,0x6d,0x6f,0x76,0x65,
- 0x2e,0x20,0x54,0x68,0x69,0x73,0x20,0x73,0x61,0x76,0x65,0x73,0x20,0x74,0x6f,0x20,
- 0x79,0x6f,0x75,0x72,0x20,0x62,0x61,0x73,0x65,0x2f,0x63,0x68,0x61,0x72,0x61,0x63,
- 0x74,0x65,0x72,0x73,0x2f,0x3c,0x63,0x68,0x61,0x72,0x6e,0x61,0x6d,0x65,0x3e,0x2f,
- 0x73,0x6f,0x75,0x6e,0x64,0x6c,0x69,0x73,0x74,0x2e,0x69,0x6e,0x69,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x1,
- 0x84,0x0,0x53,0x0,0x65,0x0,0x74,0x0,0x7a,0x0,0x20,0x0,0x65,0x0,0x69,0x0,
- 0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x27,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,
- 0x73,0x0,0x77,0x0,0x61,0x0,0x70,0x0,0x27,0x0,0x2c,0x0,0x20,0x0,0x6f,0x0,
- 0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,
- 0x6e,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,
- 0x6e,0x0,0x20,0x0,0x43,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6b,0x0,
- 0x74,0x0,0x65,0x0,0x72,0x0,0x6f,0x0,0x72,0x0,0x64,0x0,0x6e,0x0,0x65,0x0,
- 0x72,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,
- 0x69,0x0,0x6e,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x61,0x0,0x6b,0x0,0x74,0x0,
- 0x75,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x43,0x0,
- 0x68,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6b,0x0,0x74,0x0,0x65,0x0,0x72,0x0,
- 0x2e,0x0,0xa,0x0,0x42,0x0,0x65,0x0,0x61,0x0,0x72,0x0,0x62,0x0,0x65,0x0,
- 0x69,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x72,0x0,
- 0x63,0x0,0x68,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x70,0x0,0x70,0x0,0x65,0x0,
- 0x6e,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x45,0x0,0x6e,0x0,
- 0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0xfc,0x0,0x63,0x0,
- 0x6b,0x0,0x65,0x0,0x6e,0x0,0x2c,0x0,0x20,0x0,0x5b,0x0,0x58,0x0,0x5d,0x0,
- 0x20,0x0,0x7a,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,
- 0x66,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x2e,0x0,0x20,0x0,
- 0x44,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x72,0x0,0x64,0x0,
- 0x20,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x73,0x0,
- 0x65,0x0,0x2f,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x73,0x0,0x77,0x0,0x61,0x0,
- 0x70,0x0,0x73,0x0,0x2e,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x67,0x0,
- 0x65,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,
- 0x72,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb4,0x53,
- 0x65,0x74,0x20,0x61,0x6e,0x20,0x27,0x69,0x6e,0x69,0x73,0x77,0x61,0x70,0x27,0x2c,
- 0x20,0x6f,0x72,0x20,0x61,0x6e,0x20,0x61,0x6c,0x74,0x65,0x72,0x6e,0x61,0x74,0x69,
- 0x76,0x65,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x20,0x66,0x6f,0x6c,
- 0x64,0x65,0x72,0x20,0x74,0x6f,0x20,0x72,0x65,0x66,0x65,0x72,0x20,0x74,0x6f,0x20,
- 0x66,0x72,0x6f,0x6d,0x20,0x79,0x6f,0x75,0x72,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,
- 0x74,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x2e,0xa,0x45,0x64,0x69,
- 0x74,0x20,0x62,0x79,0x20,0x74,0x79,0x70,0x69,0x6e,0x67,0x20,0x61,0x6e,0x64,0x20,
- 0x70,0x72,0x65,0x73,0x73,0x69,0x6e,0x67,0x20,0x45,0x6e,0x74,0x65,0x72,0x2c,0x20,
- 0x5b,0x58,0x5d,0x20,0x74,0x6f,0x20,0x72,0x65,0x6d,0x6f,0x76,0x65,0x2e,0x20,0x54,
- 0x68,0x69,0x73,0x20,0x73,0x61,0x76,0x65,0x73,0x20,0x74,0x6f,0x20,0x79,0x6f,0x75,
- 0x72,0x20,0x62,0x61,0x73,0x65,0x2f,0x69,0x6e,0x69,0x73,0x77,0x61,0x70,0x73,0x2e,
- 0x69,0x6e,0x69,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0x5a,0x0,0x53,0x0,0x65,0x0,0x74,0x0,0x7a,0x0,
- 0x74,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x41,0x0,0x75,0x0,
- 0x73,0x0,0x64,0x0,0x72,0x0,0x75,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x66,0x0,
- 0xfc,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,
- 0xe4,0x0,0x63,0x0,0x68,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x4e,0x0,
- 0x61,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0,
- 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x38,0x53,0x65,0x74,0x20,0x79,
- 0x6f,0x75,0x72,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x27,0x73,0x20,
- 0x65,0x6d,0x6f,0x74,0x65,0x20,0x74,0x6f,0x20,0x70,0x6c,0x61,0x79,0x20,0x6f,0x6e,
- 0x20,0x79,0x6f,0x75,0x72,0x20,0x6e,0x65,0x78,0x74,0x20,0x6d,0x65,0x73,0x73,0x61,
- 0x67,0x65,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x53,0x0,0x65,0x0,0x74,0x0,0x7a,0x0,
- 0x74,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,
- 0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,
- 0x65,0x0,0x73,0x0,0x20,0x0,0x43,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x61,0x0,
- 0x6b,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x2e,0x53,0x65,0x74,0x20,0x79,0x6f,0x75,0x72,0x20,0x63,0x68,
- 0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x27,0x73,0x20,0x73,0x75,0x70,0x70,0x6c,0x65,
- 0x6d,0x65,0x6e,0x74,0x61,0x72,0x79,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,
- 0x6e,0x64,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x45,0x0,0x69,0x0,0x6e,0x0,0x73,0x0,
- 0x74,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x75,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,
- 0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x74,0x74,0x69,
- 0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x53,0x0,0x66,0x0,0x78,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x53,0x66,0x78,0x7,0x0,0x0,0x0,0x9,0x43,
- 0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x68,0x0,0x53,
- 0x0,0x63,0x0,0x68,0x0,0xfc,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x74,
- 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x42,0x0,0x69,0x0,0x6c,
- 0x0,0x64,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x72,0x0,0x6d,0x0,0x20,
- 0x0,0x62,0x0,0x65,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,
- 0x0,0x6e,0x0,0xe4,0x0,0x63,0x0,0x68,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6e,
- 0x0,0x20,0x0,0x4e,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x69,0x0,0x63,
- 0x0,0x68,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x35,
- 0x53,0x68,0x61,0x6b,0x65,0x20,0x74,0x68,0x65,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,
- 0x20,0x6f,0x6e,0x20,0x6e,0x65,0x78,0x74,0x20,0x73,0x70,0x6f,0x6b,0x65,0x6e,0x20,
- 0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x77,0x68,0x65,0x6e,0x20,0x63,0x68,0x65,
- 0x63,0x6b,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,
- 0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x41,0x0,0x6e,0x0,0x7a,0x0,
- 0x65,0x0,0x69,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x65,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x68,0x6f,0x77,0x6e,0x61,0x6d,
- 0x65,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,
- 0x3,0x0,0x0,0x0,0x18,0x0,0x41,0x0,0x6e,0x0,0x7a,0x0,0x65,0x0,0x69,0x0,
- 0x67,0x0,0x65,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x53,0x68,0x6f,0x77,0x6e,0x61,0x6d,0x65,0x73,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0x12,0x0,0x5a,0x0,0x75,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x61,
- 0x0,0x75,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,
- 0x53,0x70,0x65,0x63,0x74,0x61,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,
- 0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4c,0x0,
- 0x69,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x70,0x0,
- 0x70,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x53,
- 0x74,0x6f,0x70,0x20,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x53,0x6f,0x6e,0x67,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0x30,0x0,0x45,0x0,0x72,0x0,0x66,0x0,0x6f,0x0,0x6c,0x0,0x67,
- 0x0,0x72,0x0,0x65,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x67,0x0,0x65,
- 0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x72,
- 0x0,0x74,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x36,0x53,0x75,
- 0x63,0x63,0x65,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x73,0x61,0x76,0x65,0x64,0x2c,
- 0x20,0x65,0x64,0x69,0x74,0x20,0x64,0x6f,0x63,0x20,0x61,0x6e,0x64,0x20,0x63,0x6d,
- 0x64,0x6f,0x63,0x20,0x6c,0x69,0x6e,0x6b,0x20,0x6f,0x6e,0x20,0x74,0x68,0x65,0x20,
- 0x69,0x6e,0x69,0x21,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x4c,0x0,0x57,0x0,0x65,0x0,0x63,0x0,0x68,
- 0x0,0x73,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x7a,0x0,0x77,0x0,0x69,0x0,0x73,
- 0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x41,0x0,0x72,0x0,0x65,
- 0x0,0x61,0x0,0x6c,0x0,0x2d,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x20,
- 0x0,0x4d,0x0,0x75,0x0,0x73,0x0,0x69,0x0,0x6b,0x0,0x6c,0x0,0x69,0x0,0x73,
- 0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x53,0x77,
- 0x69,0x74,0x63,0x68,0x20,0x62,0x65,0x74,0x77,0x65,0x65,0x6e,0x20,0x41,0x72,0x65,
- 0x61,0x73,0x20,0x61,0x6e,0x64,0x20,0x4d,0x75,0x73,0x69,0x63,0x20,0x6c,0x69,0x73,
- 0x74,0x73,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,
- 0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x57,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x73,
- 0x0,0x65,0x0,0x6c,0x0,0x74,0x0,0x20,0x0,0x7a,0x0,0x75,0x0,0x6d,0x0,0x20,
- 0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x62,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x6e,
- 0x0,0x20,0x0,0x49,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,
- 0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x53,0x77,
- 0x69,0x74,0x63,0x68,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x74,0x6f,
- 0x20,0x67,0x6c,0x6f,0x62,0x61,0x6c,0x20,0x69,0x6e,0x76,0x65,0x6e,0x74,0x6f,0x72,
- 0x79,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,
- 0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x57,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x73,
- 0x0,0x65,0x0,0x6c,0x0,0x74,0x0,0x20,0x0,0x7a,0x0,0x75,0x0,0x6d,0x0,0x20,
- 0x0,0x65,0x0,0x69,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,
- 0x0,0x49,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x72,
- 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x25,0x53,0x77,0x69,0x74,
- 0x63,0x68,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x74,0x6f,0x20,0x70,
- 0x72,0x69,0x76,0x61,0x74,0x65,0x20,0x69,0x6e,0x76,0x65,0x6e,0x74,0x6f,0x72,0x79,
- 0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,
- 0x3,0x0,0x0,0x0,0x1e,0x0,0x53,0x0,0x79,0x0,0x6e,0x0,0x63,0x0,0x68,0x0,
- 0x72,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x73,0x0,0x69,0x0,0x65,0x0,0x72,0x0,
- 0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x53,0x79,0x6e,
- 0x63,0x68,0x72,0x6f,0x6e,0x69,0x7a,0x65,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,
- 0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4e,0x0,0x49,
- 0x0,0x4d,0x0,0x4d,0x0,0x20,0x0,0x44,0x0,0x41,0x0,0x53,0x0,0x21,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x54,0x41,0x4b,0x45,0x20,0x54,0x48,0x41,
- 0x54,0x21,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,
- 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4e,0x0,0x69,0x0,0x6d,0x0,0x6d,0x0,0x20,
- 0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0xa,0x54,0x61,0x6b,0x65,0x20,0x54,0x68,0x61,0x74,0x21,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xe,
- 0x0,0x42,0x0,0x65,0x0,0x6e,0x0,0x75,0x0,0x74,0x0,0x7a,0x0,0x74,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x61,0x6b,0x65,0x6e,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0x34,0x0,0x44,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x4e,0x0,0x61,0x0,0x63,0x0,
- 0x68,0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x69,0x0,
- 0x73,0x0,0x74,0x0,0x20,0x0,0x7a,0x0,0x75,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,
- 0x6e,0x0,0x67,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x54,
- 0x68,0x65,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x69,0x73,0x20,0x74,0x6f,
- 0x6f,0x20,0x6c,0x6f,0x6e,0x67,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x74,0x0,0x44,0x0,0x61,0x0,
- 0x73,0x0,0x20,0x0,0x42,0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x69,0x0,0x73,0x0,
- 0x73,0x0,0x74,0x0,0xfc,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x64,0x0,0x61,0x0,
- 0x73,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x61,0x0,
- 0x72,0x0,0x62,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x74,0x0,0x20,0x0,
- 0x68,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x74,0x0,
- 0x20,0x0,0x73,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x76,0x0,0x65,0x0,
- 0x72,0x0,0xe4,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x2e,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x36,0x54,0x68,0x65,0x20,0x70,0x69,0x65,
- 0x63,0x65,0x20,0x6f,0x66,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x79,
- 0x6f,0x75,0x27,0x76,0x65,0x20,0x62,0x65,0x65,0x6e,0x20,0x65,0x64,0x69,0x74,0x69,
- 0x6e,0x67,0x20,0x68,0x61,0x73,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x64,0x2e,0x7,
- 0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,
- 0x0,0x0,0x80,0x0,0x44,0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x7a,0x0,
- 0x65,0x0,0x69,0x0,0x67,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,
- 0x20,0x0,0x41,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0,
- 0x6f,0x0,0x6e,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x70,0x0,
- 0x69,0x0,0x65,0x0,0x6c,0x0,0x66,0x0,0x65,0x0,0x6c,0x0,0x64,0x0,0x20,0x0,
- 0x73,0x0,0x6f,0x0,0x62,0x0,0x61,0x0,0x6c,0x0,0x64,0x0,0x20,0x0,0x65,0x0,
- 0x73,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x6b,0x0,0x6c,0x0,
- 0x69,0x0,0x63,0x0,0x6b,0x0,0x74,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x72,0x0,
- 0x64,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x49,0x54,0x68,0x69,
- 0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x74,
- 0x68,0x65,0x20,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x20,0x69,0x6e,0x20,
- 0x74,0x68,0x65,0x20,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x20,0x61,0x73,0x20,
- 0x73,0x6f,0x6f,0x6e,0x20,0x61,0x73,0x20,0x69,0x74,0x20,0x69,0x73,0x20,0x70,0x72,
- 0x65,0x73,0x73,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x1,0x50,0x0,0x44,0x0,0x69,0x0,0x65,
- 0x0,0x73,0x0,0x20,0x0,0x7a,0x0,0x65,0x0,0x69,0x0,0x67,0x0,0x74,0x0,0x20,
- 0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x43,0x0,0x68,0x0,0x61,0x0,0x72,
- 0x0,0x61,0x0,0x6b,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x20,0x0,0x65,
- 0x0,0x69,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x5a,
- 0x0,0x77,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x6e,0x0,0x72,
- 0x0,0x75,0x0,0x66,0x0,0x2e,0x0,0xa,0x0,0x55,0x0,0x6d,0x0,0x20,0x0,0x65,
- 0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x7a,0x0,0x75,0x0,0x20,
- 0x0,0x68,0x0,0x61,0x0,0x62,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x75,
- 0x0,0x73,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x43,0x0,0x68,
- 0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6b,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6f,
- 0x0,0x72,0x0,0x64,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x69,
- 0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x20,0x0,0x63,0x0,0x75,0x0,0x73,0x0,0x74,
- 0x0,0x6f,0x0,0x6d,0x0,0x2e,0x0,0x5b,0x0,0x77,0x0,0x65,0x0,0x62,0x0,0x70,
- 0x0,0x2f,0x0,0x61,0x0,0x70,0x0,0x6e,0x0,0x67,0x0,0x2f,0x0,0x67,0x0,0x69,
- 0x0,0x66,0x0,0x2f,0x0,0x70,0x0,0x6e,0x0,0x67,0x0,0x5d,0x0,0x20,0x0,0x75,
- 0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x63,
- 0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0x2e,0x0,0x5b,0x0,0x77,
- 0x0,0x61,0x0,0x76,0x0,0x2f,0x0,0x6f,0x0,0x67,0x0,0x67,0x0,0x2f,0x0,0x6f,
- 0x0,0x70,0x0,0x75,0x0,0x73,0x0,0x5d,0x0,0x20,0x0,0x53,0x0,0x6f,0x0,0x75,
- 0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x66,0x0,0x66,0x0,0x65,0x0,0x6b,0x0,0x74,
- 0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x69,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0xd6,0x54,0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x64,0x69,
- 0x73,0x70,0x6c,0x61,0x79,0x20,0x74,0x68,0x65,0x20,0x63,0x75,0x73,0x74,0x6f,0x6d,
- 0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x2d,0x64,0x65,0x66,0x69,0x6e,
- 0x65,0x64,0x20,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x20,0x69,0x6e,0x20,
- 0x74,0x68,0x65,0x20,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x20,0x61,0x73,0x20,
- 0x73,0x6f,0x6f,0x6e,0x20,0x61,0x73,0x20,0x69,0x74,0x20,0x69,0x73,0x20,0x70,0x72,
- 0x65,0x73,0x73,0x65,0x64,0x2e,0xa,0x54,0x6f,0x20,0x6d,0x61,0x6b,0x65,0x20,0x6f,
- 0x6e,0x65,0x2c,0x20,0x79,0x6f,0x75,0x72,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,
- 0x65,0x72,0x27,0x73,0x20,0x66,0x6f,0x6c,0x64,0x65,0x72,0x20,0x6d,0x75,0x73,0x74,
- 0x20,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x20,0x63,0x75,0x73,0x74,0x6f,0x6d,0x2e,
- 0x5b,0x77,0x65,0x62,0x70,0x2f,0x61,0x70,0x6e,0x67,0x2f,0x67,0x69,0x66,0x2f,0x70,
- 0x6e,0x67,0x5d,0x20,0x61,0x6e,0x64,0x20,0x63,0x75,0x73,0x74,0x6f,0x6d,0x2e,0x5b,
- 0x77,0x61,0x76,0x2f,0x6f,0x67,0x67,0x2f,0x6f,0x70,0x75,0x73,0x5d,0x20,0x73,0x6f,
- 0x75,0x6e,0x64,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x7,0x0,0x0,0x0,0x9,0x43,
- 0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x48,
- 0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x9,0x54,0x6f,0x20,0x62,0x65,0x68,0x69,0x6e,0x64,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0xa,0x0,0x56,0x0,0x6f,0x0,0x72,0x0,0x6e,0x0,0x65,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x8,0x54,0x6f,0x20,0x66,0x72,0x6f,0x6e,0x74,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0x54,0x0,0x57,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x73,0x0,0x65,0x0,0x6c,0x0,
- 0x74,0x0,0x20,0x0,0x7a,0x0,0x77,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x68,0x0,
- 0x65,0x0,0x6e,0x0,0x20,0x0,0x53,0x0,0x65,0x0,0x72,0x0,0x76,0x0,0x65,0x0,
- 0x72,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,
- 0x64,0x0,0x20,0x0,0x41,0x0,0x4f,0x0,0x32,0x0,0x20,0x0,0x43,0x0,0x68,0x0,
- 0x61,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x54,
- 0x6f,0x67,0x67,0x6c,0x65,0x20,0x62,0x65,0x74,0x77,0x65,0x65,0x6e,0x20,0x73,0x65,
- 0x72,0x76,0x65,0x72,0x20,0x63,0x68,0x61,0x74,0x20,0x61,0x6e,0x64,0x20,0x67,0x6c,
- 0x6f,0x62,0x61,0x6c,0x20,0x41,0x4f,0x32,0x20,0x63,0x68,0x61,0x74,0x2e,0x7,0x0,
- 0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,
- 0x0,0x8a,0x0,0x5a,0x0,0x75,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x65,0x0,0x6c,
- 0x0,0x65,0x0,0x20,0x0,0x41,0x0,0x72,0x0,0x67,0x0,0x75,0x0,0x6d,0x0,0x65,
- 0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x21,0x0,0x20,0x0,0x44,0x0,0x75,0x0,0x20,
- 0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x75,0x0,0x63,0x0,0x68,0x0,0x73,0x0,0x74,
- 0x0,0x20,0x0,0x6e,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6e,
- 0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x61,
- 0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x2c,0x0,0x20,0x0,0x6f,0x0,0x68,0x0,0x6e,
- 0x0,0x65,0x0,0x20,0x0,0x45,0x0,0x72,0x0,0x77,0x0,0x65,0x0,0x69,0x0,0x74,
- 0x0,0x65,0x0,0x72,0x0,0x75,0x0,0x6e,0x0,0x67,0x0,0x2e,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x51,0x54,0x6f,0x6f,0x20,0x6d,0x61,0x6e,0x79,0x20,0x61,
- 0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,
- 0x20,0x61,0x20,0x63,0x61,0x73,0x65,0x21,0x20,0x59,0x6f,0x75,0x20,0x6f,0x6e,0x6c,
- 0x79,0x20,0x6e,0x65,0x65,0x64,0x20,0x6f,0x6e,0x65,0x20,0x66,0x69,0x6c,0x65,0x6e,
- 0x61,0x6d,0x65,0x2c,0x20,0x77,0x69,0x74,0x68,0x6f,0x75,0x74,0x20,0x65,0x78,0x74,
- 0x65,0x6e,0x73,0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xba,0x0,0x5a,0x0,0x75,0x0,
- 0x20,0x0,0x76,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x41,0x0,
- 0x72,0x0,0x67,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,
- 0x21,0x0,0x20,0x0,0x44,0x0,0x75,0x0,0x20,0x0,0x62,0x0,0x72,0x0,0x61,0x0,
- 0x75,0x0,0x63,0x0,0x68,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x6e,0x0,0x75,0x0,
- 0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x44,0x0,0x61,0x0,
- 0x74,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,
- 0x2c,0x0,0x20,0x0,0x6f,0x0,0x68,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x45,0x0,
- 0x72,0x0,0x77,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x75,0x0,
- 0x6e,0x0,0x67,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x77,0x0,0x69,0x0,0x65,0x0,
- 0x20,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x47,0x0,0x65,0x0,0x62,0x0,
- 0x69,0x0,0x65,0x0,0x74,0x0,0x73,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,
- 0x75,0x0,0x73,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x67,0x54,
- 0x6f,0x6f,0x20,0x6d,0x61,0x6e,0x79,0x20,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,
- 0x73,0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x61,0x20,0x63,0x61,0x73,0x65,
- 0x21,0x20,0x59,0x6f,0x75,0x20,0x6f,0x6e,0x6c,0x79,0x20,0x6e,0x65,0x65,0x64,0x20,
- 0x61,0x20,0x66,0x69,0x6c,0x65,0x6e,0x61,0x6d,0x65,0x20,0x77,0x69,0x74,0x68,0x6f,
- 0x75,0x74,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64,
- 0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x20,0x73,
- 0x74,0x61,0x74,0x75,0x73,0x21,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x58,0x0,0xdc,0x0,0x62,0x0,0x65,
- 0x0,0x72,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x42,
- 0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x69,0x0,0x73,0x0,0x73,0x0,0x74,0x0,0xfc,
- 0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x7a,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x67,
- 0x0,0x6c,0x0,0x6f,0x0,0x62,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x20,
- 0x0,0x49,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x72,
- 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x26,0x54,0x72,0x61,0x6e,
- 0x73,0x66,0x65,0x72,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x74,0x6f,
- 0x20,0x67,0x6c,0x6f,0x62,0x61,0x6c,0x20,0x69,0x6e,0x76,0x65,0x6e,0x74,0x6f,0x72,
- 0x79,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,
- 0x1,0x3,0x0,0x0,0x0,0x56,0x0,0xdc,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x74,
- 0x0,0x72,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x42,0x0,0x65,0x0,0x77,
- 0x0,0x65,0x0,0x69,0x0,0x73,0x0,0x73,0x0,0x74,0x0,0xfc,0x0,0x63,0x0,0x6b,
- 0x0,0x20,0x0,0x7a,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x67,
- 0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x49,0x0,0x6e,0x0,0x76,
- 0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x27,0x54,0x72,0x61,0x6e,0x73,0x66,0x65,0x72,0x20,0x65,
- 0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x74,0x6f,0x20,0x70,0x72,0x69,0x76,0x61,
- 0x74,0x65,0x20,0x69,0x6e,0x76,0x65,0x6e,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0x12,0x0,0x55,0x0,0x4e,0x0,0x42,0x0,0x45,0x0,0x4b,0x0,0x41,0x0,0x4e,0x0,
- 0x4e,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x55,0x4e,0x4b,
- 0x4e,0x4f,0x57,0x4e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x6e,0x0,0x57,0x0,0x65,0x0,0x6e,0x0,0x6e,
- 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x6e,
- 0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x2c,0x0,0x20,0x0,0x77,0x0,0x69,
- 0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x4e,
- 0x0,0xe4,0x0,0x63,0x0,0x68,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x4e,
- 0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,
- 0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x5a,0x0,0x75,0x0,0x72,
- 0x0,0x75,0x0,0x66,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x47,
- 0x57,0x68,0x65,0x6e,0x20,0x74,0x68,0x69,0x73,0x20,0x69,0x73,0x20,0x74,0x75,0x72,
- 0x6e,0x65,0x64,0x20,0x6f,0x6e,0x2c,0x20,0x79,0x6f,0x75,0x72,0x20,0x6e,0x65,0x78,
- 0x74,0x20,0x69,0x6e,0x2d,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x20,0x6d,
- 0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x61,
- 0x20,0x73,0x68,0x6f,0x75,0x74,0x21,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xc6,0x0,0x44,0x0,0x75,0x0,
- 0x20,0x0,0x68,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x74,0x0,
- 0x20,0x0,0x6b,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,
- 0x27,0x0,0x62,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x2f,0x0,0x63,0x0,0x61,0x0,
- 0x73,0x0,0x65,0x0,0x73,0x0,0x27,0x0,0x20,0x0,0x4f,0x0,0x72,0x0,0x64,0x0,
- 0x6e,0x0,0x65,0x0,0x72,0x0,0x21,0x0,0x20,0x0,0x49,0x0,0x63,0x0,0x68,0x0,
- 0x20,0x0,0x68,0x0,0x61,0x0,0x62,0x0,0x20,0x0,0x69,0x0,0x68,0x0,0x6e,0x0,
- 0x20,0x0,0x6e,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x67,0x0,
- 0x65,0x0,0x6c,0x0,0x65,0x0,0x67,0x0,0x74,0x0,0x20,0x0,0x61,0x0,0x62,0x0,
- 0x65,0x0,0x72,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,
- 0x6b,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x65,0x0,
- 0x72,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x73,0x0,
- 0x65,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x72,0x0,0x64,0x0,
- 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x91,0x59,0x6f,0x75,0x20,0x64,
- 0x6f,0x6e,0x27,0x74,0x20,0x68,0x61,0x76,0x65,0x20,0x61,0x20,0x60,0x62,0x61,0x73,
- 0x65,0x2f,0x63,0x61,0x73,0x65,0x73,0x2f,0x60,0x20,0x66,0x6f,0x6c,0x64,0x65,0x72,
- 0x21,0x20,0x49,0x74,0x20,0x77,0x61,0x73,0x20,0x6a,0x75,0x73,0x74,0x20,0x6d,0x61,
- 0x64,0x65,0x20,0x66,0x6f,0x72,0x20,0x79,0x6f,0x75,0x2c,0x20,0x62,0x75,0x74,0x20,
- 0x73,0x65,0x65,0x69,0x6e,0x67,0x20,0x61,0x73,0x20,0x69,0x74,0x20,0x57,0x41,0x53,
- 0x20,0x6a,0x75,0x73,0x74,0x20,0x6d,0x61,0x64,0x65,0x20,0x66,0x6f,0x72,0x20,0x79,
- 0x6f,0x75,0x2c,0x20,0x69,0x74,0x27,0x73,0x20,0x6c,0x69,0x6b,0x65,0x6c,0x79,0x20,
- 0x74,0x68,0x61,0x74,0x20,0x79,0x6f,0x75,0x20,0x73,0x6f,0x6d,0x65,0x68,0x6f,0x77,
- 0x20,0x64,0x65,0x6c,0x65,0x74,0x65,0x64,0x20,0x69,0x74,0x2e,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xc6,
- 0x0,0x44,0x0,0x75,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x65,
- 0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x6b,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x65,
- 0x0,0x6e,0x0,0x20,0x0,0x27,0x0,0x62,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x2f,
- 0x0,0x63,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x73,0x0,0x27,0x0,0x20,0x0,0x4f,
- 0x0,0x72,0x0,0x64,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x21,0x0,0x20,0x0,0x49,
- 0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x62,0x0,0x20,0x0,0x69,
- 0x0,0x68,0x0,0x6e,0x0,0x20,0x0,0x6e,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x61,
- 0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x67,0x0,0x74,0x0,0x20,
- 0x0,0x61,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x64,
- 0x0,0x65,0x0,0x6e,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x73,
- 0x0,0x20,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x65,0x0,0x72,
- 0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x77,0x0,0x69,
- 0x0,0x72,0x0,0x64,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xae,
- 0x59,0x6f,0x75,0x20,0x64,0x6f,0x6e,0x27,0x74,0x20,0x68,0x61,0x76,0x65,0x20,0x61,
- 0x20,0x60,0x62,0x61,0x73,0x65,0x2f,0x63,0x61,0x73,0x65,0x73,0x2f,0x60,0x20,0x66,
- 0x6f,0x6c,0x64,0x65,0x72,0x21,0x20,0x49,0x74,0x20,0x77,0x61,0x73,0x20,0x6a,0x75,
- 0x73,0x74,0x20,0x6d,0x61,0x64,0x65,0x20,0x66,0x6f,0x72,0x20,0x79,0x6f,0x75,0x2c,
- 0x20,0x62,0x75,0x74,0x20,0x73,0x65,0x65,0x69,0x6e,0x67,0x20,0x61,0x73,0x20,0x69,
- 0x74,0x20,0x57,0x41,0x53,0x20,0x6a,0x75,0x73,0x74,0x20,0x6d,0x61,0x64,0x65,0x20,
- 0x66,0x6f,0x72,0x20,0x79,0x6f,0x75,0x2c,0x20,0x69,0x74,0x27,0x73,0x20,0x6c,0x69,
- 0x6b,0x65,0x6c,0x79,0x20,0x74,0x68,0x65,0x20,0x63,0x61,0x73,0x65,0x20,0x66,0x69,
- 0x6c,0x65,0x20,0x79,0x6f,0x75,0x27,0x72,0x65,0x20,0x6c,0x6f,0x6f,0x6b,0x69,0x6e,
- 0x67,0x20,0x66,0x6f,0x72,0x20,0x63,0x61,0x6e,0x27,0x74,0x20,0x62,0x65,0x20,0x66,
- 0x6f,0x75,0x6e,0x64,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x72,0x65,0x2e,0x7,0x0,
- 0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,
- 0x0,0x28,0x0,0x44,0x0,0x75,0x0,0x20,0x0,0x77,0x0,0x75,0x0,0x72,0x0,0x64,
- 0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x62,
- 0x0,0x61,0x0,0x6e,0x0,0x6e,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x15,0x59,0x6f,0x75,0x20,0x68,0x61,0x76,0x65,0x20,0x62,0x65,0x65,
- 0x6e,0x20,0x62,0x61,0x6e,0x6e,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,
- 0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x44,0x0,
- 0x75,0x0,0x20,0x0,0x6d,0x0,0x75,0x0,0x73,0x0,0x73,0x0,0x74,0x0,0x20,0x0,
- 0x65,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x47,0x0,0x72,0x0,
- 0x75,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,
- 0x62,0x0,0x65,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x1a,0x59,0x6f,0x75,0x20,0x6d,0x75,0x73,0x74,0x20,0x70,0x72,0x6f,0x76,0x69,0x64,
- 0x65,0x20,0x61,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x1,0x2c,0x0,
- 0x44,0x0,0x75,0x0,0x20,0x0,0x6d,0x0,0x75,0x0,0x73,0x0,0x73,0x0,0x74,0x0,
- 0x20,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x44,0x0,
- 0x61,0x0,0x74,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,
- 0x6e,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x62,0x0,0x65,0x0,
- 0x6e,0x0,0x20,0x0,0x28,0x0,0x6f,0x0,0x68,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,
- 0x2e,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x29,0x0,0x2e,0x0,0x20,0x0,0x53,0x0,
- 0x74,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x69,0x0,
- 0x63,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x73,0x0,
- 0x20,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x27,0x0,
- 0x62,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x2f,0x0,0x63,0x0,0x61,0x0,0x73,0x0,
- 0x65,0x0,0x73,0x0,0x27,0x0,0x20,0x0,0x4f,0x0,0x72,0x0,0x64,0x0,0x6e,0x0,
- 0x65,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x75,0x0,
- 0x6e,0x0,0x64,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x65,0x0,
- 0x72,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x72,0x0,0x72,0x0,0x65,0x0,0x6b,0x0,
- 0x74,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,
- 0x69,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x74,0x0,
- 0x2e,0x0,0xa,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0xfc,0x0,0x67,0x0,
- 0x62,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x46,0x0,0xe4,0x0,0x6c,0x0,
- 0x6c,0x0,0x65,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x31,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0xae,0x59,0x6f,0x75,0x20,0x6e,0x65,0x65,0x64,0x20,0x74,0x6f,
- 0x20,0x67,0x69,0x76,0x65,0x20,0x61,0x20,0x66,0x69,0x6c,0x65,0x6e,0x61,0x6d,0x65,
- 0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x28,0x65,0x78,0x74,0x65,0x6e,0x73,
- 0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x29,0x21,
- 0x20,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x61,0x74,0x20,
- 0x69,0x74,0x20,0x69,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x60,0x62,0x61,
- 0x73,0x65,0x2f,0x63,0x61,0x73,0x65,0x73,0x2f,0x60,0x20,0x66,0x6f,0x6c,0x64,0x65,
- 0x72,0x2c,0x20,0x61,0x6e,0x64,0x20,0x74,0x68,0x61,0x74,0x20,0x69,0x74,0x20,0x69,
- 0x73,0x20,0x61,0x20,0x63,0x6f,0x72,0x72,0x65,0x63,0x74,0x6c,0x79,0x20,0x66,0x6f,
- 0x72,0x6d,0x61,0x74,0x74,0x65,0x64,0x20,0x69,0x6e,0x69,0x2e,0xa,0x43,0x61,0x73,
- 0x65,0x73,0x20,0x79,0x6f,0x75,0x20,0x63,0x61,0x6e,0x20,0x6c,0x6f,0x61,0x64,0x3a,
- 0x20,0x25,0x31,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0x9e,0x0,0x44,0x0,0x75,0x0,0x20,0x0,0x6d,0x0,
- 0x75,0x0,0x73,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,
- 0x65,0x0,0x6e,0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x69,0x0,
- 0x6e,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x6f,0x0,
- 0x68,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x45,0x0,0x72,0x0,0x77,0x0,0x65,0x0,
- 0x69,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x75,0x0,0x6e,0x0,0x67,0x0,0x29,0x0,
- 0x20,0x0,0x61,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x62,0x0,0x65,0x0,0x6e,0x0,
- 0x6e,0x0,0x2c,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x77,0x0,0x69,0x0,0x65,0x0,
- 0x20,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x47,0x0,0x65,0x0,0x62,0x0,
- 0x69,0x0,0x65,0x0,0x74,0x0,0x73,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,
- 0x75,0x0,0x73,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x54,0x59,
- 0x6f,0x75,0x20,0x6e,0x65,0x65,0x64,0x20,0x74,0x6f,0x20,0x67,0x69,0x76,0x65,0x20,
- 0x61,0x20,0x66,0x69,0x6c,0x65,0x6e,0x61,0x6d,0x65,0x20,0x74,0x6f,0x20,0x73,0x61,
- 0x76,0x65,0x20,0x28,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x20,0x6e,0x6f,
- 0x74,0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x29,0x20,0x61,0x6e,0x64,0x20,0x74,0x68,
- 0x65,0x20,0x63,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x20,0x73,0x74,0x61,0x74,
- 0x75,0x73,0x21,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0x5a,0x0,0x44,0x0,0x75,0x0,0x20,0x0,0x68,0x0,
- 0x61,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x6e,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,
- 0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x22,0x0,0x4d,0x0,0x6f,0x0,0x64,0x0,
- 0x63,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x61,0x0,
- 0x6b,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x65,0x0,
- 0x6e,0x0,0x22,0x0,0x20,0x0,0x4b,0x0,0x6e,0x0,0x6f,0x0,0x70,0x0,0x66,0x0,
- 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2d,0x59,0x6f,0x75,0x20,0x77,
- 0x65,0x72,0x65,0x20,0x67,0x72,0x61,0x6e,0x74,0x65,0x64,0x20,0x74,0x68,0x65,0x20,
- 0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x20,0x4d,0x6f,0x64,0x63,0x61,0x6c,0x6c,0x73,
- 0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,
- 0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x44,0x0,0x65,
- 0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x46,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x20,
- 0x0,0x22,0x0,0x25,0x0,0x31,0x0,0x22,0x0,0x20,0x0,0x77,0x0,0x75,0x0,0x72,
- 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x67,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x64,
- 0x0,0x65,0x0,0x6e,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,
- 0x59,0x6f,0x75,0x72,0x20,0x63,0x61,0x73,0x65,0x20,0x22,0x25,0x31,0x22,0x20,0x77,
- 0x61,0x73,0x20,0x6c,0x6f,0x61,0x64,0x65,0x64,0x21,0x7,0x0,0x0,0x0,0x9,0x43,
- 0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x5b,
- 0x0,0x46,0x0,0x45,0x0,0x48,0x0,0x4c,0x0,0x54,0x0,0x5d,0x0,0x20,0x0,0x25,
- 0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x5b,0x4d,0x49,0x53,
- 0x53,0x49,0x4e,0x47,0x5d,0x20,0x25,0x31,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,
- 0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x5b,0x0,0x53,
- 0x0,0x54,0x0,0x52,0x0,0x45,0x0,0x41,0x0,0x4d,0x0,0x5d,0x0,0x20,0x0,0x25,
- 0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x5b,0x53,0x54,0x52,
- 0x45,0x41,0x4d,0x5d,0x20,0x25,0x31,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x73,0x0,0x70,0x0,
- 0x69,0x0,0x65,0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x69,0x0,
- 0x6e,0x0,0x20,0x0,0x4c,0x0,0x69,0x0,0x65,0x0,0x64,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x11,0x68,0x61,0x73,0x20,0x70,0x6c,0x61,0x79,0x65,0x64,0x20,
- 0x61,0x20,0x73,0x6f,0x6e,0x67,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x68,0x0,0x61,0x0,0x74,
- 0x0,0x20,0x0,0x42,0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x69,0x0,0x73,0x0,0x20,
- 0x0,0x70,0x0,0x72,0x0,0xe4,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x69,
- 0x0,0x65,0x0,0x72,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,
- 0x68,0x61,0x73,0x20,0x70,0x72,0x65,0x73,0x65,0x6e,0x74,0x65,0x64,0x20,0x65,0x76,
- 0x69,0x64,0x65,0x6e,0x63,0x65,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x68,0x0,0x61,0x0,0x74,
- 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x4d,0x0,0x75,0x0,0x73,
- 0x0,0x69,0x0,0x6b,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x68,
- 0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x15,0x68,0x61,0x73,0x20,0x73,0x74,0x6f,0x70,0x70,0x65,0x64,0x20,
- 0x74,0x68,0x65,0x20,0x6d,0x75,0x73,0x69,0x63,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,
- 0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x5a,0x0,
- 0x77,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x6e,0x0,0x72,0x0,
- 0x75,0x0,0x66,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x73,0x68,0x6f,
- 0x75,0x74,0x73,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x44,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,
- 0x73,0x0,0x20,0x0,0x28,0x0,0x2a,0x0,0x2e,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,
- 0x6f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x44,0x65,0x6d,
- 0x6f,0x20,0x46,0x69,0x6c,0x65,0x73,0x20,0x28,0x2a,0x2e,0x64,0x65,0x6d,0x6f,0x29,
- 0x7,0x0,0x0,0x0,0xa,0x44,0x65,0x6d,0x6f,0x53,0x65,0x72,0x76,0x65,0x72,0x1,
- 0x3,0x0,0x0,0x0,0x14,0x0,0x44,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,
- 0x6c,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x9,0x4c,0x6f,0x61,0x64,0x20,0x44,0x65,0x6d,0x6f,0x7,0x0,0x0,0x0,
- 0xa,0x44,0x65,0x6d,0x6f,0x53,0x65,0x72,0x76,0x65,0x72,0x1,0x3,0x0,0x0,0x0,
- 0x8,0x0,0xdc,0x0,0x62,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x5,0x41,0x62,0x6f,0x75,0x74,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,
- 0x62,0x79,0x1,0x3,0x0,0x0,0x0,0x6c,0x0,0x45,0x0,0x72,0x0,0x6c,0x0,0x61,
- 0x0,0x75,0x0,0x62,0x0,0x74,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x76,
- 0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x65,0x0,0x64,
- 0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x41,0x0,0x73,0x0,0x70,0x0,0x65,
- 0x0,0x6b,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20,
- 0x0,0x43,0x0,0x6c,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x73,0x0,0x20,
- 0x0,0x7a,0x0,0x75,0x0,0x20,0x0,0xe4,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,
- 0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x33,0x41,0x6c,
- 0x6c,0x6f,0x77,0x73,0x20,0x79,0x6f,0x75,0x20,0x74,0x6f,0x20,0x63,0x68,0x61,0x6e,
- 0x67,0x65,0x20,0x76,0x61,0x72,0x69,0x6f,0x75,0x73,0x20,0x61,0x73,0x70,0x65,0x63,
- 0x74,0x73,0x20,0x6f,0x66,0x20,0x74,0x68,0x65,0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,
- 0x2e,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,0x0,0x0,
- 0x12,0x0,0x41,0x0,0x62,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x68,0x0,
- 0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x61,0x6e,
- 0x63,0x65,0x6c,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,
- 0x0,0x1,0x10,0x0,0x44,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x43,0x0,
- 0x6c,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x73,0x0,
- 0x74,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x20,0x0,
- 0x6b,0x0,0x6f,0x0,0x72,0x0,0x72,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x20,0x0,
- 0x65,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x63,0x0,
- 0x68,0x0,0x74,0x0,0x65,0x0,0x74,0x0,0x2e,0x0,0xa,0x0,0x48,0x0,0x61,0x0,
- 0x73,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x41,0x0,0x4c,0x0,
- 0x4c,0x0,0x45,0x0,0x53,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,
- 0x74,0x0,0x69,0x0,0x6e,0x0,0x79,0x0,0x2e,0x0,0x63,0x0,0x63,0x0,0x2f,0x0,
- 0x67,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x6f,0x0,0x20,0x0,0x68,0x0,0x65,0x0,
- 0x72,0x0,0x75,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x67,0x0,0x65,0x0,
- 0x6c,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,
- 0x64,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x70,0x0,0x61,0x0,0x63,0x0,
- 0x6b,0x0,0x74,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x63,0x0,0x68,0x0,
- 0x20,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x6f,0x0,
- 0xdf,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x27,0x0,0x62,0x0,0x61,0x0,0x73,0x0,
- 0x65,0x0,0x27,0x0,0x20,0x0,0x4f,0x0,0x72,0x0,0x64,0x0,0x6e,0x0,0x65,0x0,
- 0x72,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x95,0x49,0x74,0x20,
- 0x64,0x6f,0x65,0x73,0x6e,0x27,0x74,0x20,0x6c,0x6f,0x6f,0x6b,0x20,0x6c,0x69,0x6b,
- 0x65,0x20,0x79,0x6f,0x75,0x72,0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,0x20,0x69,0x73,
- 0x20,0x73,0x65,0x74,0x20,0x75,0x70,0x20,0x63,0x6f,0x72,0x72,0x65,0x63,0x74,0x6c,
- 0x79,0x2e,0xa,0x44,0x69,0x64,0x20,0x79,0x6f,0x75,0x20,0x64,0x6f,0x77,0x6e,0x6c,
- 0x6f,0x61,0x64,0x20,0x61,0x6c,0x6c,0x20,0x72,0x65,0x73,0x6f,0x75,0x72,0x63,0x65,
- 0x73,0x20,0x63,0x6f,0x72,0x72,0x65,0x63,0x74,0x6c,0x79,0x20,0x66,0x72,0x6f,0x6d,
- 0x20,0x74,0x69,0x6e,0x79,0x2e,0x63,0x63,0x2f,0x67,0x65,0x74,0x61,0x6f,0x2c,0x20,
- 0x69,0x6e,0x63,0x6c,0x75,0x64,0x69,0x6e,0x67,0x20,0x74,0x68,0x65,0x20,0x6c,0x61,
- 0x72,0x67,0x65,0x20,0x27,0x62,0x61,0x73,0x65,0x27,0x20,0x66,0x6f,0x6c,0x64,0x65,
- 0x72,0x3f,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,0x0,
- 0x0,0xa,0x0,0x4c,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x7,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x7,0x0,0x0,
- 0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x4e,0x0,
- 0x61,0x0,0x6d,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e,
- 0x61,0x6d,0x65,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,
- 0x0,0x0,0x8,0x0,0x4e,0x0,0x65,0x0,0x69,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x2,0x4e,0x6f,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,
- 0x79,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4f,0x0,0x66,0x0,0x66,0x0,0x6c,0x0,
- 0x69,0x0,0x6e,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4f,
- 0x66,0x66,0x6c,0x69,0x6e,0x65,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,
- 0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4f,0x0,0x6e,0x0,0x6c,0x0,0x69,0x0,0x6e,
- 0x0,0x65,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x31,0x0,0x2f,0x0,0x25,0x0,0x32,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4f,0x6e,0x6c,0x69,0x6e,0x65,
- 0x3a,0x20,0x25,0x31,0x2f,0x25,0x32,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,
- 0x79,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x53,0x0,0x75,0x0,0x63,0x0,0x68,0x0,
- 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53,0x65,0x61,0x72,0x63,
- 0x68,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,0x0,0x0,
- 0x1a,0x0,0x45,0x0,0x69,0x0,0x6e,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,
- 0x6c,0x0,0x75,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,
- 0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x56,0x0,
- 0x65,0x0,0x72,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x3a,0x0,0x20,0x0,
- 0x25,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x56,0x65,0x72,
- 0x73,0x69,0x6f,0x6e,0x3a,0x20,0x25,0x31,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,
- 0x62,0x79,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4a,0x0,0x61,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x3,0x59,0x65,0x73,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,
- 0x62,0x62,0x79,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x55,0x0,0x4e,0x0,0x42,0x0,
- 0x45,0x0,0x4b,0x0,0x41,0x0,0x4e,0x0,0x4e,0x0,0x54,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x7,0x55,0x4e,0x4b,0x4e,0x4f,0x57,0x4e,0x7,0x0,0x0,0x0,
- 0xc,0x63,0x68,0x61,0x74,0x6c,0x6f,0x67,0x70,0x69,0x65,0x63,0x65,0x1,0x3,0x0,
- 0x0,0x0,0xc,0x0,0x46,0x0,0x65,0x0,0x68,0x0,0x6c,0x0,0x65,0x0,0x72,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x45,0x72,0x72,0x6f,0x72,0x7,0x0,
- 0x0,0x0,0xf,0x64,0x65,0x62,0x75,0x67,0x5f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,
- 0x6e,0x73,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x46,0x0,0x65,0x0,0x68,0x0,0x6c,
- 0x0,0x65,0x0,0x72,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x31,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x9,0x45,0x72,0x72,0x6f,0x72,0x3a,0x20,0x25,0x31,0x7,
- 0x0,0x0,0x0,0xf,0x64,0x65,0x62,0x75,0x67,0x5f,0x66,0x75,0x6e,0x63,0x74,0x69,
- 0x6f,0x6e,0x73,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x48,0x0,0x69,0x0,0x6e,0x0,
- 0x77,0x0,0x65,0x0,0x69,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x6,0x4e,0x6f,0x74,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0xf,0x64,0x65,0x62,0x75,
- 0x67,0x5f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x73,0x1,0x88,0x0,0x0,0x0,
- 0x2,0x1,0x1,
- // /media/stoned/SHARED/Git/AO2-Client/resource/translations/ao_pl.qm
- 0x0,0x0,0xf0,0x24,
- 0x3c,
- 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0xa7,
- 0x0,0x0,0x0,0x5,0x70,0x6c,0x5f,0x50,0x4c,0x42,0x0,0x0,0xa,0x10,0x0,0x0,
- 0x5,0x4f,0x0,0x0,0xe3,0xd5,0x0,0x0,0x44,0x3d,0x0,0x0,0x6e,0xd4,0x0,0x0,
- 0x48,0xa,0x0,0x0,0x1b,0xf6,0x0,0x0,0x57,0x85,0x0,0x0,0x99,0xfb,0x0,0x0,
- 0x59,0xd8,0x0,0x0,0xaa,0x52,0x0,0x0,0x5f,0xc3,0x0,0x0,0xe4,0xda,0x0,0x0,
- 0xea,0xf1,0x0,0x0,0x6d,0x94,0x0,0x0,0xea,0xf3,0x0,0x0,0x6d,0xbb,0x0,0x4,
- 0xd3,0x0,0x0,0x0,0x8c,0x4d,0x0,0x5,0x48,0x35,0x0,0x0,0x94,0x7b,0x0,0x5,
- 0x48,0x35,0x0,0x0,0xe3,0xad,0x0,0x5,0x56,0x45,0x0,0x0,0x95,0xad,0x0,0x5,
- 0x7b,0xba,0x0,0x0,0x4b,0xbf,0x0,0x1d,0xb,0x21,0x0,0x0,0xe4,0xa1,0x0,0x30,
- 0x7f,0x4a,0x0,0x0,0x21,0xe9,0x0,0x33,0x9c,0xa,0x0,0x0,0x25,0x3,0x0,0x47,
- 0x96,0xc4,0x0,0x0,0xe0,0x63,0x0,0x48,0xba,0xff,0x0,0x0,0x19,0xd8,0x0,0x49,
- 0x30,0x73,0x0,0x0,0x73,0xa8,0x0,0x4c,0x99,0x62,0x0,0x0,0x8a,0xa2,0x0,0x4c,
- 0x99,0x62,0x0,0x0,0xe5,0x35,0x0,0x4e,0xb8,0x84,0x0,0x0,0x8c,0xe4,0x0,0x54,
- 0xc9,0xf3,0x0,0x0,0x94,0x4c,0x0,0x57,0xe,0xbc,0x0,0x0,0x48,0x88,0x0,0x5a,
- 0x81,0xbe,0x0,0x0,0xaf,0xbb,0x0,0x5b,0xee,0x2e,0x0,0x0,0x8f,0xbb,0x0,0x5c,
- 0xcf,0x9e,0x0,0x0,0x8d,0xc8,0x0,0x73,0x9c,0x8e,0x0,0x0,0x62,0xac,0x0,0x74,
- 0x22,0x2e,0x0,0x0,0x38,0x76,0x0,0x81,0x97,0x4e,0x0,0x0,0x56,0x4d,0x0,0x8b,
- 0xa2,0x99,0x0,0x0,0xa2,0xf3,0x0,0x9a,0x6c,0xca,0x0,0x0,0x22,0x5f,0x0,0xa0,
- 0x39,0x3e,0x0,0x0,0x7b,0xb9,0x0,0xa5,0x9e,0x4e,0x0,0x0,0x0,0xa5,0x0,0xa9,
- 0xb7,0xce,0x0,0x0,0x7f,0x58,0x0,0xa9,0xc1,0x3e,0x0,0x0,0x69,0xef,0x0,0xb7,
- 0xb7,0x3e,0x0,0x0,0xa8,0x9c,0x0,0xc6,0xda,0xde,0x0,0x0,0x3d,0xfc,0x0,0xd1,
- 0x29,0xfe,0x0,0x0,0x29,0x6b,0x0,0xf4,0x21,0x9e,0x0,0x0,0xbb,0x56,0x1,0x8,
- 0x6f,0x91,0x0,0x0,0xac,0x5b,0x1,0x8,0xc3,0x9a,0x0,0x0,0x21,0x44,0x1,0xb,
- 0xd3,0x5e,0x0,0x0,0x93,0x84,0x1,0xe,0x4a,0x51,0x0,0x0,0x78,0xd3,0x1,0x11,
- 0x0,0x3,0x0,0x0,0x82,0x37,0x1,0x36,0x85,0x9e,0x0,0x0,0x82,0x9c,0x1,0x6a,
- 0x19,0x1a,0x0,0x0,0x5a,0xc7,0x1,0x6d,0x91,0xe4,0x0,0x0,0xb5,0x2a,0x1,0x71,
- 0x35,0x8e,0x0,0x0,0xaf,0xea,0x1,0x71,0xfc,0x57,0x0,0x0,0xc6,0x12,0x1,0x90,
- 0x8a,0xff,0x0,0x0,0xe1,0xa7,0x1,0x93,0xcc,0xe7,0x0,0x0,0xab,0xfa,0x1,0xc6,
- 0x62,0xee,0x0,0x0,0x23,0x46,0x1,0xd4,0x4c,0xee,0x0,0x0,0x30,0xe9,0x1,0xda,
- 0x65,0x73,0x0,0x0,0xc9,0x52,0x1,0xec,0xca,0xde,0x0,0x0,0x76,0x1a,0x1,0xf4,
- 0xee,0x2e,0x0,0x0,0x84,0xa7,0x1,0xf6,0xca,0x3e,0x0,0x0,0x4e,0xa5,0x2,0x21,
- 0x83,0xba,0x0,0x0,0x1b,0x2a,0x2,0x2a,0xb9,0xea,0x0,0x0,0x59,0xf4,0x2,0x48,
- 0x6f,0xbe,0x0,0x0,0x9c,0xa9,0x2,0x5b,0x7c,0x2e,0x0,0x0,0xa2,0x24,0x2,0x61,
- 0xf3,0x4e,0x0,0x0,0x4,0xeb,0x2,0x77,0xf8,0xaa,0x0,0x0,0x1a,0xd,0x2,0x7c,
- 0x19,0x8a,0x0,0x0,0x1b,0x72,0x2,0x89,0x29,0x7e,0x0,0x0,0x65,0x8d,0x2,0x89,
- 0xc1,0x81,0x0,0x0,0xc2,0xb4,0x2,0x92,0x1b,0xfe,0x0,0x0,0xb5,0x62,0x2,0xb5,
- 0x2d,0xae,0x0,0x0,0x73,0xd5,0x2,0xc5,0x76,0x61,0x0,0x0,0x0,0x0,0x2,0xc5,
- 0x76,0x61,0x0,0x0,0xe1,0x2b,0x2,0xc6,0xd5,0xca,0x0,0x0,0x1a,0xc0,0x2,0xe6,
- 0xd3,0xa2,0x0,0x0,0x75,0x90,0x2,0xf7,0xb3,0xca,0x0,0x0,0x42,0x61,0x3,0x2a,
- 0x59,0x7e,0x0,0x0,0x9f,0xc,0x3,0x32,0x44,0x60,0x0,0x0,0x3b,0x93,0x3,0x37,
- 0x52,0xde,0x0,0x0,0x7a,0x96,0x3,0x38,0x43,0x5e,0x0,0x0,0xca,0x2,0x3,0x39,
- 0x82,0x11,0x0,0x0,0xce,0x88,0x3,0x3d,0xa2,0xce,0x0,0x0,0xcd,0x89,0x3,0x3e,
- 0x21,0x33,0x0,0x0,0x1c,0x49,0x3,0x4c,0x3,0x4e,0x0,0x0,0x83,0x77,0x3,0x4f,
- 0x76,0x7e,0x0,0x0,0xa1,0x7c,0x3,0x57,0xb0,0x17,0x0,0x0,0x2,0x6,0x3,0x57,
- 0xb0,0x17,0x0,0x0,0xe3,0x7a,0x3,0x69,0x45,0x7a,0x0,0x0,0x5a,0x78,0x3,0x74,
- 0x34,0x8a,0x0,0x0,0x1c,0xff,0x3,0xba,0xa8,0xe5,0x0,0x0,0x8f,0x78,0x3,0xca,
- 0x97,0x85,0x0,0x0,0x93,0x4d,0x3,0xd6,0xdf,0x45,0x0,0x0,0x4b,0x43,0x3,0xdb,
- 0x87,0x6a,0x0,0x0,0x42,0xb4,0x3,0xe3,0x60,0x4a,0x0,0x0,0x41,0xab,0x3,0xf4,
- 0x58,0xee,0x0,0x0,0x3c,0xb4,0x3,0xf6,0xdf,0x45,0x0,0x0,0x9c,0x65,0x4,0x3,
- 0x52,0x65,0x0,0x0,0x1d,0x6d,0x4,0x6,0x4a,0xb1,0x0,0x0,0x8d,0x58,0x4,0x8,
- 0xf0,0xbe,0x0,0x0,0xa0,0xae,0x4,0x3f,0x13,0xca,0x0,0x0,0x5d,0xd5,0x4,0x49,
- 0x96,0x8a,0x0,0x0,0x1f,0x5a,0x4,0x50,0x17,0xc4,0x0,0x0,0xb,0x83,0x4,0x58,
- 0x20,0x5e,0x0,0x0,0x1d,0xc4,0x4,0x7b,0x2a,0xa6,0x0,0x0,0x12,0x7c,0x4,0x80,
- 0xda,0x34,0x0,0x0,0x75,0x1,0x4,0x82,0xfd,0x59,0x0,0x0,0xa0,0x62,0x4,0x86,
- 0xaf,0x2e,0x0,0x0,0xd,0xb2,0x4,0x87,0xdc,0xba,0x0,0x0,0x13,0x8,0x4,0x8a,
- 0x9c,0xb3,0x0,0x0,0x19,0xa2,0x4,0x92,0x8,0xb2,0x0,0x0,0x8c,0x7b,0x4,0x92,
- 0x65,0x9a,0x0,0x0,0x5b,0x27,0x4,0x93,0x7,0x6a,0x0,0x0,0x1b,0xc0,0x4,0x98,
- 0x49,0xbc,0x0,0x0,0xe1,0x7b,0x4,0x98,0xa0,0x47,0x0,0x0,0x1c,0x88,0x4,0x98,
- 0xa0,0x47,0x0,0x0,0x76,0x80,0x4,0x9c,0x6,0xae,0x0,0x0,0x69,0x38,0x4,0xb8,
- 0x6b,0xe3,0x0,0x0,0xc6,0xc7,0x4,0xd2,0xef,0xfe,0x0,0x0,0x27,0x28,0x4,0xdd,
- 0x4a,0xde,0x0,0x0,0x34,0xd0,0x4,0xe0,0xf6,0x35,0x0,0x0,0x9a,0x5d,0x4,0xeb,
- 0x2f,0xa,0x0,0x0,0x41,0x72,0x4,0xf6,0x74,0xde,0x0,0x0,0x28,0x47,0x5,0x1b,
- 0xad,0x8a,0x0,0x0,0x40,0x82,0x5,0x1c,0x96,0x5a,0x0,0x0,0x40,0xba,0x5,0x38,
- 0xaa,0xc2,0x0,0x0,0x93,0x29,0x5,0x4c,0x9f,0x6a,0x0,0x0,0x47,0xec,0x5,0x56,
- 0xaf,0x95,0x0,0x0,0xe5,0xa3,0x5,0x61,0x3,0x44,0x0,0x0,0xc,0x94,0x5,0x8c,
- 0x46,0xc5,0x0,0x0,0x4b,0x8d,0x5,0x96,0x60,0xba,0x0,0x0,0x19,0x4f,0x5,0x9b,
- 0x88,0x98,0x0,0x0,0xa1,0xf0,0x5,0x9b,0x88,0x98,0x0,0x0,0xe4,0x3f,0x5,0x9c,
- 0x9c,0xc2,0x0,0x0,0xa2,0xc3,0x5,0xa4,0x66,0xa8,0x0,0x0,0x59,0xbc,0x5,0xad,
- 0x62,0x5e,0x0,0x0,0x92,0xd2,0x5,0xae,0xc3,0x8a,0x0,0x0,0x61,0x42,0x5,0xcd,
- 0x30,0x15,0x0,0x0,0xe3,0xf7,0x5,0xf4,0x15,0xa4,0x0,0x0,0xcf,0xa2,0x6,0x26,
- 0x54,0x91,0x0,0x0,0x8d,0x90,0x6,0x2d,0x36,0x3e,0x0,0x0,0x6d,0xe2,0x6,0x60,
- 0x3a,0x14,0x0,0x0,0xb1,0xfb,0x6,0x73,0x98,0x7e,0x0,0x0,0xb9,0xb,0x6,0x83,
- 0xdc,0x2e,0x0,0x0,0x6e,0xfb,0x6,0x86,0x8a,0xd9,0x0,0x0,0x90,0x19,0x6,0x8b,
- 0xb5,0x54,0x0,0x0,0xb4,0xf5,0x6,0xa0,0xd8,0xfe,0x0,0x0,0x53,0x1a,0x6,0xb6,
- 0x6c,0xfe,0x0,0x0,0x9f,0xe1,0x6,0xc6,0x1c,0x9e,0x0,0x0,0x18,0x16,0x6,0xd8,
- 0xf0,0x5e,0x0,0x0,0x44,0x1f,0x6,0xe4,0x3a,0x33,0x0,0x0,0xab,0x8e,0x6,0xf2,
- 0x42,0x9a,0x0,0x0,0x5e,0x36,0x6,0xf8,0x3f,0x1e,0x0,0x0,0x87,0x57,0x7,0x1f,
- 0x3b,0x1e,0x0,0x0,0xbf,0xe2,0x7,0x55,0xb3,0xce,0x0,0x0,0x16,0x7a,0x7,0x5d,
- 0x43,0x91,0x0,0x0,0xaf,0x3f,0x7,0x5e,0xae,0x64,0x0,0x0,0x6e,0x50,0x7,0x5e,
- 0xae,0x74,0x0,0x0,0x6e,0x92,0x7,0x5f,0x40,0x71,0x0,0x0,0xaf,0x7d,0x7,0x64,
- 0xf9,0x6f,0x0,0x0,0xca,0xfa,0x7,0x6a,0xd3,0xde,0x0,0x0,0x91,0xb6,0x7,0x7e,
- 0x12,0xce,0x0,0x0,0xb0,0x5a,0x7,0x8b,0x84,0xad,0x0,0x0,0x9a,0x28,0x7,0x92,
- 0x89,0x9,0x0,0x0,0xa6,0x2c,0x7,0x93,0x1e,0x9e,0x0,0x0,0xa9,0x7e,0x7,0x9f,
- 0x6c,0xb3,0x0,0x0,0xc7,0x20,0x7,0xad,0x58,0x6e,0x0,0x0,0x74,0x98,0x7,0xd3,
- 0x14,0x2e,0x0,0x0,0x58,0xb4,0x7,0xdc,0x3d,0xbe,0x0,0x0,0x2a,0xb6,0x7,0xe0,
- 0x1a,0x4f,0x0,0x0,0x89,0x5c,0x7,0xe2,0x88,0x31,0x0,0x0,0xcb,0x3a,0x7,0xe3,
- 0xf7,0x9e,0x0,0x0,0x8a,0x46,0x7,0xf9,0x3b,0xfa,0x0,0x0,0xa,0xd6,0x8,0x2b,
- 0x9,0x3a,0x0,0x0,0x5b,0x77,0x8,0x2e,0x78,0xc4,0x0,0x0,0x75,0xde,0x8,0x3c,
- 0x76,0x59,0x0,0x0,0x23,0x14,0x8,0x40,0xf,0xbe,0x0,0x0,0xb6,0x29,0x8,0x48,
- 0x10,0x3e,0x0,0x0,0x5b,0xe8,0x8,0x49,0x6f,0x6e,0x0,0x0,0x9d,0xc5,0x8,0x4b,
- 0x90,0xab,0x0,0x0,0x0,0x58,0x8,0x66,0x21,0xea,0x0,0x0,0x1f,0xbb,0x8,0x72,
- 0x3c,0xfe,0x0,0x0,0x85,0x94,0x8,0x82,0xd3,0xb4,0x0,0x0,0xb,0xd9,0x8,0x99,
- 0x50,0xfe,0x0,0x0,0x13,0x6c,0x8,0xaa,0xe3,0xe4,0x0,0x0,0x96,0xf2,0x8,0xb3,
- 0x26,0x9e,0x0,0x0,0x32,0x94,0x8,0xb8,0xa6,0x4a,0x0,0x0,0x9b,0x49,0x8,0xbc,
- 0x1f,0x1e,0x0,0x0,0x6c,0x79,0x8,0xcb,0x30,0x7e,0x0,0x0,0x80,0xdf,0x8,0xdc,
- 0xf5,0x2e,0x0,0x0,0x6f,0x52,0x8,0xe0,0x7,0x3e,0x0,0x0,0x4a,0x52,0x8,0xe0,
- 0x7,0x3e,0x0,0x0,0x9b,0x7a,0x8,0xe7,0x82,0x5e,0x0,0x0,0xcb,0xbd,0x8,0xe8,
- 0x30,0xe,0x0,0x0,0xc8,0x2e,0x9,0x4,0x4f,0x11,0x0,0x0,0x8,0x6f,0x9,0x13,
- 0x10,0xee,0x0,0x0,0x5e,0x8f,0x9,0x13,0x55,0xde,0x0,0x0,0x11,0x24,0x9,0x25,
- 0x56,0x7e,0x0,0x0,0x25,0x5b,0x9,0x2d,0xc9,0x42,0x0,0x0,0x2,0x45,0x9,0x3c,
- 0x6,0xae,0x0,0x0,0x78,0x23,0x9,0x3d,0xef,0x3a,0x0,0x0,0x43,0xcb,0x9,0x42,
- 0x7b,0xe1,0x0,0x0,0xc5,0xd3,0x9,0x45,0x92,0xfe,0x0,0x0,0x49,0xae,0x9,0x4b,
- 0xad,0xc9,0x0,0x0,0xd,0x68,0x9,0x4c,0x8f,0x69,0x0,0x0,0x72,0x5a,0x9,0x5c,
- 0xb,0x5e,0x0,0x0,0xad,0xbb,0x9,0x65,0x8e,0x11,0x0,0x0,0xe5,0x66,0x9,0x83,
- 0x1,0x3a,0x0,0x0,0x4c,0x15,0x9,0x8a,0x4,0xea,0x0,0x0,0x1c,0xc2,0x9,0x8d,
- 0xf6,0xe1,0x0,0x0,0x95,0xd5,0x9,0x97,0x0,0x42,0x0,0x0,0x4c,0x57,0x9,0xa2,
- 0x27,0x1e,0x0,0x0,0xbf,0x83,0x9,0xae,0xf9,0x3a,0x0,0x0,0x5d,0x96,0x9,0xbb,
- 0x17,0xd1,0x0,0x0,0x9,0xc8,0x9,0xc8,0xb4,0xb9,0x0,0x0,0x8f,0x30,0x9,0xf3,
- 0xb,0x80,0x0,0x0,0xc7,0x5c,0x9,0xf7,0x73,0xca,0x0,0x0,0x43,0x9,0x9,0xf8,
- 0xba,0xe,0x0,0x0,0x8a,0xcd,0x9,0xfb,0x69,0xba,0x0,0x0,0x20,0x8e,0x9,0xfe,
- 0x27,0x8a,0x0,0x0,0x1a,0x68,0xa,0x21,0x3c,0x1e,0x0,0x0,0x6b,0x58,0xa,0x25,
- 0xf3,0x8e,0x0,0x0,0x14,0xeb,0xa,0x30,0x34,0xee,0x0,0x0,0xba,0x34,0xa,0x30,
- 0x34,0xee,0x0,0x0,0xe4,0xfd,0xa,0x35,0x5e,0x71,0x0,0x0,0x75,0x31,0xa,0x41,
- 0xeb,0x3e,0x0,0x0,0xc4,0xa7,0xa,0x50,0xfd,0xce,0x0,0x0,0x3,0x17,0xa,0x7b,
- 0x45,0x52,0x0,0x0,0xe4,0x18,0xa,0x85,0xfd,0xa9,0x0,0x0,0x96,0xa6,0xa,0x95,
- 0x12,0xfe,0x0,0x0,0x46,0x5d,0xa,0x9c,0x9,0x81,0x0,0x0,0xc5,0xb,0xa,0xab,
- 0x77,0x14,0x0,0x0,0x4,0x43,0xa,0xb0,0xb4,0xb5,0x0,0x0,0x70,0x28,0xa,0xb8,
- 0xc6,0xfa,0x0,0x0,0x20,0xef,0xa,0xbc,0x8c,0x74,0x0,0x0,0x85,0x1,0xa,0xd7,
- 0x53,0x8a,0x0,0x0,0x42,0x0,0xa,0xe3,0xe2,0x14,0x0,0x0,0x97,0x22,0xa,0xe5,
- 0x47,0xba,0x0,0x0,0x48,0x24,0xa,0xf8,0x17,0x4,0x0,0x0,0xc,0x30,0xb,0x14,
- 0x21,0x9,0x0,0x0,0x71,0x9,0xb,0x2a,0x64,0x7e,0x0,0x0,0xbd,0x3f,0xb,0x33,
- 0xc3,0x8e,0x0,0x0,0x87,0xf7,0xb,0x7c,0xb7,0xaa,0x0,0x0,0x43,0x61,0xb,0xa3,
- 0x6,0x39,0x0,0x0,0xc9,0xaa,0xb,0xa7,0x67,0xe7,0x0,0x0,0xc,0xf7,0xb,0xaa,
- 0xd1,0x2,0x0,0x0,0xab,0xc1,0xb,0xaf,0xbd,0x1,0x0,0x0,0x96,0xf,0xb,0xb7,
- 0xd2,0xfe,0x0,0x0,0x33,0x93,0xb,0xc1,0x4f,0x8e,0x0,0x0,0x63,0xbb,0xb,0xc8,
- 0x17,0x9a,0x0,0x0,0x40,0x1c,0xb,0xcc,0x5d,0x2a,0x0,0x0,0x21,0xaf,0xb,0xd2,
- 0xf0,0x2e,0x0,0x0,0x1,0xa,0xb,0xf8,0x7e,0x2e,0x0,0x0,0x86,0x90,0xc,0x1b,
- 0xfe,0x7e,0x0,0x0,0x66,0xc1,0xc,0x2d,0x1a,0xf1,0x0,0x0,0xc5,0x8d,0xc,0x38,
- 0x78,0xde,0x0,0x0,0x52,0x67,0xc,0x3a,0x32,0x3e,0x0,0x0,0x61,0x78,0xc,0x46,
- 0x2c,0xc3,0x0,0x0,0xad,0x1f,0xc,0x54,0x5d,0xa2,0x0,0x0,0x76,0xb4,0xc,0x55,
- 0xec,0x1e,0x0,0x0,0x48,0xc3,0xc,0x65,0x27,0x6e,0x0,0x0,0x60,0x4a,0xc,0x78,
- 0x8e,0x4e,0x0,0x0,0x97,0xb8,0xc,0x7a,0x74,0xbe,0x0,0x0,0x8b,0xa7,0xc,0x7f,
- 0xf2,0x1e,0x0,0x0,0x72,0xad,0xc,0x86,0x7,0x3e,0x0,0x0,0x76,0xfe,0xc,0x89,
- 0x97,0xde,0x0,0x0,0xcc,0x1b,0xc,0xbb,0x1,0x73,0x0,0x0,0x59,0x7c,0xc,0xbb,
- 0x1,0x73,0x0,0x0,0xaa,0x18,0xc,0xbb,0x1,0x73,0x0,0x0,0xe4,0x6b,0xc,0xbc,
- 0x36,0x3e,0x0,0x0,0x80,0x60,0xc,0xbd,0x72,0x9e,0x0,0x0,0xc3,0xe8,0xc,0xe0,
- 0xa9,0xbe,0x0,0x0,0x95,0x1f,0xc,0xe2,0xdf,0x55,0x0,0x0,0x85,0x36,0xc,0xf9,
- 0x5e,0xae,0x0,0x0,0xb1,0x6,0xc,0xfe,0x9c,0x9e,0x0,0x0,0x3a,0xa3,0xd,0x4,
- 0x5f,0x59,0x0,0x0,0x90,0x6a,0xd,0xf,0x4e,0x6e,0x0,0x0,0x54,0xef,0xd,0x4c,
- 0x1d,0x31,0x0,0x0,0x96,0x49,0xd,0x58,0x98,0x6e,0x0,0x0,0xb9,0x9f,0xd,0x9a,
- 0x50,0xf3,0x0,0x0,0x94,0xa7,0xd,0xd4,0x95,0x41,0x0,0x0,0xc0,0x48,0xd,0xd7,
- 0xfc,0x1e,0x0,0x0,0x2e,0xb5,0xd,0xd8,0x59,0xdf,0x0,0x0,0xcd,0xe8,0xd,0xe6,
- 0x8f,0x6a,0x0,0x0,0x22,0x8b,0xd,0xec,0xf9,0xc3,0x0,0x0,0x8b,0xf8,0xd,0xfd,
- 0xd,0x22,0x0,0x0,0xa,0x7c,0xe,0xf,0xe,0xa0,0x0,0x0,0x92,0x7f,0xe,0x13,
- 0x1f,0xfe,0x0,0x0,0x51,0x6,0xe,0x30,0x3,0xa5,0x0,0x0,0xc6,0x67,0xe,0x30,
- 0x6d,0x3e,0x0,0x0,0x67,0xfc,0xe,0x44,0x82,0x3a,0x0,0x0,0x40,0xf2,0xe,0x7e,
- 0xd9,0xce,0x0,0x0,0x54,0x46,0xe,0x87,0xe7,0x64,0x0,0x0,0xb,0x29,0xe,0x89,
- 0xf0,0x4e,0x0,0x0,0xaa,0x79,0xe,0x9f,0x90,0x9e,0x0,0x0,0x70,0x64,0xe,0x9f,
- 0x90,0x9e,0x0,0x0,0xe0,0x8a,0xe,0xa8,0x94,0x77,0x0,0x0,0x97,0x60,0xe,0xb1,
- 0x2b,0xce,0x0,0x0,0x62,0x1b,0xe,0xb2,0x85,0xee,0x0,0x0,0x36,0x77,0xe,0xb4,
- 0x8c,0x1,0x0,0x0,0x9,0x14,0xe,0xc0,0x3b,0xf1,0x0,0x0,0x8d,0x27,0xe,0xd0,
- 0x9d,0x8e,0x0,0x0,0x98,0xbe,0xe,0xdc,0xdd,0xce,0x0,0x0,0x2d,0x5b,0xe,0xf1,
- 0x38,0xce,0x0,0x0,0x9e,0x62,0xe,0xff,0xbf,0x42,0x0,0x0,0x2,0xaf,0xf,0x2,
- 0x2,0x21,0x0,0x0,0xb7,0x7a,0xf,0xf,0xd8,0xde,0x0,0x0,0x92,0x2c,0xf,0x47,
- 0x35,0x8e,0x0,0x0,0x2c,0x3,0xf,0x48,0xb8,0x5a,0x0,0x0,0x20,0x25,0xf,0x55,
- 0xd9,0xd1,0x0,0x0,0x84,0x52,0xf,0x60,0xe2,0x5e,0x0,0x0,0x4c,0xb5,0xf,0x66,
- 0x94,0x9e,0x0,0x0,0x7f,0x20,0xf,0x6e,0x43,0xa5,0x0,0x0,0xab,0x5c,0xf,0xa1,
- 0x93,0xca,0x0,0x0,0x5a,0x39,0xf,0xa7,0x7b,0xbe,0x0,0x0,0xce,0x46,0xf,0xaf,
- 0x1f,0x4f,0x0,0x0,0x89,0xcf,0xf,0xb3,0xad,0xaa,0x0,0x0,0x4a,0xa,0xf,0xc6,
- 0x3f,0xf3,0x0,0x0,0x8b,0x40,0xf,0xcb,0x37,0xde,0x0,0x0,0x2f,0xfe,0xf,0xd2,
- 0xf,0x4e,0x0,0x0,0x3f,0x19,0xf,0xd3,0x69,0x3e,0x0,0x0,0x55,0xc7,0xf,0xe9,
- 0x8a,0xbe,0x0,0x0,0xae,0x5b,0xf,0xef,0x55,0x95,0x0,0x0,0xae,0xfc,0xf,0xf4,
- 0x81,0xe1,0x0,0x0,0xba,0x69,0xf,0xfd,0x3b,0x5a,0x0,0x0,0x12,0xb6,0x69,0x0,
- 0x0,0xe5,0xe1,0x3,0x0,0x0,0x0,0x24,0x0,0x41,0x0,0x74,0x0,0x74,0x0,0x6f,
- 0x0,0x72,0x0,0x6e,0x0,0x65,0x0,0x79,0x0,0x20,0x0,0x4f,0x0,0x6e,0x0,0x6c,
- 0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x25,0x0,0x31,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x12,0x41,0x74,0x74,0x6f,0x72,0x6e,0x65,0x79,0x20,0x4f,
- 0x6e,0x6c,0x69,0x6e,0x65,0x20,0x25,0x31,0x7,0x0,0x0,0x0,0xd,0x41,0x4f,0x41,
- 0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x1,0x3,0x0,0x0,0x0,0x1e,
- 0x0,0x4f,0x0,0x64,0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x7a,0x0,0x61,
- 0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6d,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x44,0x65,0x6d,0x6f,0x20,0x70,0x6c,0x61,
- 0x79,0x62,0x61,0x63,0x6b,0x7,0x0,0x0,0x0,0xd,0x41,0x4f,0x41,0x70,0x70,0x6c,
- 0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x4f,0x0,
- 0x64,0x1,0x42,0x1,0x5,0x0,0x63,0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,
- 0x20,0x0,0x6f,0x0,0x64,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x77,0x0,
- 0x65,0x0,0x72,0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x19,0x44,0x69,0x73,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x20,0x66,0x72,
- 0x6f,0x6d,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0xd,0x41,
- 0x4f,0x41,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x1,0x3,0x0,0x0,
- 0x0,0x9a,0x0,0x42,0x1,0x42,0x1,0x5,0x0,0x64,0x0,0x20,0x0,0x70,0x0,0x6f,
- 0x0,0x64,0x0,0x63,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x20,0x1,0x42,0x1,0x5,
- 0x0,0x63,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x73,
- 0x0,0x69,0x1,0x19,0x0,0x20,0x0,0x7a,0x0,0x20,0x0,0x67,0x1,0x42,0x0,0xf3,
- 0x0,0x77,0x0,0x6e,0x0,0x79,0x0,0x6d,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,
- 0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x2e,0x0,0x20,0x0,0x53,
- 0x0,0x70,0x0,0x72,0x0,0xf3,0x0,0x62,0x0,0x75,0x0,0x6a,0x0,0x20,0x0,0x70,
- 0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x77,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,
- 0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x25,0x0,0x31,0x0,0x20,0x0,0x73,0x0,0x65,
- 0x0,0x6b,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x79,0x0,0x2e,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x40,0x45,0x72,0x72,0x6f,0x72,0x20,0x63,0x6f,0x6e,0x6e,
- 0x65,0x63,0x74,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x6d,0x61,0x73,0x74,0x65,0x72,
- 0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x2e,0x20,0x57,0x69,0x6c,0x6c,0x20,0x74,0x72,
- 0x79,0x20,0x61,0x67,0x61,0x69,0x6e,0x20,0x69,0x6e,0x20,0x25,0x31,0x20,0x73,0x65,
- 0x63,0x6f,0x6e,0x64,0x73,0x2e,0x7,0x0,0x0,0x0,0xd,0x41,0x4f,0x41,0x70,0x70,
- 0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x57,
- 0x0,0x63,0x0,0x7a,0x0,0x79,0x0,0x74,0x0,0x79,0x0,0x77,0x0,0x61,0x0,0x6e,
- 0x0,0x69,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4c,0x6f,
- 0x61,0x64,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0xd,0x41,0x4f,0x41,0x70,0x70,0x6c,
- 0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x57,0x0,
- 0x63,0x0,0x7a,0x0,0x79,0x0,0x74,0x0,0x79,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,
- 0x69,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x0,
- 0x63,0x0,0x69,0x0,0x3a,0x0,0xa,0x0,0x25,0x0,0x31,0x0,0x2f,0x0,0x25,0x0,
- 0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x4c,0x6f,0x61,0x64,0x69,
- 0x6e,0x67,0x20,0x63,0x68,0x61,0x72,0x73,0x3a,0xa,0x25,0x31,0x2f,0x25,0x32,0x7,
- 0x0,0x0,0x0,0xd,0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,
- 0x6e,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x57,0x0,0x63,0x0,0x7a,0x0,0x79,0x0,
- 0x74,0x0,0x79,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,
- 0x6d,0x0,0x75,0x0,0x7a,0x0,0x79,0x0,0x6b,0x0,0x69,0x0,0x3a,0x0,0xa,0x0,
- 0x25,0x0,0x31,0x0,0x2f,0x0,0x25,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x14,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x6d,0x75,0x73,0x69,0x63,
- 0x3a,0xa,0x25,0x31,0x2f,0x25,0x32,0x7,0x0,0x0,0x0,0xd,0x41,0x4f,0x41,0x70,
- 0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x1,0x3,0x0,0x0,0x0,0xba,0x0,
- 0x4e,0x0,0x69,0x0,0x65,0x0,0x61,0x0,0x6b,0x0,0x74,0x0,0x75,0x0,0x61,0x0,
- 0x6c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x73,0x0,
- 0x6a,0x0,0x61,0x0,0x21,0x0,0x20,0x0,0x54,0x0,0x77,0x0,0x6f,0x0,0x6a,0x0,
- 0x61,0x0,0x20,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6a,0x0,0x61,0x0,
- 0x3a,0x0,0x20,0x0,0x25,0x0,0x31,0x0,0xa,0x0,0x55,0x0,0x64,0x0,0x61,0x0,
- 0x6a,0x0,0x20,0x0,0x73,0x0,0x69,0x1,0x19,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,
- 0x20,0x0,0x61,0x0,0x63,0x0,0x65,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,
- 0x72,0x0,0x6e,0x0,0x65,0x0,0x79,0x0,0x6f,0x0,0x6e,0x0,0x6c,0x0,0x69,0x0,
- 0x6e,0x0,0x65,0x0,0x2e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x2c,0x0,0x20,0x0,
- 0x61,0x0,0x62,0x0,0x79,0x0,0x20,0x0,0x6a,0x1,0x5,0x0,0x20,0x0,0x7a,0x0,
- 0x61,0x0,0x6b,0x0,0x74,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,
- 0x6f,0x0,0x77,0x0,0x61,0x1,0x7,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x50,0x4f,0x75,0x74,0x64,0x61,0x74,0x65,0x64,0x20,0x76,0x65,0x72,0x73,
- 0x69,0x6f,0x6e,0x21,0x20,0x59,0x6f,0x75,0x72,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,
- 0x6e,0x3a,0x20,0x25,0x31,0xa,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x67,0x6f,0x20,
- 0x74,0x6f,0x20,0x61,0x63,0x65,0x61,0x74,0x74,0x6f,0x72,0x6e,0x65,0x79,0x6f,0x6e,
- 0x6c,0x69,0x6e,0x65,0x2e,0x63,0x6f,0x6d,0x20,0x74,0x6f,0x20,0x75,0x70,0x64,0x61,
- 0x74,0x65,0x2e,0x7,0x0,0x0,0x0,0xd,0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,0x63,
- 0x61,0x74,0x69,0x6f,0x6e,0x1,0x3,0x0,0x0,0x0,0x5a,0x0,0x4f,0x0,0x64,0x0,
- 0x74,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x7a,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,
- 0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x2c,0x0,0x20,0x0,0x6b,0x0,
- 0x74,0x0,0xf3,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x70,0x0,
- 0x72,0x0,0x7a,0x0,0x65,0x0,0x64,0x0,0x6e,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,
- 0x6e,0x0,0x61,0x0,0x67,0x0,0x72,0x0,0x61,0x1,0x42,0x0,0x65,0x1,0x5b,0x0,
- 0x2f,0x0,0x61,0x1,0x5b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2c,0x50,
- 0x6c,0x61,0x79,0x20,0x62,0x61,0x63,0x6b,0x20,0x64,0x65,0x6d,0x6f,0x73,0x20,0x79,
- 0x6f,0x75,0x20,0x68,0x61,0x76,0x65,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,
- 0x6c,0x79,0x20,0x72,0x65,0x63,0x6f,0x72,0x64,0x65,0x64,0x7,0x0,0x0,0x0,0xd,
- 0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x1,0x3,0x0,
- 0x0,0x2,0x40,0x0,0x4f,0x0,0x64,0x0,0x6b,0x0,0x72,0x0,0x79,0x0,0x74,0x0,
- 0x6f,0x0,0x20,0x0,0x62,0x1,0x42,0x1,0x5,0x0,0x64,0x0,0x20,0x0,0x70,0x0,
- 0x6f,0x0,0x64,0x0,0x63,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x20,0x1,0x42,0x1,
- 0x5,0x0,0x63,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x20,0x0,
- 0x73,0x0,0x69,0x1,0x19,0x0,0x20,0x0,0x7a,0x0,0x20,0x0,0x67,0x1,0x42,0x0,
- 0xf3,0x0,0x77,0x0,0x6e,0x0,0x79,0x0,0x6d,0x0,0x20,0x0,0x73,0x0,0x65,0x0,
- 0x72,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x2e,0x0,0xa,0x0,
- 0x55,0x1,0x7c,0x0,0x79,0x0,0x77,0x0,0x61,0x0,0x6d,0x0,0x79,0x0,0x20,0x0,
- 0x77,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x75,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,
- 0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,
- 0x77,0x0,0x65,0x0,0x72,0x0,0xf3,0x0,0x77,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,
- 0x62,0x0,0x79,0x0,0x20,0x0,0x7a,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,
- 0x6d,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x6f,0x0,0x77,0x0,0x61,0x1,
- 0x7,0x0,0x20,0x0,0x6b,0x0,0x61,0x1,0x7c,0x0,0x64,0x1,0x5,0x0,0x20,0x0,
- 0x6d,0x0,0x6f,0x1,0x7c,0x0,0x6c,0x0,0x69,0x0,0x77,0x1,0x5,0x0,0x20,0x0,
- 0x70,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x72,0x0,0x77,0x1,0x19,0x0,0x2c,0x0,
- 0x20,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x6b,0x0,0x6c,0x0,0x69,0x0,
- 0x65,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x77,0x0,0x79,0x0,0x63,0x0,0x7a,0x0,
- 0x65,0x0,0x72,0x0,0x70,0x0,0x61,0x1,0x42,0x0,0x20,0x0,0x77,0x0,0x73,0x0,
- 0x7a,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x6b,0x0,0x69,0x0,0x65,0x0,0x20,0x0,
- 0x6d,0x0,0x6f,0x1,0x7c,0x0,0x6c,0x0,0x69,0x0,0x77,0x0,0x65,0x0,0x20,0x0,
- 0x6d,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x64,0x0,0x79,0x0,0x20,0x0,0x7a,0x0,
- 0x6e,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x7a,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,
- 0x69,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x1,0x42,0x1,
- 0x5,0x0,0x63,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x20,0x0,
- 0x73,0x0,0x69,0x1,0x19,0x0,0x20,0x0,0x7a,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,
- 0x64,0x0,0x6e,0x0,0x79,0x0,0x6d,0x0,0x2e,0x0,0xa,0x0,0x53,0x0,0x70,0x0,
- 0x72,0x0,0x61,0x0,0x77,0x0,0x64,0x1,0x7a,0x0,0x20,0x0,0x73,0x0,0x77,0x0,
- 0x6f,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x1,0x42,0x1,0x5,0x0,
- 0x63,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x69,0x0,
- 0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,
- 0x77,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,
- 0x7a,0x0,0x61,0x0,0x70,0x0,0x6f,0x0,0x72,0x1,0x19,0x0,0x20,0x0,0x6f,0x0,
- 0x67,0x0,0x6e,0x0,0x69,0x0,0x6f,0x0,0x77,0x1,0x5,0x0,0x20,0x0,0x69,0x0,
- 0x20,0x0,0x73,0x0,0x70,0x0,0x72,0x0,0xf3,0x0,0x62,0x0,0x75,0x0,0x6a,0x0,
- 0x20,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x77,0x0,0x6e,0x0,0x69,0x0,
- 0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0x22,0x54,0x68,0x65,
- 0x72,0x65,0x20,0x77,0x61,0x73,0x20,0x61,0x6e,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,
- 0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x74,0x68,
- 0x65,0x20,0x6d,0x61,0x73,0x74,0x65,0x72,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x2e,
- 0xa,0x57,0x65,0x20,0x64,0x65,0x70,0x6c,0x6f,0x79,0x20,0x6d,0x75,0x6c,0x74,0x69,
- 0x70,0x6c,0x65,0x20,0x6d,0x61,0x73,0x74,0x65,0x72,0x20,0x73,0x65,0x72,0x76,0x65,
- 0x72,0x73,0x20,0x74,0x6f,0x20,0x6d,0x69,0x74,0x69,0x67,0x61,0x74,0x65,0x20,0x61,
- 0x6e,0x79,0x20,0x70,0x6f,0x73,0x73,0x69,0x62,0x6c,0x65,0x20,0x64,0x6f,0x77,0x6e,
- 0x74,0x69,0x6d,0x65,0x2c,0x20,0x62,0x75,0x74,0x20,0x74,0x68,0x65,0x20,0x63,0x6c,
- 0x69,0x65,0x6e,0x74,0x20,0x61,0x70,0x70,0x65,0x61,0x72,0x73,0x20,0x74,0x6f,0x20,
- 0x68,0x61,0x76,0x65,0x20,0x65,0x78,0x68,0x61,0x75,0x73,0x74,0x65,0x64,0x20,0x61,
- 0x6c,0x6c,0x20,0x70,0x6f,0x73,0x73,0x69,0x62,0x6c,0x65,0x20,0x6d,0x65,0x74,0x68,
- 0x6f,0x64,0x73,0x20,0x6f,0x66,0x20,0x66,0x69,0x6e,0x64,0x69,0x6e,0x67,0x20,0x61,
- 0x6e,0x64,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6e,0x67,0x20,0x74,0x6f,
- 0x20,0x6f,0x6e,0x65,0x2e,0xa,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x63,0x68,0x65,
- 0x63,0x6b,0x20,0x79,0x6f,0x75,0x72,0x20,0x49,0x6e,0x74,0x65,0x72,0x6e,0x65,0x74,
- 0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64,0x20,
- 0x66,0x69,0x72,0x65,0x77,0x61,0x6c,0x6c,0x2c,0x20,0x61,0x6e,0x64,0x20,0x70,0x6c,
- 0x65,0x61,0x73,0x65,0x20,0x74,0x72,0x79,0x20,0x61,0x67,0x61,0x69,0x6e,0x2e,0x7,
- 0x0,0x0,0x0,0xd,0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,
- 0x6e,0x1,0x3,0x0,0x0,0x0,0x5a,0x0,0x4a,0x0,0x65,0x0,0x73,0x0,0x74,0x0,
- 0x65,0x1,0x5b,0x0,0x20,0x0,0x7a,0x0,0x62,0x0,0x61,0x0,0x6e,0x0,0x6f,0x0,
- 0x77,0x0,0x61,0x0,0x6e,0x0,0x79,0x0,0x2f,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,
- 0x61,0x0,0x20,0x0,0x74,0x0,0x79,0x0,0x6d,0x0,0x20,0x0,0x73,0x0,0x65,0x0,
- 0x72,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x2e,0x0,0xa,0x0,
- 0x50,0x0,0x6f,0x0,0x77,0x0,0xf3,0x0,0x64,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,
- 0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x29,0x59,0x6f,0x75,0x20,0x61,
- 0x72,0x65,0x20,0x62,0x61,0x6e,0x6e,0x65,0x64,0x20,0x6f,0x6e,0x20,0x74,0x68,0x69,
- 0x73,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x2e,0xa,0x52,0x65,0x61,0x73,0x6f,0x6e,
- 0x3a,0x20,0x25,0x31,0x7,0x0,0x0,0x0,0xd,0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,
- 0x63,0x61,0x74,0x69,0x6f,0x6e,0x1,0x3,0x0,0x0,0x0,0x62,0x0,0x5a,0x0,0x6f,
- 0x0,0x73,0x0,0x74,0x0,0x61,0x1,0x42,0x0,0x65,0x1,0x5b,0x0,0x2f,0x0,0x61,
- 0x1,0x5b,0x0,0x20,0x0,0x7a,0x0,0x62,0x0,0x61,0x0,0x6e,0x0,0x6f,0x0,0x77,
- 0x0,0x61,0x0,0x6e,0x0,0x79,0x0,0x2f,0x0,0x61,0x0,0x20,0x0,0x7a,0x0,0x20,
- 0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,
- 0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x2e,0x0,0xa,0x0,0x50,0x0,0x6f,
- 0x0,0x77,0x0,0xf3,0x0,0x64,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x31,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x30,0x59,0x6f,0x75,0x20,0x68,0x61,0x76,0x65,
- 0x20,0x62,0x65,0x65,0x6e,0x20,0x62,0x61,0x6e,0x6e,0x65,0x64,0x20,0x66,0x72,0x6f,
- 0x6d,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x2e,0xa,0x52,0x65,
- 0x61,0x73,0x6f,0x6e,0x3a,0x20,0x25,0x31,0x7,0x0,0x0,0x0,0xd,0x41,0x4f,0x41,
- 0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x1,0x3,0x0,0x0,0x0,0x62,
- 0x0,0x5a,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x1,0x42,0x0,0x65,0x1,0x5b,
- 0x0,0x2f,0x0,0x61,0x1,0x5b,0x0,0x20,0x0,0x77,0x0,0x79,0x0,0x72,0x0,0x7a,
- 0x0,0x75,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x79,0x0,0x2f,0x0,0x61,0x0,0x20,
- 0x0,0x7a,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x20,0x0,0x73,
- 0x0,0x65,0x0,0x72,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x2e,0x0,0xa,
- 0x0,0x50,0x0,0x6f,0x0,0x77,0x0,0xf3,0x0,0x64,0x0,0x3a,0x0,0x20,0x0,0x25,
- 0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x30,0x59,0x6f,0x75,0x20,
- 0x68,0x61,0x76,0x65,0x20,0x62,0x65,0x65,0x6e,0x20,0x6b,0x69,0x63,0x6b,0x65,0x64,
- 0x20,0x66,0x72,0x6f,0x6d,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x72,0x76,0x65,0x72,
- 0x2e,0xa,0x52,0x65,0x61,0x73,0x6f,0x6e,0x3a,0x20,0x25,0x31,0x7,0x0,0x0,0x0,
- 0xd,0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x1,0x3,
- 0x0,0x0,0x0,0x22,0x0,0x4f,0x0,0x67,0x1,0x42,0x0,0x61,0x0,0x73,0x0,0x7a,
- 0x0,0x61,0x0,0x63,0x0,0x7a,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x70,
- 0x0,0x72,0x0,0x61,0x0,0x77,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,
- 0x43,0x61,0x73,0x65,0x20,0x41,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x72,0x7,0x0,
- 0x0,0x0,0x15,0x41,0x4f,0x43,0x61,0x73,0x65,0x41,0x6e,0x6e,0x6f,0x75,0x6e,0x63,
- 0x65,0x72,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x54,
- 0x0,0x79,0x0,0x74,0x0,0x75,0x1,0x42,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,
- 0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x77,0x0,0x79,0x0,0x3a,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0xb,0x43,0x61,0x73,0x65,0x20,0x74,0x69,0x74,0x6c,0x65,
- 0x3a,0x7,0x0,0x0,0x0,0x15,0x41,0x4f,0x43,0x61,0x73,0x65,0x41,0x6e,0x6e,0x6f,
- 0x75,0x6e,0x63,0x65,0x72,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,
- 0x22,0x0,0x50,0x0,0x6f,0x0,0x74,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x62,0x0,
- 0x6e,0x0,0x79,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x6f,0x1,0x44,0x0,
- 0x63,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x44,0x65,0x66,
- 0x65,0x6e,0x73,0x65,0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x7,0x0,0x0,0x0,0x15,
- 0x41,0x4f,0x43,0x61,0x73,0x65,0x41,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x72,0x44,
- 0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,
- 0x74,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x62,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,
- 0x73,0x1,0x19,0x0,0x64,0x0,0x7a,0x0,0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0xc,0x4a,0x75,0x64,0x67,0x65,0x20,0x6e,0x65,0x65,0x64,0x65,
- 0x64,0x7,0x0,0x0,0x0,0x15,0x41,0x4f,0x43,0x61,0x73,0x65,0x41,0x6e,0x6e,0x6f,
- 0x75,0x6e,0x63,0x65,0x72,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,
- 0x20,0x0,0x50,0x0,0x6f,0x0,0x74,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x62,0x0,
- 0x6e,0x0,0x79,0x0,0x20,0x1,0x42,0x0,0x61,0x0,0x77,0x0,0x6e,0x0,0x69,0x0,
- 0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x75,0x72,0x6f,0x72,
- 0x73,0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x7,0x0,0x0,0x0,0x15,0x41,0x4f,0x43,
- 0x61,0x73,0x65,0x41,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x72,0x44,0x69,0x61,0x6c,
- 0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x50,0x0,0x6f,0x0,0x74,0x0,0x72,
- 0x0,0x7a,0x0,0x65,0x0,0x62,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x70,0x0,0x72,
- 0x0,0x6f,0x0,0x6b,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x72,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x6f,0x73,0x65,0x63,
- 0x75,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x7,0x0,0x0,0x0,
- 0x15,0x41,0x4f,0x43,0x61,0x73,0x65,0x41,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x72,
- 0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x50,0x0,0x6f,
- 0x0,0x74,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x62,0x0,0x6e,0x0,0x79,0x0,0x20,
- 0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,
- 0x0,0x66,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x53,0x74,0x65,0x6e,
- 0x6f,0x67,0x72,0x61,0x70,0x68,0x65,0x72,0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x7,
- 0x0,0x0,0x0,0x15,0x41,0x4f,0x43,0x61,0x73,0x65,0x41,0x6e,0x6e,0x6f,0x75,0x6e,
- 0x63,0x65,0x72,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x36,0x0,
- 0x20,0x0,0x2d,0x0,0x20,0x0,0x5a,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x0,
- 0x77,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x65,0x0,0x63,0x0,0x6e,0x0,0x65,0x0,
- 0x20,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x77,0x0,0x69,0x0,0x65,0x0,
- 0x6e,0x0,0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x20,
- 0x2d,0x20,0x4b,0x65,0x65,0x70,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x73,
- 0x65,0x74,0x74,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,
- 0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x1a,
- 0x0,0x25,0x0,0x31,0x0,0x20,0x0,0x28,0x0,0x64,0x0,0x6f,0x0,0x6d,0x0,0x79,
- 0x1,0x5b,0x0,0x6c,0x0,0x6e,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0xc,0x25,0x31,0x20,0x28,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x29,
- 0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,
- 0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x2,0x3c,0x0,0x3c,0x0,0x68,0x0,0x74,
- 0x0,0x6d,0x0,0x6c,0x0,0x3e,0x0,0x3c,0x0,0x68,0x0,0x65,0x0,0x61,0x0,0x64,
- 0x0,0x2f,0x0,0x3e,0x0,0x3c,0x0,0x62,0x0,0x6f,0x0,0x64,0x0,0x79,0x0,0x3e,
- 0x0,0x57,0x0,0x70,0x0,0x69,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x74,0x0,0x79,
- 0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x77,0x0,0x6f,0x1,0x42,
- 0x0,0x61,0x1,0x44,0x0,0x2c,0x0,0x20,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,
- 0x0,0x64,0x0,0x75,0x0,0x73,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x7a,0x0,0x61,
- 0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x67,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x2e,
- 0x0,0x20,0x0,0x57,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x6b,0x0,0x6f,0x1,0x5b,
- 0x1,0x7,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,
- 0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x7a,
- 0x0,0x6e,0x0,0x61,0x0,0x63,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x61,
- 0x0,0x2e,0x0,0x20,0x0,0x4d,0x0,0x69,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x6e,
- 0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x77,0x0,0x61,0x0,0x64,0x0,0x7a,0x0,0x65,
- 0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x62,0x0,0x79,0x0,0x20,0x0,0x6b,0x0,0x61,
- 0x1,0x7c,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x77,0x0,0x6f,
- 0x1,0x42,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x79,
- 0x1,0x42,0x0,0x6f,0x0,0x20,0x0,0x77,0x0,0x20,0x0,0x73,0x0,0x77,0x0,0x6f,
- 0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x73,
- 0x0,0x7a,0x0,0x75,0x0,0x21,0x0,0x3c,0x0,0x62,0x0,0x72,0x0,0x3e,0x0,0x4e,
- 0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,
- 0x0,0x77,0x0,0x69,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x73,0x0,0x70,0x0,0x61,
- 0x0,0x63,0x0,0x6a,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6b,
- 0x0,0x6f,0x1,0x44,0x0,0x63,0x0,0x75,0x0,0x20,0x0,0x2d,0x0,0x2d,0x0,0x20,
- 0x0,0x7a,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,
- 0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x61,0x0,0x6c,0x0,0x61,
- 0x0,0x72,0x0,0x6d,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x79,0x0,0x20,
- 0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x61,0x1,0x7c,0x0,0x64,0x0,0x79,
- 0x0,0x6d,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x65,0x0,0x6d,0x0,0x2c,
- 0x0,0x20,0x0,0x6b,0x0,0x69,0x0,0x65,0x0,0x64,0x0,0x79,0x0,0x20,0x0,0x6b,
- 0x0,0x74,0x0,0x6f,0x1,0x5b,0x0,0x20,0x0,0x75,0x1,0x7c,0x0,0x79,0x0,0x6a,
- 0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x70,0x0,0x61,0x0,0x63,0x0,0x6a,0x0,0x69,
- 0x0,0x20,0x0,0x77,0x0,0x20,0x0,0x73,0x0,0x77,0x0,0x6f,0x0,0x6a,0x0,0x65,
- 0x0,0x6a,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x6d,
- 0x0,0x6f,0x1,0x5b,0x0,0x63,0x0,0x69,0x0,0x2e,0x0,0x3c,0x0,0x2f,0x0,0x62,
- 0x0,0x6f,0x0,0x64,0x0,0x79,0x0,0x3e,0x0,0x3c,0x0,0x2f,0x0,0x68,0x0,0x74,
- 0x0,0x6d,0x0,0x6c,0x0,0x3e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0x12,
- 0x3c,0x68,0x74,0x6d,0x6c,0x3e,0x3c,0x68,0x65,0x61,0x64,0x2f,0x3e,0x3c,0x62,0x6f,
- 0x64,0x79,0x3e,0x45,0x6e,0x74,0x65,0x72,0x20,0x61,0x73,0x20,0x6d,0x61,0x6e,0x79,
- 0x20,0x63,0x61,0x6c,0x6c,0x77,0x6f,0x72,0x64,0x73,0x20,0x61,0x73,0x20,0x79,0x6f,
- 0x75,0x20,0x77,0x6f,0x75,0x6c,0x64,0x20,0x6c,0x69,0x6b,0x65,0x2e,0x20,0x54,0x68,
- 0x65,0x73,0x65,0x20,0x61,0x72,0x65,0x20,0x63,0x61,0x73,0x65,0x20,0x69,0x6e,0x73,
- 0x65,0x6e,0x73,0x69,0x74,0x69,0x76,0x65,0x2e,0x20,0x4d,0x61,0x6b,0x65,0x20,0x73,
- 0x75,0x72,0x65,0x20,0x74,0x6f,0x20,0x6c,0x65,0x61,0x76,0x65,0x20,0x65,0x76,0x65,
- 0x72,0x79,0x20,0x63,0x61,0x6c,0x6c,0x77,0x6f,0x72,0x64,0x20,0x69,0x6e,0x20,0x69,
- 0x74,0x73,0x20,0x6f,0x77,0x6e,0x20,0x6c,0x69,0x6e,0x65,0x21,0x3c,0x62,0x72,0x3e,
- 0x44,0x6f,0x20,0x6e,0x6f,0x74,0x20,0x6c,0x65,0x61,0x76,0x65,0x20,0x61,0x20,0x6c,
- 0x69,0x6e,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x20,0x73,0x70,0x61,0x63,0x65,
- 0x20,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6e,0x64,0x20,0x2d,0x2d,0x20,0x79,
- 0x6f,0x75,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x61,0x6c,0x65,0x72,0x74,
- 0x65,0x64,0x20,0x65,0x76,0x65,0x72,0x79,0x74,0x69,0x6d,0x65,0x20,0x73,0x6f,0x6d,
- 0x65,0x6f,0x6e,0x65,0x20,0x75,0x73,0x65,0x73,0x20,0x61,0x20,0x73,0x70,0x61,0x63,
- 0x65,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x69,0x72,0x20,0x6d,0x65,0x73,0x73,0x61,
- 0x67,0x65,0x73,0x2e,0x3c,0x2f,0x62,0x6f,0x64,0x79,0x3e,0x3c,0x2f,0x68,0x74,0x6d,
- 0x6c,0x3e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,
- 0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xd2,0x0,0x44,0x0,0x6f,
- 0x0,0x64,0x0,0x61,0x0,0x77,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x6c,0x0,0x75,
- 0x0,0x62,0x0,0x20,0x0,0x75,0x0,0x73,0x0,0x75,0x0,0x77,0x0,0x61,0x0,0x6a,
- 0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x79,
- 0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x64,
- 0x0,0x6f,0x0,0x20,0x0,0x75,0x1,0x7c,0x0,0x79,0x0,0x63,0x0,0x69,0x0,0x61,
- 0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x7a,0x0,0x20,0x0,0x7a,
- 0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x62,0x0,0x79,0x0,0x2e,0x0,0x46,0x0,0x6f,
- 0x0,0x6c,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x79,0x0,0x20,0x0,0x62,0x0,0x61,
- 0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x62,0x1,0x19,0x0,0x64,0x1,0x5,0x0,0x20,
- 0x0,0x6f,0x0,0x74,0x0,0x77,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x6e,
- 0x0,0x65,0x0,0x20,0x0,0x77,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x61,
- 0x0,0x6e,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6c,0x0,0x65,
- 0x0,0x6a,0x0,0x6e,0x0,0x6f,0x1,0x5b,0x0,0x63,0x0,0x69,0x0,0x2e,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x62,0x41,0x64,0x64,0x20,0x6f,0x72,0x20,0x72,
- 0x65,0x6d,0x6f,0x76,0x65,0x20,0x62,0x61,0x73,0x65,0x20,0x66,0x6f,0x6c,0x64,0x65,
- 0x72,0x73,0x20,0x66,0x6f,0x72,0x20,0x75,0x73,0x65,0x20,0x62,0x79,0x20,0x61,0x73,
- 0x73,0x65,0x74,0x73,0x2e,0x20,0x42,0x61,0x73,0x65,0x20,0x66,0x6f,0x6c,0x64,0x65,
- 0x72,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x65,0x61,0x72,0x63,
- 0x68,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x6f,0x72,0x64,0x65,0x72,
- 0x20,0x70,0x72,0x6f,0x76,0x69,0x64,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,
- 0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,
- 0x0,0x0,0x0,0x10,0x0,0x44,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x6a,0x0,0x2e,
- 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x41,0x64,
- 0x64,0xe2,0x80,0xa6,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,
- 0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x5a,
- 0x0,0x65,0x0,0x7a,0x0,0x77,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x6a,0x0,0x20,
- 0x0,0x45,0x0,0x66,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x79,0x0,0x3a,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x41,0x6c,0x6c,0x6f,0x77,0x20,0x45,0x66,
- 0x66,0x65,0x63,0x74,0x73,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,
- 0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x2e,
- 0x0,0x5a,0x0,0x65,0x0,0x7a,0x0,0x77,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x6a,
- 0x0,0x20,0x0,0x57,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x7a,0x1,0x5,0x1,0x5b,
- 0x0,0x6e,0x0,0x69,0x1,0x19,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x3a,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x41,0x6c,0x6c,0x6f,0x77,0x20,0x53,0x63,
- 0x72,0x65,0x65,0x6e,0x73,0x68,0x61,0x6b,0x65,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,
- 0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,
- 0x0,0x0,0x0,0xdc,0x0,0x50,0x0,0x6f,0x0,0x7a,0x0,0x77,0x0,0x61,0x0,0x6c,
- 0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x6e,0x0,0x79,0x0,0x6d,0x0,0x20,
- 0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,
- 0x0,0x72,0x0,0x64,0x0,0x7a,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x6f,
- 0x0,0x62,0x0,0x61,0x0,0x63,0x0,0x7a,0x0,0x79,0x1,0x7,0x0,0x20,0x0,0x6e,
- 0x0,0x61,0x0,0x20,0x0,0x6a,0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6d,0x0,0x20,
- 0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x7a,0x0,0x65,
- 0x0,0x20,0x0,0x73,0x0,0x69,0x1,0x19,0x0,0x20,0x0,0x7a,0x0,0x6e,0x0,0x61,
- 0x0,0x6a,0x0,0x64,0x0,0x75,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x2c,
- 0x0,0x20,0x0,0x6a,0x0,0x61,0x0,0x6b,0x1,0x5,0x0,0x20,0x0,0x70,0x0,0x6f,
- 0x0,0x73,0x0,0x74,0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x75,0x1,0x7c,0x0,0x79,
- 0x0,0x77,0x0,0x61,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x6a,
- 0x0,0x61,0x0,0x6b,0x0,0x20,0x0,0x64,0x1,0x42,0x0,0x75,0x0,0x67,0x0,0x6f,
- 0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x61,0x1,0x42,0x0,0x65,0x1,0x5b,0x0,0x2e,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7f,0x41,0x6c,0x6c,0x6f,0x77,0x73,
- 0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x20,0x6f,0x6e,0x20,0x44,0x69,0x73,0x63,0x6f,
- 0x72,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x65,0x20,0x77,0x68,0x61,0x74,0x20,0x73,
- 0x65,0x72,0x76,0x65,0x72,0x20,0x79,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x69,0x6e,
- 0x2c,0x20,0x77,0x68,0x61,0x74,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,
- 0x20,0x61,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x70,0x6c,0x61,0x79,0x69,0x6e,0x67,
- 0x2c,0x20,0x61,0x6e,0x64,0x20,0x68,0x6f,0x77,0x20,0x6c,0x6f,0x6e,0x67,0x20,0x79,
- 0x6f,0x75,0x20,0x68,0x61,0x76,0x65,0x20,0x62,0x65,0x65,0x6e,0x20,0x70,0x6c,0x61,
- 0x79,0x69,0x6e,0x67,0x20,0x66,0x6f,0x72,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,
- 0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,
- 0x0,0x1,0x2,0x0,0x5a,0x0,0x65,0x0,0x7a,0x0,0x77,0x0,0x61,0x0,0x6c,0x0,
- 0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x66,0x0,0x65,0x0,
- 0x6b,0x0,0x74,0x0,0x79,0x0,0x20,0x0,0x65,0x0,0x6b,0x0,0x72,0x0,0x61,0x0,
- 0x6e,0x0,0x75,0x0,0x2e,0x0,0x20,0x0,0x57,0x0,0x79,0x1,0x42,0x1,0x5,0x0,
- 0x63,0x0,0x7a,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x6a,0x0,
- 0x65,0x1,0x5b,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x7a,0x0,
- 0x65,0x0,0x6a,0x0,0x6d,0x0,0x75,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,
- 0x20,0x0,0x73,0x0,0x69,0x1,0x19,0x0,0x20,0x0,0x6c,0x0,0x75,0x0,0x62,0x0,
- 0x20,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x70,0x0,0x72,0x0,
- 0x6f,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x79,0x0,0x20,0x0,0x7a,0x0,
- 0x20,0x1,0x5b,0x0,0x77,0x0,0x69,0x0,0x61,0x0,0x74,0x1,0x42,0x0,0x6f,0x0,
- 0x63,0x0,0x7a,0x0,0x75,0x1,0x42,0x0,0x6f,0x1,0x5b,0x0,0x63,0x0,0x69,0x1,
- 0x5,0x0,0x20,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x2f,0x0,0x6c,0x0,
- 0x75,0x0,0x62,0x0,0x20,0x0,0x7a,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x70,0x0,
- 0x61,0x0,0x64,0x0,0x61,0x0,0x6d,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x61,0x0,
- 0x64,0x0,0x61,0x0,0x63,0x0,0x7a,0x0,0x6b,0x0,0x6f,0x0,0x77,0x0,0x79,0x0,
- 0x6d,0x0,0x69,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x69,0x41,
- 0x6c,0x6c,0x6f,0x77,0x73,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x65,0x66,0x66,
- 0x65,0x63,0x74,0x73,0x2e,0x20,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x20,0x74,0x68,
- 0x69,0x73,0x20,0x69,0x66,0x20,0x79,0x6f,0x75,0x20,0x68,0x61,0x76,0x65,0x20,0x63,
- 0x6f,0x6e,0x63,0x65,0x72,0x6e,0x73,0x20,0x6f,0x72,0x20,0x69,0x73,0x73,0x75,0x65,
- 0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x70,0x68,0x6f,0x74,0x6f,0x73,0x65,0x6e,0x73,
- 0x69,0x74,0x69,0x76,0x69,0x74,0x79,0x20,0x61,0x6e,0x64,0x2f,0x6f,0x72,0x20,0x73,
- 0x65,0x69,0x7a,0x75,0x72,0x65,0x73,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,
- 0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,
- 0x1,0x10,0x0,0x5a,0x0,0x65,0x0,0x7a,0x0,0x77,0x0,0x61,0x0,0x6c,0x0,0x61,
- 0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x77,0x0,0x73,0x0,0x74,0x0,0x72,
- 0x0,0x7a,0x1,0x5,0x1,0x5b,0x0,0x6e,0x0,0x69,0x1,0x19,0x0,0x63,0x0,0x69,
- 0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6b,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x75,
- 0x0,0x2e,0x0,0x20,0x0,0x57,0x0,0x79,0x1,0x42,0x1,0x5,0x0,0x63,0x0,0x7a,
- 0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x6a,0x0,0x65,0x1,0x5b,
- 0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x6a,
- 0x0,0x6d,0x0,0x75,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x73,
- 0x0,0x69,0x1,0x19,0x0,0x20,0x0,0x6c,0x0,0x75,0x0,0x62,0x0,0x20,0x0,0x6d,
- 0x0,0x61,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x62,
- 0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x79,0x0,0x20,0x0,0x7a,0x0,0x20,0x1,0x5b,
- 0x0,0x77,0x0,0x69,0x0,0x61,0x0,0x74,0x1,0x42,0x0,0x6f,0x0,0x63,0x0,0x7a,
- 0x0,0x75,0x1,0x42,0x0,0x6f,0x1,0x5b,0x0,0x63,0x0,0x69,0x1,0x5,0x0,0x20,
- 0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x2f,0x0,0x6c,0x0,0x75,0x0,0x62,
- 0x0,0x20,0x0,0x7a,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x70,0x0,0x61,0x0,0x64,
- 0x0,0x61,0x0,0x6d,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x64,0x0,0x61,
- 0x0,0x63,0x0,0x7a,0x0,0x6b,0x0,0x6f,0x0,0x77,0x0,0x79,0x0,0x6d,0x0,0x69,
- 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x68,0x41,0x6c,0x6c,0x6f,
- 0x77,0x73,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x73,0x68,0x61,0x6b,0x69,0x6e,0x67,
- 0x2e,0x20,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x20,0x74,0x68,0x69,0x73,0x20,0x69,
- 0x66,0x20,0x79,0x6f,0x75,0x20,0x68,0x61,0x76,0x65,0x20,0x63,0x6f,0x6e,0x63,0x65,
- 0x72,0x6e,0x73,0x20,0x6f,0x72,0x20,0x69,0x73,0x73,0x75,0x65,0x73,0x20,0x77,0x69,
- 0x74,0x68,0x20,0x70,0x68,0x6f,0x74,0x6f,0x73,0x65,0x6e,0x73,0x69,0x74,0x69,0x76,
- 0x69,0x74,0x79,0x20,0x61,0x6e,0x64,0x2f,0x6f,0x72,0x20,0x73,0x65,0x69,0x7a,0x75,
- 0x72,0x65,0x73,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,
- 0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xb2,0x0,0x49,
- 0x0,0x6c,0x0,0x6f,0x1,0x5b,0x1,0x7,0x0,0x20,0x0,0x63,0x0,0x7a,0x0,0x61,
- 0x0,0x73,0x0,0x75,0x0,0x20,0x0,0x28,0x0,0x77,0x0,0x20,0x0,0x6d,0x0,0x69,
- 0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x6b,0x0,0x75,0x0,0x6e,0x0,0x64,
- 0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x73,0x0,0x70,
- 0x1,0x19,0x0,0x64,0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x64,
- 0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x61,0x1,0x7c,0x0,0x64,0x0,0x65,
- 0x0,0x6a,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x79,
- 0x0,0x2c,0x0,0x20,0x0,0x67,0x0,0x64,0x0,0x79,0x0,0x20,0x0,0x74,0x0,0x65,
- 0x0,0x6b,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x49,0x0,0x43,0x0,0x20,0x0,0x6a,
- 0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x77,0x0,0x79,0x1,0x5b,0x0,0x77,
- 0x0,0x69,0x0,0x65,0x0,0x74,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x79,0x0,0x2e,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x63,0x41,0x6d,0x6f,0x75,0x6e,0x74,
- 0x20,0x6f,0x66,0x20,0x74,0x69,0x6d,0x65,0x20,0x28,0x69,0x6e,0x20,0x6d,0x69,0x6c,
- 0x69,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x29,0x20,0x73,0x70,0x65,0x6e,0x74,0x20,
- 0x6f,0x6e,0x20,0x65,0x61,0x63,0x68,0x20,0x6c,0x65,0x74,0x74,0x65,0x72,0x20,0x77,
- 0x68,0x65,0x6e,0x20,0x74,0x68,0x65,0x20,0x69,0x6e,0x2d,0x63,0x68,0x61,0x72,0x61,
- 0x63,0x74,0x65,0x72,0x20,0x74,0x65,0x78,0x74,0x20,0x69,0x73,0x20,0x62,0x65,0x69,
- 0x6e,0x67,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x65,0x64,0x2e,0x7,0x0,0x0,
- 0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x41,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,
- 0x6f,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,
- 0x74,0x0,0x79,0x0,0x77,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0xf,0x41,0x6e,0x69,0x6d,0x61,0x74,0x65,0x64,0x20,0x54,0x68,0x65,0x6d,0x65,0x3a,
- 0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,
- 0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x5a,0x0,0x61,0x0,0x73,
- 0x0,0x6f,0x0,0x62,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,
- 0x41,0x73,0x73,0x65,0x74,0x73,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,
- 0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xc,
- 0x0,0x44,0x1,0x7a,0x0,0x77,0x0,0x69,0x1,0x19,0x0,0x6b,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x5,0x41,0x75,0x64,0x69,0x6f,0x7,0x0,0x0,0x0,0xf,
- 0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,
- 0x3,0x0,0x0,0x0,0x2a,0x0,0x55,0x0,0x72,0x0,0x7a,0x1,0x5,0x0,0x64,0x0,
- 0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x64,0x1,0x7a,0x0,
- 0x77,0x0,0x69,0x1,0x19,0x0,0x6b,0x0,0x6f,0x0,0x77,0x0,0x65,0x0,0x3a,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x41,0x75,0x64,0x69,0x6f,0x20,0x64,
- 0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,
- 0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x22,
- 0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x2d,0x0,0x5a,0x0,0x61,0x0,0x70,
- 0x0,0x69,0x0,0x73,0x0,0x79,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,
- 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x41,0x75,0x74,0x6f,
- 0x6d,0x61,0x74,0x69,0x63,0x20,0x4c,0x6f,0x67,0x67,0x69,0x6e,0x67,0x3a,0x7,0x0,
- 0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,
- 0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x4b,0x0,0x6f,0x0,0x70,0x0,0x69,
- 0x0,0x61,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x70,0x0,0x61,0x0,0x73,0x0,0x6f,
- 0x0,0x77,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,
- 0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x77,0x0,0x65,0x0,0x72,
- 0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x42,0x61,
- 0x63,0x6b,0x75,0x70,0x20,0x4d,0x53,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,
- 0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,
- 0x0,0x18,0x0,0x50,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x62,
- 0x0,0x6c,0x0,0x69,0x0,0x70,0x0,0x79,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0xc,0x42,0x6c,0x61,0x6e,0x6b,0x20,0x62,0x6c,0x69,0x70,0x73,0x3a,
- 0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,
- 0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0,0x7a,0x0,0x79,
- 0x0,0x62,0x0,0x6b,0x0,0x6f,0x1,0x5b,0x1,0x7,0x0,0x20,0x0,0x62,0x0,0x6c,
- 0x0,0x69,0x0,0x70,0x0,0xf3,0x0,0x77,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0xa,0x42,0x6c,0x69,0x70,0x20,0x72,0x61,0x74,0x65,0x3a,0x7,0x0,
- 0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,
- 0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x42,0x0,0x6c,0x0,0x69,0x0,0x70,
- 0x0,0x79,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x42,0x6c,
- 0x69,0x70,0x73,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,
- 0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x5a,
- 0x0,0x61,0x0,0x72,0x0,0x7a,0x1,0x5,0x0,0x64,0x0,0x63,0x0,0x61,0x0,0x20,
- 0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x77,0x0,0x20,
- 0x0,0x28,0x0,0x43,0x0,0x4d,0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x3,0x43,0x4d,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,
- 0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,
- 0x12,0x0,0x5a,0x0,0x61,0x0,0x77,0x0,0x6f,0x1,0x42,0x0,0x61,0x0,0x6e,0x0,
- 0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x61,0x6c,
- 0x6c,0x77,0x6f,0x72,0x64,0x73,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,
- 0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x10,
- 0x0,0x52,0x0,0x6f,0x0,0x7a,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x77,0x0,0x79,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x61,0x73,0x69,0x6e,0x67,
- 0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,
- 0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x52,0x0,0x6f,0x0,0x7a,
- 0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x77,0x0,0x79,0x0,0x3a,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x73,0x69,0x6e,0x67,0x3a,0x7,0x0,0x0,
- 0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x4f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,
- 0x6e,0x0,0x69,0x0,0x63,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,
- 0x20,0x0,0x53,0x0,0x7a,0x0,0x79,0x0,0x62,0x0,0x6b,0x0,0x6f,0x1,0x5b,0x0,
- 0x63,0x0,0x69,0x0,0x20,0x0,0x43,0x0,0x7a,0x0,0x61,0x0,0x74,0x0,0x75,0x0,
- 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x43,0x68,0x61,0x74,0x20,
- 0x52,0x61,0x74,0x65,0x20,0x4c,0x69,0x6d,0x69,0x74,0x3a,0x7,0x0,0x0,0x0,0xf,
- 0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,
- 0x3,0x0,0x0,0x0,0x28,0x0,0x57,0x0,0x79,0x0,0x63,0x0,0x7a,0x0,0x79,0x1,
- 0x5b,0x1,0x7,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x6d,0x0,0x69,0x1,0x19,0x1,
- 0x7,0x0,0x20,0x0,0x43,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x65,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x43,0x6c,0x65,0x61,0x72,0x20,0x43,0x61,0x63,
- 0x68,0x65,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,
- 0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xf6,0x0,0x43,0x0,0x7a,
- 0x0,0x79,0x1,0x5b,0x0,0x63,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x6d,
- 0x0,0x69,0x1,0x19,0x1,0x7,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x72,
- 0x1,0x19,0x0,0x63,0x0,0x7a,0x0,0x6e,0x1,0x5,0x0,0x20,0x0,0x7a,0x0,0x61,
- 0x0,0x73,0x0,0x6f,0x0,0x62,0x0,0xf3,0x0,0x77,0x0,0x2e,0x0,0x20,0x0,0x55,
- 0x1,0x7c,0x0,0x79,0x0,0x6a,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x6f,
- 0x0,0x2c,0x0,0x20,0x0,0x6b,0x0,0x69,0x0,0x65,0x0,0x64,0x0,0x79,0x0,0x20,
- 0x0,0x64,0x0,0x6f,0x0,0x64,0x0,0x61,0x1,0x42,0x0,0x65,0x1,0x5b,0x0,0x2f,
- 0x0,0x61,0x1,0x5b,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0xf3,0x0,0x62,
- 0x0,0x2c,0x0,0x20,0x0,0x6b,0x0,0x74,0x0,0xf3,0x0,0x72,0x0,0x79,0x0,0x20,
- 0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x77,
- 0x0,0x73,0x0,0x7a,0x0,0x65,0x1,0x44,0x0,0x73,0x0,0x74,0x0,0x77,0x0,0x6f,
- 0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x69,
- 0x0,0x6e,0x0,0x6e,0x0,0x79,0x0,0x6d,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x74,
- 0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6a,0x1,0x5,0x0,0x63,0x0,0x79,0x0,0x6d,
- 0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x62,0x0,0x65,0x0,0x6d,
- 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7c,0x43,0x6c,0x65,0x61,
- 0x72,0x73,0x20,0x74,0x68,0x65,0x20,0x6c,0x6f,0x6f,0x6b,0x75,0x70,0x20,0x63,0x61,
- 0x63,0x68,0x65,0x20,0x66,0x6f,0x72,0x20,0x61,0x73,0x73,0x65,0x74,0x73,0x2e,0x20,
- 0x55,0x73,0x65,0x20,0x74,0x68,0x69,0x73,0x20,0x77,0x68,0x65,0x6e,0x20,0x79,0x6f,
- 0x75,0x20,0x68,0x61,0x76,0x65,0x20,0x61,0x64,0x64,0x65,0x64,0x20,0x61,0x6e,0x20,
- 0x61,0x73,0x73,0x65,0x74,0x20,0x74,0x68,0x61,0x74,0x20,0x74,0x61,0x6b,0x65,0x73,
- 0x20,0x70,0x72,0x65,0x63,0x65,0x64,0x65,0x6e,0x63,0x65,0x20,0x6f,0x76,0x65,0x72,
- 0x20,0x61,0x6e,0x6f,0x74,0x68,0x65,0x72,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,
- 0x67,0x20,0x61,0x73,0x73,0x65,0x74,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,
- 0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,
- 0x0,0x2c,0x0,0x4b,0x0,0x6f,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x79,0x0,0x20,
- 0x0,0x77,0x0,0x20,0x0,0x44,0x0,0x7a,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x6e,
- 0x0,0x69,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x49,0x0,0x43,0x0,0x3a,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x6f,0x6c,0x6f,0x72,0x73,0x20,0x69,
- 0x6e,0x20,0x49,0x43,0x20,0x4c,0x6f,0x67,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,
- 0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,
- 0x0,0x0,0x32,0x0,0x4e,0x0,0x69,0x0,0x65,0x0,0x70,0x0,0x72,0x0,0x7a,0x0,
- 0x65,0x0,0x72,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x4f,0x0,
- 0x64,0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x7a,0x0,0x61,0x0,0x6e,0x0,
- 0x69,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x43,
- 0x6f,0x6e,0x74,0x69,0x6e,0x75,0x6f,0x75,0x73,0x20,0x50,0x6c,0x61,0x79,0x62,0x61,
- 0x63,0x6b,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,
- 0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x4e,0x0,
- 0x69,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,
- 0x72,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x65,0x0,0x20,0x0,0x4f,0x0,0x6b,0x0,
- 0x6e,0x0,0x61,0x0,0x20,0x0,0x43,0x0,0x7a,0x0,0x61,0x0,0x74,0x0,0x75,0x0,
- 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73,0x74,0x6f,
- 0x6d,0x20,0x43,0x68,0x61,0x74,0x62,0x6f,0x78,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,
- 0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,
- 0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x4e,0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x74,
- 0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x6f,0x0,0x77,
- 0x0,0x65,0x0,0x20,0x0,0x6b,0x0,0x73,0x0,0x79,0x0,0x77,0x0,0x6b,0x0,0x69,
- 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73,0x74,
- 0x6f,0x6d,0x20,0x73,0x68,0x6f,0x77,0x6e,0x61,0x6d,0x65,0x73,0x3a,0x7,0x0,0x0,
- 0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x44,0x0,0x6f,0x0,0x6d,0x0,0x79,0x1,
- 0x5b,0x0,0x6c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x73,0x0,0x79,0x0,
- 0x77,0x0,0x6b,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x11,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x20,0x73,0x68,0x6f,0x77,0x6e,0x61,0x6d,
- 0x65,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,
- 0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x44,0x0,0x6f,
- 0x0,0x6d,0x0,0x79,0x1,0x5b,0x0,0x6c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6e,
- 0x0,0x61,0x0,0x7a,0x0,0x77,0x0,0x61,0x0,0x20,0x0,0x75,0x1,0x7c,0x0,0x79,
- 0x0,0x74,0x0,0x6b,0x0,0x6f,0x0,0x77,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x61,
- 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x44,0x65,0x66,0x61,
- 0x75,0x6c,0x74,0x20,0x75,0x73,0x65,0x72,0x6e,0x61,0x6d,0x65,0x3a,0x7,0x0,0x0,
- 0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x6f,0x0,
- 0x6e,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x44,
- 0x65,0x66,0x65,0x6e,0x73,0x65,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,
- 0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,
- 0x3c,0x0,0x44,0x0,0x65,0x0,0x73,0x0,0x79,0x0,0x6e,0x0,0x63,0x0,0x68,0x0,
- 0x72,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x63,0x0,0x6a,0x0,
- 0x61,0x0,0x20,0x0,0x44,0x0,0x7a,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,
- 0x69,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x49,0x0,0x43,0x0,0x3a,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x44,0x65,0x73,0x79,0x6e,0x63,0x68,0x72,0x6f,
- 0x6e,0x69,0x7a,0x65,0x20,0x49,0x43,0x20,0x4c,0x6f,0x67,0x73,0x3a,0x7,0x0,0x0,
- 0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0xff,0xff,0xff,0xff,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x8,0x44,0x69,0x73,0x63,0x6f,0x72,0x64,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,
- 0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,
- 0x0,0x0,0x52,0x0,0x57,0x1,0x42,0x1,0x5,0x0,0x63,0x0,0x7a,0x0,0x20,0x0,
- 0x70,0x1,0x19,0x0,0x74,0x0,0x6c,0x1,0x5,0x0,0x63,0x0,0x65,0x0,0x20,0x0,
- 0x73,0x0,0x69,0x1,0x19,0x0,0x20,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x6b,0x0,
- 0x74,0x0,0x79,0x0,0x20,0x0,0x64,0x1,0x7a,0x0,0x77,0x0,0x69,0x1,0x19,0x0,
- 0x6b,0x0,0x6f,0x0,0x77,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x53,0x0,0x46,0x0,
- 0x58,0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x45,
- 0x6e,0x61,0x62,0x6c,0x65,0x20,0x4c,0x6f,0x6f,0x70,0x69,0x6e,0x67,0x20,0x53,0x46,
- 0x58,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,
- 0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x47,0x0,0x72,
- 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x47,0x61,0x6d,0x65,
- 0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,
- 0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x1,0x0,0x0,0x44,
- 0x0,0x61,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x6d,0x0,0x79,
- 0x1,0x5b,0x0,0x6c,0x0,0x6e,0x1,0x5,0x0,0x20,0x0,0x77,0x0,0x61,0x0,0x72,
- 0x0,0x74,0x0,0x6f,0x1,0x5b,0x1,0x7,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x7a,
- 0x0,0x79,0x0,0x63,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x6f,0x0,0x77,0x0,0x69,
- 0x0,0x20,0x0,0x27,0x0,0x4e,0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,
- 0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x65,
- 0x0,0x20,0x0,0x6b,0x0,0x73,0x0,0x79,0x0,0x77,0x0,0x6b,0x0,0x69,0x0,0x27,
- 0x0,0x2c,0x0,0x20,0x0,0x6b,0x0,0x74,0x0,0xf3,0x0,0x72,0x0,0x79,0x0,0x20,
- 0x0,0x6f,0x0,0x6b,0x0,0x72,0x0,0x65,0x1,0x5b,0x0,0x6c,0x0,0x61,0x0,0x2c,
- 0x0,0x20,0x0,0x63,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x6b,0x0,0x6c,0x0,0x69,
- 0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x77,0x0,0x69,
- 0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x6b,
- 0x0,0x61,0x0,0x7a,0x0,0x79,0x0,0x77,0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x6e,
- 0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,
- 0x0,0x72,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,
- 0x0,0x7a,0x0,0x77,0x0,0x79,0x0,0x20,0x0,0x49,0x0,0x43,0x0,0x2e,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x99,0x47,0x69,0x76,0x65,0x73,0x20,0x74,0x68,
- 0x65,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,
- 0x66,0x6f,0x72,0x20,0x74,0x68,0x65,0x20,0x69,0x6e,0x2d,0x67,0x61,0x6d,0x65,0x20,
- 0x27,0x43,0x75,0x73,0x74,0x6f,0x6d,0x20,0x73,0x68,0x6f,0x77,0x6e,0x61,0x6d,0x65,
- 0x73,0x27,0x20,0x74,0x69,0x63,0x6b,0x62,0x6f,0x78,0x2c,0x20,0x77,0x68,0x69,0x63,
- 0x68,0x20,0x69,0x6e,0x20,0x74,0x75,0x72,0x6e,0x20,0x64,0x65,0x74,0x65,0x72,0x6d,
- 0x69,0x6e,0x65,0x73,0x20,0x77,0x68,0x65,0x74,0x68,0x65,0x72,0x20,0x74,0x68,0x65,
- 0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,0x20,0x73,0x68,0x6f,0x75,0x6c,0x64,0x20,0x64,
- 0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x63,0x75,0x73,0x74,0x6f,0x6d,0x20,0x69,0x6e,
- 0x2d,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x20,0x6e,0x61,0x6d,0x65,0x73,
- 0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,
- 0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x48,0x0,0x6f,0x0,
- 0x73,0x0,0x74,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,
- 0x72,0x0,0x6f,0x0,0x7a,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x77,0x0,0x79,0x0,
- 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x6f,0x73,0x74,0x69,
- 0x6e,0x67,0x20,0x63,0x61,0x73,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,
- 0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,
- 0x0,0x1,0x3c,0x0,0x4a,0x0,0x65,0x1,0x5b,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,
- 0x77,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x6f,0x1,0x5b,0x1,0x7,0x0,0x20,0x0,
- 0x43,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x75,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,
- 0x7a,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x61,0x0,
- 0x20,0x0,0x54,0x0,0x65,0x0,0x6b,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x20,0x0,
- 0x6a,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x77,0x0,0x69,0x1,0x19,0x0,
- 0x6b,0x0,0x73,0x0,0x7a,0x0,0x61,0x0,0x2c,0x0,0x20,0x0,0x6e,0x0,0x69,0x1,
- 0x7c,0x0,0x20,0x0,0x30,0x0,0x2c,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x74,0x0,
- 0x79,0x0,0x63,0x0,0x68,0x0,0x6d,0x0,0x69,0x0,0x61,0x0,0x73,0x0,0x74,0x0,
- 0x6f,0x0,0x77,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x70,0x0,0x72,0x0,0x7a,0x0,
- 0x65,0x0,0x63,0x0,0x69,0x0,0x77,0x0,0x79,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,
- 0x6d,0x0,0x69,0x0,0x6e,0x1,0x5,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6c,0x0,
- 0x65,0x0,0x6a,0x0,0x6b,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,
- 0x20,0x0,0x77,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x1,
- 0x5b,0x0,0x63,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x6d,0x0,
- 0x69,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x63,0x0,0x7a,0x0,0x65,0x0,
- 0x6b,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,
- 0x20,0x0,0x6e,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0x6f,0x0,0x62,0x0,0x69,0x0,
- 0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x6c,0x0,
- 0x65,0x0,0x67,0x1,0x42,0x0,0x6f,0x1,0x5b,0x0,0x63,0x0,0x69,0x0,0x2e,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6d,0x49,0x66,0x20,0x54,0x65,0x78,0x74,
- 0x20,0x53,0x74,0x61,0x79,0x20,0x54,0x69,0x6d,0x65,0x20,0x69,0x73,0x20,0x6d,0x6f,
- 0x72,0x65,0x20,0x74,0x68,0x61,0x6e,0x20,0x30,0x2c,0x20,0x69,0x6e,0x73,0x74,0x61,
- 0x6e,0x74,0x20,0x6f,0x62,0x6a,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x6c,
- 0x6c,0x20,0x73,0x6b,0x69,0x70,0x20,0x71,0x75,0x65,0x75,0x65,0x64,0x20,0x6d,0x65,
- 0x73,0x73,0x61,0x67,0x65,0x73,0x20,0x69,0x6e,0x73,0x74,0x65,0x61,0x64,0x20,0x6f,
- 0x66,0x20,0x77,0x61,0x69,0x74,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x63,0x61,0x74,
- 0x63,0x68,0x20,0x75,0x70,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,
- 0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xb4,
- 0x0,0x4a,0x0,0x65,0x1,0x5b,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x6a,0x0,0x65,
- 0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x7a,0x0,0x61,
- 0x0,0x7a,0x0,0x6e,0x0,0x61,0x0,0x63,0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0,0x65,
- 0x0,0x2c,0x0,0x20,0x0,0x64,0x0,0x7a,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x6e,
- 0x0,0x69,0x0,0x6b,0x0,0x20,0x0,0x62,0x1,0x19,0x0,0x64,0x0,0x7a,0x0,0x69,
- 0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0x61,
- 0x0,0x74,0x0,0x79,0x0,0x63,0x0,0x7a,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,
- 0x0,0x7a,0x0,0x61,0x0,0x70,0x0,0x69,0x0,0x73,0x0,0x79,0x0,0x77,0x0,0x61,
- 0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x77,0x0,0x20,0x0,0x74,0x0,0x77,0x0,0x6f,
- 0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x65,
- 0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x2f,0x0,0x6c,0x0,0x6f,0x0,0x67,
- 0x0,0x73,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x47,0x49,0x66,
- 0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2c,0x20,0x61,0x6c,0x6c,0x20,0x6c,0x6f,
- 0x67,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x61,0x75,0x74,0x6f,0x6d,
- 0x61,0x74,0x69,0x63,0x61,0x6c,0x6c,0x79,0x20,0x77,0x72,0x69,0x74,0x74,0x65,0x6e,
- 0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x2f,0x6c,0x6f,0x67,0x73,0x20,0x66,0x6f,
- 0x6c,0x64,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,
- 0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xbc,0x0,
- 0x4a,0x0,0x65,0x1,0x5b,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,
- 0x73,0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,
- 0x7a,0x0,0x6e,0x0,0x61,0x0,0x63,0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,
- 0x2c,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x6a,0x0,0x61,0x0,0x77,0x0,0x69,0x0,
- 0x73,0x0,0x7a,0x0,0x20,0x0,0x73,0x0,0x69,0x1,0x19,0x0,0x20,0x0,0x77,0x1,
- 0x5b,0x0,0x72,0x0,0xf3,0x0,0x64,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x74,0x0,
- 0x65,0x0,0x6e,0x0,0x63,0x0,0x6a,0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x79,0x0,
- 0x63,0x0,0x68,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x7a,0x1,0x5,0x0,
- 0x64,0x0,0x63,0x0,0xf3,0x0,0x77,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,
- 0x70,0x0,0x72,0x0,0x61,0x0,0x77,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x4d,0x0,
- 0x29,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,
- 0x77,0x0,0x65,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x44,0x49,0x66,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2c,
- 0x20,0x79,0x6f,0x75,0x20,0x77,0x69,0x6c,0x6c,0x20,0x61,0x70,0x70,0x65,0x61,0x72,
- 0x20,0x61,0x6d,0x6f,0x6e,0x67,0x73,0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x6f,0x74,
- 0x65,0x6e,0x74,0x69,0x61,0x6c,0x20,0x43,0x4d,0x73,0x20,0x6f,0x6e,0x20,0x74,0x68,
- 0x65,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,
- 0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,
- 0x0,0x0,0xd4,0x0,0x4a,0x0,0x65,0x1,0x5b,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,
- 0x6a,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,
- 0x7a,0x0,0x61,0x0,0x7a,0x0,0x6e,0x0,0x61,0x0,0x63,0x0,0x7a,0x0,0x6f,0x0,
- 0x6e,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,
- 0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x6b,0x0,
- 0x6f,0x0,0x6d,0x0,0x75,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x74,0x0,
- 0x79,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x6f,0x0,0x67,0x1,0x42,0x0,0x6f,0x0,
- 0x73,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x63,0x0,0x68,0x0,
- 0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x77,0x0,
- 0x2c,0x0,0x20,0x0,0x6a,0x0,0x65,0x1,0x5b,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,
- 0x6d,0x0,0x69,0x0,0x65,0x0,0x6a,0x0,0x73,0x0,0x63,0x0,0x65,0x0,0x20,0x0,
- 0x6f,0x0,0x62,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x6a,0x0,
- 0x65,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x77,0x0,0x61,0x0,
- 0x72,0x0,0x74,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x53,0x49,0x66,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2c,0x20,0x79,0x6f,0x75,
- 0x20,0x77,0x69,0x6c,0x6c,0x20,0x67,0x65,0x74,0x20,0x61,0x6c,0x65,0x72,0x74,0x73,
- 0x20,0x61,0x62,0x6f,0x75,0x74,0x20,0x63,0x61,0x73,0x65,0x20,0x61,0x6e,0x6e,0x6f,
- 0x75,0x6e,0x63,0x65,0x6d,0x65,0x6e,0x74,0x73,0x20,0x69,0x66,0x20,0x61,0x20,0x64,
- 0x65,0x66,0x65,0x6e,0x73,0x65,0x20,0x73,0x70,0x6f,0x74,0x20,0x69,0x73,0x20,0x6f,
- 0x70,0x65,0x6e,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,
- 0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xd8,0x0,0x4a,
- 0x0,0x65,0x1,0x7c,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x6a,0x0,0x65,
- 0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x7a,0x0,0x61,
- 0x0,0x7a,0x0,0x6e,0x0,0x61,0x0,0x63,0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0,0x65,
- 0x0,0x2c,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,
- 0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6d,
- 0x0,0x75,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x74,0x0,0x79,0x0,0x20,
- 0x0,0x6f,0x0,0x20,0x0,0x6f,0x0,0x67,0x1,0x42,0x0,0x6f,0x0,0x73,0x0,0x7a,
- 0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x72,
- 0x0,0x6f,0x0,0x7a,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x77,0x0,0x2c,0x0,0x20,
- 0x0,0x6a,0x0,0x65,0x1,0x5b,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x6d,0x0,0x69,
- 0x0,0x65,0x0,0x6a,0x0,0x73,0x0,0x63,0x0,0x65,0x0,0x20,0x1,0x42,0x0,0x61,
- 0x0,0x77,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x6a,0x0,0x65,
- 0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72,
- 0x0,0x74,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x51,
- 0x49,0x66,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2c,0x20,0x79,0x6f,0x75,0x20,
- 0x77,0x69,0x6c,0x6c,0x20,0x67,0x65,0x74,0x20,0x61,0x6c,0x65,0x72,0x74,0x73,0x20,
- 0x61,0x62,0x6f,0x75,0x74,0x20,0x63,0x61,0x73,0x65,0x20,0x61,0x6e,0x6e,0x6f,0x75,
- 0x6e,0x63,0x65,0x6d,0x65,0x6e,0x74,0x73,0x20,0x69,0x66,0x20,0x61,0x20,0x6a,0x75,
- 0x72,0x6f,0x72,0x20,0x73,0x70,0x6f,0x74,0x20,0x69,0x73,0x20,0x6f,0x70,0x65,0x6e,
- 0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,
- 0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xde,0x0,0x4a,0x0,0x65,0x1,
- 0x5b,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x74,0x0,
- 0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x7a,0x0,0x6e,0x0,
- 0x61,0x0,0x63,0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,
- 0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,
- 0x73,0x0,0x7a,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6d,0x0,0x75,0x0,0x6e,0x0,
- 0x69,0x0,0x6b,0x0,0x61,0x0,0x74,0x0,0x79,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,
- 0x6f,0x0,0x67,0x1,0x42,0x0,0x6f,0x0,0x73,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,
- 0x69,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,
- 0x70,0x0,0x72,0x0,0x61,0x0,0x77,0x0,0x2c,0x0,0x20,0x0,0x6a,0x0,0x65,0x1,
- 0x5b,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x6d,0x0,0x69,0x0,0x65,0x0,0x6a,0x0,
- 0x73,0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x6b,0x0,
- 0x75,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x20,0x0,
- 0x6a,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x77,0x0,
- 0x61,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x56,0x49,0x66,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2c,0x20,0x79,
- 0x6f,0x75,0x20,0x77,0x69,0x6c,0x6c,0x20,0x67,0x65,0x74,0x20,0x61,0x6c,0x65,0x72,
- 0x74,0x73,0x20,0x61,0x62,0x6f,0x75,0x74,0x20,0x63,0x61,0x73,0x65,0x20,0x61,0x6e,
- 0x6e,0x6f,0x75,0x6e,0x63,0x65,0x6d,0x65,0x6e,0x74,0x73,0x20,0x69,0x66,0x20,0x61,
- 0x20,0x70,0x72,0x6f,0x73,0x65,0x63,0x75,0x74,0x6f,0x72,0x20,0x73,0x70,0x6f,0x74,
- 0x20,0x69,0x73,0x20,0x6f,0x70,0x65,0x6e,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,
- 0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,
- 0x0,0x0,0xde,0x0,0x4a,0x0,0x65,0x1,0x7c,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,
- 0x20,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,
- 0x20,0x0,0x7a,0x0,0x61,0x0,0x7a,0x0,0x6e,0x0,0x61,0x0,0x63,0x0,0x7a,0x0,
- 0x6f,0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,
- 0x74,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,
- 0x6b,0x0,0x6f,0x0,0x6d,0x0,0x75,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,
- 0x74,0x0,0x79,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x6f,0x0,0x67,0x1,0x42,0x0,
- 0x6f,0x0,0x73,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x63,0x0,
- 0x68,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x70,0x0,0x72,0x0,0x61,0x0,
- 0x77,0x0,0x2c,0x0,0x20,0x0,0x6a,0x0,0x65,0x1,0x5b,0x0,0x6c,0x0,0x69,0x0,
- 0x20,0x0,0x6d,0x0,0x69,0x0,0x65,0x0,0x6a,0x0,0x73,0x0,0x63,0x0,0x65,0x0,
- 0x20,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,
- 0x61,0x0,0x66,0x0,0x61,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x74,0x0,
- 0x20,0x0,0x6f,0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x65,0x0,
- 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x58,0x49,0x66,0x20,0x63,0x68,
- 0x65,0x63,0x6b,0x65,0x64,0x2c,0x20,0x79,0x6f,0x75,0x20,0x77,0x69,0x6c,0x6c,0x20,
- 0x67,0x65,0x74,0x20,0x61,0x6c,0x65,0x72,0x74,0x73,0x20,0x61,0x62,0x6f,0x75,0x74,
- 0x20,0x63,0x61,0x73,0x65,0x20,0x61,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x6d,0x65,
- 0x6e,0x74,0x73,0x20,0x69,0x66,0x20,0x61,0x20,0x73,0x74,0x65,0x6e,0x6f,0x67,0x72,
- 0x61,0x70,0x68,0x65,0x72,0x20,0x73,0x70,0x6f,0x74,0x20,0x69,0x73,0x20,0x6f,0x70,
- 0x65,0x6e,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,
- 0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xd2,0x0,0x4a,0x0,
- 0x65,0x1,0x5b,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,
- 0x74,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x7a,0x0,
- 0x6e,0x0,0x61,0x0,0x63,0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,
- 0x20,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,
- 0x65,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6d,0x0,0x75,0x0,
- 0x6e,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x74,0x0,0x79,0x0,0x20,0x0,0x6f,0x0,
- 0x20,0x0,0x6f,0x0,0x67,0x1,0x42,0x0,0x6f,0x0,0x73,0x0,0x7a,0x0,0x65,0x0,
- 0x6e,0x0,0x69,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,
- 0x7a,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x77,0x0,0x2c,0x0,0x20,0x0,0x6a,0x0,
- 0x65,0x1,0x5b,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x6d,0x0,0x69,0x0,0x65,0x0,
- 0x6a,0x0,0x73,0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x73,0x1,0x19,0x0,0x64,0x0,
- 0x7a,0x0,0x69,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20,0x0,
- 0x6f,0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x2e,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x53,0x49,0x66,0x20,0x63,0x68,0x65,0x63,
- 0x6b,0x65,0x64,0x2c,0x20,0x79,0x6f,0x75,0x20,0x77,0x69,0x6c,0x6c,0x20,0x67,0x65,
- 0x74,0x20,0x61,0x6c,0x65,0x72,0x74,0x73,0x20,0x61,0x62,0x6f,0x75,0x74,0x20,0x63,
- 0x61,0x73,0x65,0x20,0x61,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x6d,0x65,0x6e,0x74,
- 0x73,0x20,0x69,0x66,0x20,0x74,0x68,0x65,0x20,0x6a,0x75,0x64,0x67,0x65,0x20,0x73,
- 0x70,0x6f,0x74,0x20,0x69,0x73,0x20,0x6f,0x70,0x65,0x6e,0x2e,0x7,0x0,0x0,0x0,
- 0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,
- 0x1,0x3,0x0,0x0,0x0,0x8e,0x0,0x4a,0x0,0x65,0x1,0x7c,0x0,0x65,0x0,0x6c,
- 0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x6f,
- 0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x7a,0x0,0x6e,0x0,0x61,0x0,0x63,0x0,0x7a,
- 0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x73,
- 0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x20,
- 0x0,0x6b,0x0,0x6f,0x0,0x6d,0x0,0x75,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x61,
- 0x0,0x74,0x0,0x79,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x6f,0x0,0x67,0x1,0x42,
- 0x0,0x6f,0x0,0x73,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x63,
- 0x0,0x68,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x70,0x0,0x72,0x0,0x61,
- 0x0,0x77,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x49,0x66,
- 0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2c,0x20,0x79,0x6f,0x75,0x20,0x77,0x69,
- 0x6c,0x6c,0x20,0x67,0x65,0x74,0x20,0x61,0x6c,0x65,0x72,0x74,0x73,0x20,0x61,0x62,
- 0x6f,0x75,0x74,0x20,0x63,0x61,0x73,0x65,0x20,0x61,0x6e,0x6e,0x6f,0x75,0x6e,0x63,
- 0x65,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,
- 0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x1,
- 0xc,0x0,0x4a,0x0,0x65,0x1,0x5b,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x77,0x0,
- 0x62,0x0,0x75,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,
- 0x20,0x0,0x73,0x0,0x7a,0x0,0x75,0x0,0x6b,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,
- 0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x77,0x0,0x65,0x0,0x72,0x0,
- 0xf3,0x0,0x77,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x77,0x0,0x69,0x0,0x65,0x0,
- 0x64,0x0,0x7a,0x0,0x69,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x67,0x0,0x72,0x0,
- 0x61,0x0,0x20,0x0,0x73,0x0,0x70,0x0,0x72,0x0,0xf3,0x0,0x62,0x0,0x75,0x0,
- 0x6a,0x0,0x65,0x0,0x20,0x0,0x75,0x1,0x7c,0x0,0x79,0x1,0x7,0x0,0x20,0x0,
- 0x61,0x0,0x64,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x75,0x0,0x20,0x0,0x70,0x0,
- 0x6f,0x0,0x64,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x20,0x0,
- 0x74,0x0,0x75,0x0,0x74,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x69,0x0,0x20,0x0,
- 0x75,0x1,0x7c,0x0,0x79,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x67,0x0,0x6f,0x0,
- 0x20,0x0,0x6a,0x0,0x61,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x64,0x0,
- 0x72,0x0,0x65,0x0,0x73,0x0,0x75,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x70,0x0,
- 0x61,0x0,0x73,0x0,0x6f,0x0,0x77,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x20,0x0,
- 0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x73,0x0,
- 0x65,0x0,0x72,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x2e,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x7b,0x49,0x66,0x20,0x74,0x68,0x65,0x20,0x62,0x75,
- 0x69,0x6c,0x74,0x2d,0x69,0x6e,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x20,0x6c,0x6f,
- 0x6f,0x6b,0x75,0x70,0x73,0x20,0x66,0x61,0x69,0x6c,0x2c,0x20,0x74,0x68,0x65,0x20,
- 0x67,0x61,0x6d,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x74,0x72,0x79,0x20,0x74,0x68,
- 0x65,0x20,0x61,0x64,0x64,0x72,0x65,0x73,0x73,0x20,0x67,0x69,0x76,0x65,0x6e,0x20,
- 0x68,0x65,0x72,0x65,0x20,0x61,0x6e,0x64,0x20,0x75,0x73,0x65,0x20,0x69,0x74,0x20,
- 0x61,0x73,0x20,0x61,0x20,0x62,0x61,0x63,0x6b,0x75,0x70,0x20,0x6d,0x61,0x73,0x74,
- 0x65,0x72,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x20,0x61,0x64,0x64,0x72,0x65,0x73,
- 0x73,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,
- 0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x9c,0x0,0x4a,0x0,0x65,
- 0x1,0x7c,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x73,
- 0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x7a,
- 0x0,0x6e,0x0,0x61,0x0,0x63,0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x2c,
- 0x0,0x20,0x0,0x64,0x0,0x7a,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x69,
- 0x0,0x6b,0x0,0x20,0x0,0x62,0x1,0x19,0x0,0x64,0x0,0x7a,0x0,0x69,0x0,0x65,
- 0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x6b,0x0,0x61,0x0,0x7a,0x0,0x79,0x0,0x77,
- 0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x1,0x19,0x0,0x20,
- 0x0,0x77,0x0,0x20,0x0,0x55,0x0,0x54,0x0,0x43,0x0,0x20,0x0,0x70,0x0,0x72,
- 0x0,0x7a,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x6b,
- 0x0,0x69,0x0,0x65,0x0,0x6d,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x3f,0x49,0x66,0x20,0x74,0x69,0x63,0x6b,0x65,0x64,0x2c,0x20,0x6c,0x6f,0x67,
- 0x20,0x77,0x69,0x6c,0x6c,0x20,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x20,0x61,0x20,
- 0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x20,0x69,0x6e,0x20,0x55,0x54,0x43,
- 0x20,0x62,0x65,0x66,0x6f,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x6e,0x61,0x6d,0x65,
- 0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,
- 0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xcc,0x0,0x4a,0x0,0x65,0x1,
- 0x5b,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x74,0x0,
- 0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x7a,0x0,0x6e,0x0,
- 0x61,0x0,0x63,0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,
- 0x64,0x0,0x7a,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,
- 0x20,0x0,0x62,0x1,0x19,0x0,0x64,0x0,0x7a,0x0,0x69,0x0,0x65,0x0,0x20,0x0,
- 0x70,0x0,0x6f,0x0,0x6b,0x0,0x61,0x0,0x7a,0x0,0x79,0x0,0x77,0x0,0x61,0x1,
- 0x7,0x0,0x20,0x0,0x61,0x0,0x6b,0x0,0x63,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,
- 0x49,0x0,0x43,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x65,0x0,
- 0x20,0x0,0x6a,0x0,0x61,0x0,0x6b,0x0,0x20,0x0,0x6b,0x0,0x72,0x0,0x7a,0x0,
- 0x79,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x72,0x0,
- 0x65,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,
- 0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x6f,0x0,
- 0x64,0x0,0xf3,0x0,0x77,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x4d,0x49,0x66,0x20,0x74,0x69,0x63,0x6b,0x65,0x64,0x2c,0x20,0x6c,0x6f,0x67,0x20,
- 0x77,0x69,0x6c,0x6c,0x20,0x73,0x68,0x6f,0x77,0x20,0x49,0x43,0x20,0x61,0x63,0x74,
- 0x69,0x6f,0x6e,0x73,0x20,0x73,0x75,0x63,0x68,0x20,0x61,0x73,0x20,0x73,0x68,0x6f,
- 0x75,0x74,0x69,0x6e,0x67,0x20,0x61,0x6e,0x64,0x20,0x70,0x72,0x65,0x73,0x65,0x6e,
- 0x74,0x69,0x6e,0x67,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x2e,0x7,0x0,
- 0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,
- 0x6f,0x67,0x1,0x3,0x0,0x0,0x1,0x12,0x0,0x4a,0x0,0x65,0x1,0x7c,0x0,0x65,
- 0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20,
- 0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x7a,0x0,0x6e,0x0,0x61,
- 0x0,0x63,0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x64,
- 0x0,0x7a,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x20,
- 0x0,0x70,0x0,0x6f,0x0,0x6b,0x0,0x61,0x1,0x7c,0x0,0x65,0x0,0x20,0x0,0x77,
- 0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x1,0x5b,0x0,0x63,
- 0x0,0x69,0x0,0x20,0x0,0x6a,0x0,0x61,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x6f,
- 0x0,0x64,0x0,0x65,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x2c,
- 0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x63,0x0,0x7a,0x0,0x61,0x0,0x73,
- 0x0,0x20,0x0,0x67,0x0,0x64,0x0,0x79,0x0,0x20,0x0,0x6f,0x0,0x6b,0x0,0x6e,
- 0x0,0x6f,0x0,0x20,0x0,0x62,0x1,0x19,0x0,0x64,0x0,0x7a,0x0,0x69,0x0,0x65,
- 0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x6f,
- 0x0,0x77,0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6c,0x0,0x65,
- 0x0,0x6a,0x0,0x6b,0x1,0x19,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x7a,0x0,0x61,
- 0x0,0x73,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x7a,0x0,0x6f,0x0,0x73,0x0,0x74,
- 0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x54,0x0,0x65,0x0,0x6b,
- 0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x29,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x71,0x49,0x66,0x20,0x74,0x69,0x63,0x6b,0x65,0x64,0x2c,0x20,0x6c,
- 0x6f,0x67,0x20,0x77,0x69,0x6c,0x6c,0x20,0x73,0x68,0x6f,0x77,0x20,0x6d,0x65,0x73,
- 0x73,0x61,0x67,0x65,0x73,0x20,0x61,0x73,0x2d,0x72,0x65,0x63,0x65,0x69,0x76,0x65,
- 0x64,0x2c,0x20,0x77,0x68,0x69,0x6c,0x65,0x20,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,
- 0x74,0x20,0x77,0x69,0x6c,0x6c,0x20,0x70,0x61,0x72,0x73,0x65,0x20,0x61,0x63,0x63,
- 0x6f,0x72,0x64,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x71,0x75,
- 0x65,0x75,0x65,0x20,0x28,0x54,0x65,0x78,0x74,0x20,0x53,0x74,0x61,0x79,0x20,0x54,
- 0x69,0x6d,0x65,0x29,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,
- 0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x1,0x4c,0x0,
- 0x4a,0x0,0x65,0x1,0x7c,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x6a,0x0,
- 0x65,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x7a,0x0,
- 0x61,0x0,0x7a,0x0,0x6e,0x0,0x61,0x0,0x63,0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0,
- 0x65,0x0,0x2c,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x77,0x0,0x65,0x0,0x20,0x0,
- 0x77,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x1,0x5b,0x0,
- 0x63,0x0,0x69,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x63,0x0,0x7a,0x0,0x6e,0x1,
- 0x5,0x0,0x20,0x0,0x73,0x0,0x69,0x1,0x19,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,
- 0x6a,0x0,0x61,0x0,0x77,0x0,0x69,0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x6e,0x0,
- 0x61,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x28,0x0,
- 0x74,0x0,0x61,0x0,0x6b,0x0,0x20,0x0,0x6a,0x0,0x61,0x0,0x6b,0x0,0x20,0x0,
- 0x6e,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x7a,0x0,0x61,0x0,0x63,0x0,0x69,0x0,
- 0x65,0x0,0x20,0x0,0x4f,0x0,0x4f,0x0,0x43,0x0,0x29,0x0,0x2e,0x0,0x20,0x0,
- 0x54,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x79,0x0,0x63,0x0,0x79,0x0,0x6a,0x0,
- 0x6e,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x41,0x0,0x4f,0x0,0x31,0x0,0x29,0x0,
- 0x20,0x0,0x7a,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,
- 0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x74,0x0,
- 0x20,0x0,0x72,0x0,0xf3,0x0,0x77,0x0,0x6e,0x0,0x6f,0x0,0x77,0x0,0x61,0x1,
- 0x7c,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,
- 0x65,0x0,0x67,0x0,0x6f,0x0,0x20,0x0,0x62,0x0,0x79,0x0,0x63,0x0,0x69,0x0,
- 0x61,0x0,0x20,0x0,0x6f,0x0,0x64,0x0,0x7a,0x0,0x6e,0x0,0x61,0x0,0x63,0x0,
- 0x7a,0x0,0x6f,0x0,0x6e,0x0,0x79,0x0,0x6d,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x8f,0x49,0x66,0x20,0x74,0x69,0x63,0x6b,0x65,0x64,0x2c,0x20,
- 0x6e,0x65,0x77,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x73,0x20,0x77,0x69,0x6c,
- 0x6c,0x20,0x61,0x70,0x70,0x65,0x61,0x72,0x20,0x61,0x74,0x20,0x74,0x68,0x65,0x20,
- 0x62,0x6f,0x74,0x74,0x6f,0x6d,0x20,0x28,0x6c,0x69,0x6b,0x65,0x20,0x74,0x68,0x65,
- 0x20,0x4f,0x4f,0x43,0x20,0x63,0x68,0x61,0x74,0x6c,0x6f,0x67,0x29,0x2e,0x20,0x54,
- 0x68,0x65,0x20,0x74,0x72,0x61,0x64,0x69,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x20,0x28,
- 0x41,0x4f,0x31,0x29,0x20,0x62,0x65,0x68,0x61,0x76,0x69,0x6f,0x75,0x72,0x20,0x69,
- 0x73,0x20,0x65,0x71,0x75,0x69,0x76,0x61,0x6c,0x65,0x6e,0x74,0x20,0x74,0x6f,0x20,
- 0x74,0x68,0x69,0x73,0x20,0x62,0x65,0x69,0x6e,0x67,0x20,0x75,0x6e,0x74,0x69,0x63,
- 0x6b,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,
- 0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x1,0x70,0x0,0x4a,
- 0x0,0x65,0x1,0x5b,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x73,
- 0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x7a,
- 0x0,0x6e,0x0,0x61,0x0,0x63,0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x2c,
- 0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x77,0x0,0x65,0x0,0x20,0x0,0x77,0x0,0x69,
- 0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x1,0x5b,0x0,0x63,0x0,0x69,
- 0x0,0x20,0x0,0x62,0x1,0x19,0x0,0x64,0x1,0x5,0x0,0x20,0x0,0x70,0x0,0x6f,
- 0x0,0x6a,0x0,0x61,0x0,0x77,0x0,0x69,0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x73,
- 0x0,0x69,0x1,0x19,0x0,0x20,0x0,0x6f,0x0,0x64,0x0,0x64,0x0,0x7a,0x0,0x69,
- 0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x7a,
- 0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x6d,0x0,0x6f,
- 0x1,0x5b,0x0,0x63,0x0,0x69,0x1,0x5,0x0,0x20,0x0,0x77,0x0,0x20,0x0,0x6b,
- 0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x6a,0x0,0x6e,0x0,0x79,0x0,0x6d,0x0,0x20,
- 0x0,0x77,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x7a,0x0,0x75,0x0,0x20,
- 0x0,0x70,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x75,
- 0x0,0x2e,0x0,0x20,0x0,0x4a,0x0,0x65,0x1,0x7c,0x0,0x65,0x0,0x6c,0x0,0x69,
- 0x0,0x20,0x0,0x6f,0x0,0x64,0x0,0x7a,0x0,0x6e,0x0,0x61,0x0,0x63,0x0,0x7a,
- 0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x62,0x1,0x19,0x0,0x64,
- 0x0,0x7a,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x69,0x1,0x19,0x0,0x20,
- 0x0,0x70,0x0,0x6f,0x0,0x6b,0x0,0x61,0x0,0x7a,0x0,0x79,0x0,0x77,0x0,0x61,
- 0x1,0x7,0x0,0x20,0x0,0x77,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d,
- 0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x27,0x0,0x6e,0x0,0x69,
- 0x0,0x63,0x0,0x6b,0x0,0x3a,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x61,0x0,0x64,
- 0x0,0x6f,0x0,0x6d,0x0,0x6f,0x1,0x5b,0x1,0x7,0x0,0x22,0x0,0x2e,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x99,0x49,0x66,0x20,0x74,0x69,0x63,0x6b,0x65,
- 0x64,0x2c,0x20,0x6e,0x65,0x77,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x73,0x20,
- 0x77,0x69,0x6c,0x6c,0x20,0x61,0x70,0x70,0x65,0x61,0x72,0x20,0x73,0x65,0x70,0x61,
- 0x72,0x61,0x74,0x65,0x64,0x2c,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,
- 0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x63,0x6f,0x6d,0x69,0x6e,0x67,0x20,0x6f,
- 0x6e,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x78,0x74,0x20,0x6c,0x69,0x6e,0x65,0x20,
- 0x61,0x66,0x74,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x6e,0x61,0x6d,0x65,0x2e,0x20,
- 0x57,0x68,0x65,0x6e,0x20,0x75,0x6e,0x74,0x69,0x63,0x6b,0x65,0x64,0x2c,0x20,0x69,
- 0x74,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x73,0x20,0x69,0x74,0x20,0x61,0x73,
- 0x20,0x27,0x6e,0x61,0x6d,0x65,0x3a,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x27,
- 0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,
- 0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x90,0x0,0x4a,0x0,0x65,0x1,
- 0x5b,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x74,0x0,
- 0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x7a,0x0,0x6e,0x0,
- 0x61,0x0,0x63,0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,
- 0x6d,0x0,0x6f,0x0,0x74,0x0,0x79,0x0,0x77,0x0,0x79,0x0,0x20,0x0,0x62,0x1,
- 0x19,0x0,0x64,0x1,0x5,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x67,0x1,0x42,0x0,
- 0x79,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x77,0x0,0x69,0x0,0x65,0x0,0x72,0x0,
- 0x61,0x1,0x7,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x6f,0x0,
- 0x77,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,
- 0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x79,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x3c,0x49,0x66,0x20,0x74,0x69,0x63,0x6b,0x65,0x64,0x2c,0x20,
- 0x74,0x68,0x65,0x6d,0x65,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x61,
- 0x6c,0x6c,0x6f,0x77,0x65,0x64,0x20,0x74,0x6f,0x20,0x68,0x61,0x76,0x65,0x20,0x61,
- 0x6e,0x69,0x6d,0x61,0x74,0x65,0x64,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,
- 0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,
- 0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xb4,0x0,0x4a,0x0,0x65,0x1,
- 0x5b,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x74,0x0,
- 0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x7a,0x0,0x6e,0x0,
- 0x61,0x0,0x63,0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,
- 0x67,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x70,0x0,0x79,0x0,
- 0x74,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x77,0x0,0x65,0x0,
- 0x72,0x0,0x20,0x0,0x62,0x0,0x79,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x7a,0x0,
- 0x65,0x0,0x72,0x0,0x77,0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x6d,0x0,0x75,0x0,
- 0x7a,0x0,0x79,0x0,0x6b,0x1,0x19,0x0,0x2c,0x0,0x20,0x0,0x6b,0x0,0x69,0x0,
- 0x65,0x0,0x64,0x0,0x79,0x0,0x20,0x0,0x6b,0x0,0x74,0x0,0x6f,0x1,0x5b,0x0,
- 0x20,0x0,0x73,0x0,0x69,0x1,0x19,0x0,0x20,0x0,0x73,0x0,0x70,0x0,0x72,0x0,
- 0x7a,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x77,0x0,0x69,0x0,0x2e,0x0,0x20,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x49,0x49,0x66,0x20,0x74,0x72,0x75,0x65,
- 0x2c,0x20,0x41,0x4f,0x32,0x20,0x77,0x69,0x6c,0x6c,0x20,0x61,0x73,0x6b,0x20,0x74,
- 0x68,0x65,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x20,0x74,0x6f,0x20,0x73,0x74,0x6f,
- 0x70,0x20,0x6d,0x75,0x73,0x69,0x63,0x20,0x77,0x68,0x65,0x6e,0x20,0x79,0x6f,0x75,
- 0x20,0x75,0x73,0x65,0x20,0x27,0x4f,0x62,0x6a,0x65,0x63,0x74,0x69,0x6f,0x6e,0x21,
- 0x27,0x20,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,
- 0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xd8,0x0,0x4a,0x0,0x65,
- 0x1,0x5b,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x74,
- 0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x7a,0x0,0x6e,
- 0x0,0x61,0x0,0x63,0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20,
- 0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x7a,0x0,0x65,0x0,0x7a,0x0,0x77,
- 0x0,0x6f,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x70,
- 0x1,0x19,0x0,0x74,0x0,0x6c,0x1,0x5,0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x73,
- 0x0,0x69,0x1,0x19,0x0,0x20,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x6b,0x0,0x74,
- 0x0,0x79,0x0,0x20,0x0,0x64,0x1,0x7a,0x0,0x77,0x0,0x69,0x1,0x19,0x0,0x6b,
- 0x0,0x6f,0x0,0x77,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x53,0x0,0x46,0x0,0x58,
- 0x0,0x29,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x64,0x0,0x74,
- 0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x7a,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,
- 0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x63,0x0,0x7a,0x0,0x61,0x0,0x73,
- 0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x6a,
- 0x0,0x69,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4c,0x49,0x66,
- 0x20,0x74,0x72,0x75,0x65,0x2c,0x20,0x74,0x68,0x65,0x20,0x67,0x61,0x6d,0x65,0x20,
- 0x77,0x69,0x6c,0x6c,0x20,0x61,0x6c,0x6c,0x6f,0x77,0x20,0x6c,0x6f,0x6f,0x70,0x69,
- 0x6e,0x67,0x20,0x73,0x6f,0x75,0x6e,0x64,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x73,
- 0x20,0x74,0x6f,0x20,0x70,0x6c,0x61,0x79,0x20,0x6f,0x6e,0x20,0x70,0x72,0x65,0x61,
- 0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,
- 0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,
- 0x0,0x0,0x0,0xae,0x0,0x4a,0x0,0x65,0x1,0x7c,0x0,0x65,0x0,0x6c,0x0,0x69,
- 0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x6f,
- 0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x7a,0x0,0x6e,0x0,0x61,0x0,0x63,0x0,0x7a,
- 0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x61,
- 0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x64,
- 0x1,0x7a,0x0,0x77,0x0,0x69,0x1,0x19,0x0,0x6b,0x0,0x20,0x0,0x62,0x0,0x6c,
- 0x0,0x69,0x0,0x70,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x61,
- 0x1,0x7c,0x0,0x64,0x0,0x79,0x0,0x6d,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x7a,
- 0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x73,0x0,0x70,0x0,0x61,0x0,0x63,0x0,0x6a,
- 0x0,0x61,0x0,0x20,0x0,0x27,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20,
- 0x0,0x6d,0x0,0xf3,0x0,0x77,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x27,
- 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4b,0x49,0x66,0x20,0x74,
- 0x72,0x75,0x65,0x2c,0x20,0x74,0x68,0x65,0x20,0x67,0x61,0x6d,0x65,0x20,0x77,0x69,
- 0x6c,0x6c,0x20,0x70,0x6c,0x61,0x79,0x20,0x61,0x20,0x62,0x6c,0x69,0x70,0x20,0x73,
- 0x6f,0x75,0x6e,0x64,0x20,0x65,0x76,0x65,0x6e,0x20,0x77,0x68,0x65,0x6e,0x20,0x61,
- 0x20,0x73,0x70,0x61,0x63,0x65,0x20,0x69,0x73,0x20,0x27,0x62,0x65,0x69,0x6e,0x67,
- 0x20,0x73,0x61,0x69,0x64,0x27,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,
- 0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,
- 0xa6,0x0,0x4a,0x0,0x65,0x1,0x7c,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,
- 0x6a,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x65,0x1,0x5b,0x0,0x20,0x0,0x7a,0x0,
- 0x61,0x0,0x72,0x0,0x7a,0x1,0x5,0x0,0x64,0x0,0x63,0x1,0x5,0x0,0x20,0x0,
- 0x72,0x0,0x6f,0x0,0x7a,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x77,0x0,0x20,0x0,
- 0x28,0x0,0x43,0x0,0x4d,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x77,0x0,0x70,0x0,
- 0x69,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x6a,0x0,0x61,0x0,0x6b,0x0,0x69,0x0,
- 0x65,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x70,0x0,0x72,0x0,0x61,0x0,
- 0x77,0x0,0x79,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x65,0x1,
- 0x5b,0x0,0x20,0x0,0x63,0x0,0x68,0x1,0x19,0x0,0x74,0x0,0x6e,0x0,0x79,0x0,
- 0x20,0x0,0x68,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,
- 0x6e,0x0,0x69,0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x39,0x49,0x66,0x20,0x79,0x6f,0x75,0x27,0x72,0x65,0x20,0x61,0x20,0x43,0x4d,0x2c,
- 0x20,0x65,0x6e,0x74,0x65,0x72,0x20,0x77,0x68,0x61,0x74,0x20,0x63,0x61,0x73,0x65,
- 0x73,0x20,0x79,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x77,0x69,0x6c,0x6c,0x69,0x6e,
- 0x67,0x20,0x74,0x6f,0x20,0x68,0x6f,0x73,0x74,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,
- 0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,
- 0x0,0x0,0x0,0x30,0x0,0x4e,0x0,0x61,0x0,0x74,0x0,0x79,0x0,0x63,0x0,0x68,
- 0x0,0x6d,0x0,0x69,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x77,0x0,0x79,
- 0x0,0x20,0x0,0x53,0x0,0x70,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x63,0x0,0x69,
- 0x0,0x77,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x49,0x6e,
- 0x73,0x74,0x61,0x6e,0x74,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,
- 0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,
- 0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x53,0x1,0x19,0x0,0x64,
- 0x0,0x7a,0x0,0x69,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x6,0x4a,0x75,0x64,0x67,0x65,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,
- 0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,
- 0x0,0xe,0x1,0x41,0x0,0x61,0x0,0x77,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x3a,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4a,0x75,0x72,0x6f,0x72,0x3a,
- 0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,
- 0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x50,0x0,0x72,0x0,0x7a,
- 0x0,0x65,0x0,0x72,0x0,0x77,0x0,0x69,0x0,0x6a,0x0,0x20,0x0,0x6d,0x0,0x75,
- 0x0,0x7a,0x0,0x79,0x0,0x6b,0x1,0x19,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,
- 0x0,0x63,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x73,0x0,0x70,0x0,0x72,
- 0x0,0x7a,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x77,0x0,0x75,0x0,0x3a,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x4b,0x69,0x6c,0x6c,0x20,0x4d,0x75,0x73,
- 0x69,0x63,0x20,0x4f,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,
- 0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,
- 0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x4a,0x1,0x19,0x0,0x7a,
- 0x0,0x79,0x0,0x6b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,
- 0x4c,0x61,0x6e,0x67,0x75,0x61,0x67,0x65,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,
- 0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,
- 0x0,0x0,0x22,0x0,0x5a,0x0,0x61,0x0,0x70,0x0,0x69,0x0,0x73,0x0,0x75,0x0,
- 0x6a,0x0,0x20,0x0,0x61,0x0,0x6b,0x0,0x63,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,
- 0x49,0x0,0x43,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x4c,
- 0x6f,0x67,0x20,0x49,0x43,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x3a,0x7,0x0,
- 0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,
- 0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x44,0x0,0x7a,0x0,0x69,0x0,0x65,
- 0x0,0x6e,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x20,0x0,0x69,0x0,0x64,0x0,0x7a,
- 0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x77,0x0,0x20,0x0,0x64,0x0,0xf3,0x1,0x42,
- 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4c,0x6f,0x67,0x20,
- 0x67,0x6f,0x65,0x73,0x20,0x64,0x6f,0x77,0x6e,0x77,0x61,0x72,0x64,0x73,0x3a,0x7,
- 0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,
- 0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x44,0x1,0x42,0x0,0x75,0x0,
- 0x67,0x0,0x6f,0x1,0x5b,0x1,0x7,0x0,0x20,0x0,0x64,0x0,0x7a,0x0,0x69,0x0,
- 0x65,0x0,0x6e,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x4c,0x6f,0x67,0x20,0x6c,0x65,0x6e,0x67,0x74,
- 0x68,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,
- 0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4d,0x0,0x61,
- 0x0,0x72,0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,
- 0x0,0x7a,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x61,
- 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x4c,0x6f,0x67,0x20,
- 0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,
- 0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,
- 0x28,0x0,0x4f,0x0,0x64,0x0,0x73,0x0,0x74,0x1,0x19,0x0,0x70,0x0,0x79,0x0,
- 0x20,0x0,0x77,0x0,0x20,0x0,0x64,0x0,0x7a,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,
- 0x6e,0x0,0x69,0x0,0x6b,0x0,0x75,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0xc,0x4c,0x6f,0x67,0x20,0x6e,0x65,0x77,0x6c,0x69,0x6e,0x65,0x3a,0x7,
- 0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,
- 0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x46,0x0,0x6f,0x0,0x72,0x0,
- 0x6d,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x20,0x0,
- 0x77,0x0,0x20,0x0,0x64,0x0,0x7a,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,
- 0x69,0x0,0x6b,0x0,0x75,0x0,0x3a,0x0,0xa,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x16,0x4c,0x6f,0x67,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,
- 0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x3a,0xa,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,
- 0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,
- 0x0,0x0,0x22,0x0,0x44,0x0,0x61,0x0,0x74,0x0,0x79,0x0,0x20,0x0,0x77,0x0,
- 0x20,0x0,0x64,0x0,0x7a,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x69,0x0,
- 0x6b,0x0,0x75,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x4c,
- 0x6f,0x67,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x3a,0x7,0x0,0x0,
- 0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0x0,0x0,0x1,0x74,0x0,0x4d,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,
- 0x6d,0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6c,0x0,
- 0x6f,0x1,0x5b,0x1,0x7,0x0,0x20,0x0,0x63,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,
- 0x75,0x0,0x20,0x0,0x28,0x0,0x77,0x0,0x20,0x0,0x6d,0x0,0x69,0x0,0x6c,0x0,
- 0x69,0x0,0x73,0x0,0x65,0x0,0x6b,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,
- 0x63,0x0,0x68,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x77,0x0,0x20,0x0,0x6b,0x0,
- 0x74,0x0,0xf3,0x0,0x72,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x77,0x0,0x69,0x0,
- 0x61,0x0,0x64,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x1,0x5b,0x1,0x7,0x0,0x20,0x0,
- 0x49,0x0,0x43,0x0,0x20,0x0,0x6d,0x0,0x75,0x0,0x73,0x0,0x69,0x0,0x20,0x0,
- 0x70,0x0,0x6f,0x0,0x7a,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x1,0x7,0x0,
- 0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6b,0x0,0x72,0x0,0x61,0x0,
- 0x6e,0x0,0x69,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x6e,0x0,
- 0x69,0x0,0x6d,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x6a,0x0,
- 0x6e,0x0,0x61,0x0,0x20,0x0,0x7a,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x0,
- 0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x77,0x0,0x79,0x1,0x5b,0x0,0x77,0x0,
- 0x69,0x0,0x65,0x0,0x74,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x2c,0x0,
- 0x20,0x0,0x64,0x0,0x7a,0x0,0x69,0x0,0x61,0x1,0x42,0x0,0x61,0x0,0x20,0x0,
- 0x6e,0x0,0x69,0x0,0x63,0x0,0x7a,0x0,0x79,0x0,0x6d,0x0,0x20,0x0,0x27,0x0,
- 0x6b,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x6a,0x0,0x6b,0x0,0x61,0x0,0x27,0x0,
- 0x2e,0x0,0x20,0x0,0x55,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x77,0x0,0x20,0x0,
- 0x6e,0x0,0x61,0x0,0x20,0x0,0x30,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x62,0x0,
- 0x79,0x0,0x20,0x0,0x77,0x0,0x79,0x1,0x42,0x1,0x5,0x0,0x63,0x0,0x7a,0x0,
- 0x79,0x1,0x7,0x0,0x20,0x0,0x74,0x1,0x5,0x0,0x20,0x0,0x66,0x0,0x75,0x0,
- 0x6e,0x0,0x6b,0x0,0x63,0x0,0x6a,0x1,0x19,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0xa6,0x4d,0x69,0x6e,0x69,0x6d,0x75,0x6d,0x20,0x61,0x6d,0x6f,
- 0x75,0x6e,0x74,0x20,0x6f,0x66,0x20,0x74,0x69,0x6d,0x65,0x20,0x28,0x69,0x6e,0x20,
- 0x6d,0x69,0x6c,0x69,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x29,0x20,0x61,0x6e,0x20,
- 0x49,0x43,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x6d,0x75,0x73,0x74,0x20,
- 0x73,0x74,0x61,0x79,0x20,0x6f,0x6e,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x62,
- 0x65,0x66,0x6f,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x78,0x74,0x20,0x49,
- 0x43,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x69,0x73,0x20,0x73,0x68,0x6f,
- 0x77,0x6e,0x2c,0x20,0x61,0x63,0x74,0x69,0x6e,0x67,0x20,0x61,0x73,0x20,0x61,0x20,
- 0x27,0x71,0x75,0x65,0x75,0x65,0x27,0x2e,0x20,0x53,0x65,0x74,0x20,0x74,0x6f,0x20,
- 0x30,0x20,0x74,0x6f,0x20,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x20,0x74,0x68,0x69,
- 0x73,0x20,0x62,0x65,0x68,0x61,0x76,0x69,0x6f,0x72,0x2e,0x7,0x0,0x0,0x0,0xf,
- 0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,
- 0x3,0x0,0x0,0x0,0xfa,0x0,0x4d,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,
- 0x61,0x0,0x6c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6c,0x0,0x6f,0x1,
- 0x5b,0x1,0x7,0x0,0x20,0x0,0x63,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x75,0x0,
- 0x20,0x0,0x28,0x0,0x77,0x0,0x20,0x0,0x6d,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,
- 0x73,0x0,0x65,0x0,0x6b,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x63,0x0,
- 0x68,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x6b,0x0,0x74,0x0,0xf3,0x0,0x72,0x0,
- 0x61,0x0,0x20,0x0,0x6d,0x0,0x75,0x0,0x73,0x0,0x69,0x0,0x20,0x0,0x6d,0x0,
- 0x69,0x0,0x6e,0x1,0x5,0x1,0x7,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x6e,0x0,
- 0x69,0x0,0x6d,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x73,0x0,0x74,0x1,0x19,0x0,
- 0x70,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x63,0x0,0x69,0x1,
- 0x5b,0x0,0x6e,0x0,0x69,0x1,0x19,0x0,0x63,0x0,0x69,0x0,0x65,0x0,0x20,0x0,
- 0x6b,0x0,0x6c,0x0,0x61,0x0,0x77,0x0,0x69,0x0,0x73,0x0,0x7a,0x0,0x75,0x0,
- 0x20,0x0,0x45,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x77,0x0,
- 0x79,0x1,0x5b,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x77,0x0,0x6f,0x0,
- 0x6a,0x1,0x5,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,
- 0x6d,0x0,0x6f,0x1,0x5b,0x1,0x7,0x0,0x20,0x0,0x49,0x0,0x43,0x0,0x2e,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x71,0x4d,0x69,0x6e,0x69,0x6d,0x75,0x6d,
- 0x20,0x61,0x6d,0x6f,0x75,0x6e,0x74,0x20,0x6f,0x66,0x20,0x74,0x69,0x6d,0x65,0x20,
- 0x28,0x69,0x6e,0x20,0x6d,0x69,0x6c,0x69,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x29,
- 0x20,0x74,0x68,0x61,0x74,0x20,0x6d,0x75,0x73,0x74,0x20,0x70,0x61,0x73,0x73,0x20,
- 0x62,0x65,0x66,0x6f,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x78,0x74,0x20,
- 0x45,0x6e,0x74,0x65,0x72,0x20,0x6b,0x65,0x79,0x20,0x70,0x72,0x65,0x73,0x73,0x20,
- 0x77,0x69,0x6c,0x6c,0x20,0x73,0x65,0x6e,0x64,0x20,0x79,0x6f,0x75,0x72,0x20,0x49,
- 0x43,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,
- 0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,
- 0x0,0x0,0x0,0xe,0x0,0x4d,0x0,0x75,0x0,0x7a,0x0,0x79,0x0,0x6b,0x0,0x61,
- 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4d,0x75,0x73,0x69,
- 0x63,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,
- 0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x45,0x0,0x66,
- 0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x79,0x0,0x20,0x0,0x4e,0x0,0x65,0x0,0x74,
- 0x0,0x77,0x0,0x6f,0x0,0x72,0x0,0x6b,0x0,0x20,0x0,0x46,0x0,0x72,0x0,0x61,
- 0x0,0x6d,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,
- 0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x46,0x72,0x61,0x6d,0x65,0x20,0x45,0x66,
- 0x66,0x65,0x63,0x74,0x73,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,
- 0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x12,
- 0x0,0x50,0x0,0x69,0x0,0x6b,0x0,0x73,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x77,
- 0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x50,0x69,0x78,0x65,
- 0x6c,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,
- 0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x80,0x0,0x5a,0x0,0x61,0x0,
- 0x67,0x0,0x72,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x64,0x1,0x7a,0x0,0x77,0x0,
- 0x69,0x1,0x19,0x0,0x6b,0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x70,0x0,
- 0x61,0x0,0x20,0x0,0x22,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x6e,0x0,
- 0x61,0x0,0x20,0x0,0x58,0x0,0x20,0x0,0x73,0x0,0x79,0x0,0x6d,0x0,0x62,0x0,
- 0x6f,0x0,0x6c,0x0,0x69,0x0,0x22,0x0,0x2c,0x0,0x20,0x0,0x67,0x0,0x64,0x0,
- 0x7a,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x58,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,
- 0x20,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,0x62,0x0,
- 0x6c,0x0,0x69,0x0,0x70,0x0,0xf3,0x0,0x77,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x47,0x50,0x6c,0x61,0x79,0x20,0x61,0x20,0x62,0x6c,0x69,0x70,
- 0x20,0x73,0x6f,0x75,0x6e,0x64,0x20,0x22,0x6f,0x6e,0x63,0x65,0x20,0x70,0x65,0x72,
- 0x20,0x65,0x76,0x65,0x72,0x79,0x20,0x58,0x20,0x73,0x79,0x6d,0x62,0x6f,0x6c,0x73,
- 0x22,0x2c,0x20,0x77,0x68,0x65,0x72,0x65,0x20,0x58,0x20,0x69,0x73,0x20,0x74,0x68,
- 0x65,0x20,0x62,0x6c,0x69,0x70,0x20,0x72,0x61,0x74,0x65,0x2e,0x7,0x0,0x0,0x0,
- 0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,
- 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x44,0x0,0x6f,0x0,0x73,0x0,0x79,0x1,0x7,
- 0x0,0x20,0x0,0x6f,0x0,0x63,0x0,0x7a,0x0,0x79,0x0,0x77,0x0,0x69,0x0,0x73,
- 0x0,0x74,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,
- 0x50,0x72,0x65,0x74,0x74,0x79,0x20,0x73,0x65,0x6c,0x66,0x2d,0x65,0x78,0x70,0x6c,
- 0x61,0x6e,0x61,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,
- 0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,
- 0x0,0x18,0x0,0x50,0x0,0x72,0x0,0x6f,0x0,0x6b,0x0,0x75,0x0,0x72,0x0,0x61,
- 0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0xc,0x50,0x72,0x6f,0x73,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x3a,
- 0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,
- 0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x90,0x0,0x4f,0x0,0x64,0x1,0x5b,
- 0x0,0x77,0x0,0x69,0x0,0x65,0x1,0x7c,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x74,
- 0x0,0x79,0x0,0x77,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x75,0x0,0x61,0x0,0x6b,
- 0x0,0x74,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0,0x6a,0x0,0x20,
- 0x0,0x77,0x0,0x73,0x0,0x7a,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x6b,0x0,0x69,
- 0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x6e,
- 0x0,0x74,0x0,0x79,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,
- 0x0,0x66,0x0,0x65,0x0,0x6a,0x0,0x73,0x0,0x75,0x0,0x2c,0x0,0x20,0x0,0x61,
- 0x0,0x62,0x0,0x79,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x70,0x0,0x61,0x0,0x73,
- 0x0,0x6f,0x0,0x77,0x0,0x61,0x1,0x7,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x3d,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x74,0x68,0x65,0x20,
- 0x74,0x68,0x65,0x6d,0x65,0x20,0x61,0x6e,0x64,0x20,0x75,0x70,0x64,0x61,0x74,0x65,
- 0x20,0x61,0x6c,0x6c,0x20,0x6f,0x66,0x20,0x74,0x68,0x65,0x20,0x75,0x69,0x20,0x65,
- 0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x20,0x74,0x6f,0x20,0x6d,0x61,0x74,0x63,0x68,
- 0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,
- 0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4f,0x0,0x64,0x1,
- 0x5b,0x0,0x77,0x0,0x69,0x0,0x65,0x1,0x7c,0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,
- 0x74,0x0,0x79,0x0,0x77,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x52,
- 0x65,0x6c,0x6f,0x61,0x64,0x20,0x54,0x68,0x65,0x6d,0x65,0x7,0x0,0x0,0x0,0xf,
- 0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,
- 0x3,0x0,0x0,0x0,0x8,0x0,0x55,0x0,0x73,0x0,0x75,0x1,0x44,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x52,0x65,0x6d,0x6f,0x76,0x65,0x7,0x0,0x0,
- 0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x45,0x0,0x66,0x0,0x65,0x0,0x6b,0x0,
- 0x74,0x0,0x79,0x0,0x20,0x0,0x64,0x1,0x7a,0x0,0x77,0x0,0x69,0x1,0x19,0x0,
- 0x6b,0x0,0x6f,0x0,0x77,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x53,0x0,0x46,0x0,
- 0x58,0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,
- 0x46,0x58,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,
- 0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x53,0x0,
- 0x6b,0x0,0x61,0x0,0x6c,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,
- 0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x63,0x61,
- 0x6c,0x69,0x6e,0x67,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,
- 0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x26,0x0,
- 0x57,0x0,0x79,0x0,0x62,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x7a,0x0,0x20,0x0,
- 0x66,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x62,0x0,
- 0x61,0x0,0x73,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x53,
- 0x65,0x6c,0x65,0x63,0x74,0x20,0x61,0x20,0x62,0x61,0x73,0x65,0x20,0x66,0x6f,0x6c,
- 0x64,0x65,0x72,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,
- 0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x1,0x40,0x0,0x57,0x0,
- 0x79,0x0,0x73,0x0,0x79,0x1,0x42,0x0,0x61,0x0,0x20,0x0,0x77,0x0,0x73,0x0,
- 0x74,0x0,0x72,0x0,0x7a,0x1,0x5,0x1,0x5b,0x0,0x6e,0x0,0x69,0x1,0x19,0x0,
- 0x63,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6b,0x0,0x72,0x0,0x61,0x0,
- 0x6e,0x0,0x75,0x0,0x2c,0x0,0x20,0x0,0x62,0x1,0x42,0x0,0x79,0x1,0x5b,0x0,
- 0x6e,0x0,0x69,0x1,0x19,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x69,0x0,
- 0x20,0x0,0x64,0x1,0x7a,0x0,0x77,0x0,0x69,0x1,0x19,0x0,0x6b,0x0,0x69,0x0,
- 0x2c,0x0,0x20,0x0,0x6a,0x0,0x61,0x0,0x6b,0x0,0x20,0x0,0x7a,0x0,0x64,0x0,
- 0x65,0x0,0x66,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,
- 0x6e,0x0,0x6f,0x0,0x20,0x0,0x77,0x0,0x20,0x0,0x70,0x0,0x6c,0x0,0x69,0x0,
- 0x6b,0x0,0x75,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x2e,0x0,
- 0x69,0x0,0x6e,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x7a,0x0,
- 0x65,0x0,0x7a,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x65,0x1,0x7,0x0,0x2e,0x0,
- 0x20,0x0,0x44,0x0,0x7a,0x0,0x69,0x0,0x61,0x1,0x42,0x0,0x61,0x0,0x20,0x0,
- 0x74,0x0,0x79,0x0,0x6c,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x77,0x0,0x20,0x0,
- 0x70,0x0,0x72,0x0,0x7a,0x0,0x79,0x0,0x70,0x0,0x61,0x0,0x64,0x0,0x6b,0x0,
- 0x75,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x77,0x0,0x65,0x0,0x72,0x0,
- 0xf3,0x0,0x77,0x0,0x2c,0x0,0x20,0x0,0x6b,0x0,0x74,0x0,0xf3,0x0,0x72,0x0,
- 0x65,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x73,0x1,0x42,0x0,0x75,0x0,0x67,0x0,
- 0x75,0x0,0x6a,0x1,0x5,0x0,0x20,0x0,0x74,0x1,0x19,0x0,0x20,0x0,0x66,0x0,
- 0x75,0x0,0x6e,0x0,0x6b,0x0,0x63,0x0,0x6a,0x1,0x19,0x0,0x2e,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x8c,0x53,0x65,0x6e,0x64,0x20,0x73,0x63,0x72,0x65,
- 0x65,0x6e,0x2d,0x73,0x68,0x61,0x6b,0x69,0x6e,0x67,0x2c,0x20,0x66,0x6c,0x61,0x73,
- 0x68,0x65,0x73,0x20,0x61,0x6e,0x64,0x20,0x73,0x6f,0x75,0x6e,0x64,0x73,0x20,0x61,
- 0x73,0x20,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,
- 0x20,0x63,0x68,0x61,0x72,0x2e,0x69,0x6e,0x69,0x20,0x6f,0x76,0x65,0x72,0x20,0x74,
- 0x68,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x2e,0x20,0x4f,0x6e,0x6c,0x79,
- 0x20,0x77,0x6f,0x72,0x6b,0x73,0x20,0x66,0x6f,0x72,0x20,0x73,0x65,0x72,0x76,0x65,
- 0x72,0x73,0x20,0x74,0x68,0x61,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x20,
- 0x74,0x68,0x69,0x73,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x69,
- 0x74,0x79,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,
- 0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x1,0x88,0x0,0x55,0x0,
- 0x73,0x0,0x74,0x0,0x61,0x0,0x77,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x27,0x0,
- 0x70,0x0,0x6f,0x0,0x64,0x0,0x6d,0x0,0x6f,0x0,0x74,0x0,0x79,0x0,0x77,0x0,
- 0x27,0x0,0x2c,0x0,0x20,0x0,0x6b,0x0,0x74,0x0,0xf3,0x0,0x72,0x0,0x79,0x0,
- 0x20,0x0,0x62,0x1,0x19,0x0,0x64,0x0,0x7a,0x0,0x69,0x0,0x65,0x0,0x20,0x0,
- 0x64,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x6b,0x0,0x69,0x0,0x65,0x0,
- 0x6d,0x0,0x20,0x0,0x64,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,
- 0x65,0x0,0x63,0x0,0x6e,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,
- 0x6f,0x0,0x74,0x0,0x79,0x0,0x77,0x0,0x75,0x0,0x20,0x0,0x69,0x0,0x20,0x0,
- 0x62,0x1,0x19,0x0,0x64,0x0,0x7a,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,
- 0x61,0x0,0x73,0x0,0x74,0x1,0x19,0x0,0x70,0x0,0x79,0x0,0x77,0x0,0x61,0x1,
- 0x7,0x0,0x20,0x0,0x77,0x0,0x73,0x0,0x7a,0x0,0x79,0x0,0x73,0x0,0x74,0x0,
- 0x6b,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,
- 0x20,0x0,0x6d,0x0,0x6f,0x1,0x7c,0x0,0x65,0x0,0x2e,0x0,0x20,0x0,0x55,0x0,
- 0x73,0x0,0x74,0x0,0x61,0x0,0x77,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,
- 0x27,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x27,0x0,
- 0x2c,0x0,0x20,0x0,0x61,0x0,0x62,0x0,0x79,0x0,0x20,0x0,0x73,0x0,0x65,0x0,
- 0x72,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x63,0x0,
- 0x79,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x61,0x1,0x42,0x0,0x20,0x0,0x7a,0x0,
- 0x61,0x0,0x20,0x0,0x63,0x0,0x69,0x0,0x65,0x0,0x62,0x0,0x69,0x0,0x65,0x0,
- 0x2e,0x0,0x20,0x0,0x55,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x77,0x0,0x20,0x0,
- 0x6e,0x0,0x61,0x0,0x20,0x0,0x27,0x0,0x64,0x0,0x65,0x0,0x66,0x0,0x61,0x0,
- 0x75,0x0,0x6c,0x0,0x74,0x0,0x27,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x62,0x0,
- 0x79,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x6d,0x0,
- 0x69,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x61,0x1,0x42,0x0,0x20,0x0,0x73,0x0,
- 0x69,0x1,0x19,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb5,0x53,
- 0x65,0x74,0x73,0x20,0x61,0x20,0x27,0x73,0x75,0x62,0x74,0x68,0x65,0x6d,0x65,0x27,
- 0x2c,0x20,0x77,0x68,0x69,0x63,0x68,0x20,0x77,0x69,0x6c,0x6c,0x20,0x73,0x74,0x61,
- 0x63,0x6b,0x20,0x6f,0x6e,0x20,0x74,0x6f,0x70,0x20,0x6f,0x66,0x20,0x74,0x68,0x65,
- 0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x74,0x68,0x65,0x6d,0x65,0x20,0x61,
- 0x6e,0x64,0x20,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x20,0x61,0x6e,0x79,0x74,0x68,
- 0x69,0x6e,0x67,0x20,0x69,0x74,0x20,0x63,0x61,0x6e,0x2e,0x4b,0x65,0x65,0x70,0x20,
- 0x69,0x74,0x20,0x61,0x74,0x20,0x27,0x73,0x65,0x72,0x76,0x65,0x72,0x27,0x20,0x74,
- 0x6f,0x20,0x6c,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x72,0x76,0x65,0x72,
- 0x20,0x64,0x65,0x63,0x69,0x64,0x65,0x2e,0x20,0x4b,0x65,0x65,0x70,0x20,0x69,0x74,
- 0x20,0x61,0x74,0x20,0x27,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x27,0x20,0x74,0x6f,
- 0x20,0x6b,0x65,0x65,0x70,0x20,0x69,0x74,0x20,0x75,0x6e,0x63,0x68,0x61,0x6e,0x67,
- 0x69,0x6e,0x67,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,
- 0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xe8,0x0,0x55,
- 0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x77,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x64,
- 0x0,0x6f,0x0,0x6d,0x0,0x79,0x1,0x5b,0x0,0x6c,0x0,0x6e,0x1,0x5,0x0,0x20,
- 0x0,0x67,0x1,0x42,0x0,0x6f,0x1,0x5b,0x0,0x6e,0x0,0x6f,0x1,0x5b,0x1,0x7,
- 0x0,0x20,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0xf3,0x0,0x77,
- 0x0,0x20,0x0,0x64,0x1,0x7a,0x0,0x77,0x0,0x69,0x1,0x19,0x0,0x6b,0x0,0x6f,
- 0x0,0x77,0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x28,0x0,0x53,0x0,0x46,
- 0x0,0x58,0x0,0x29,0x0,0x2e,0x0,0x20,0x0,0x53,0x0,0x70,0x0,0x72,0x0,0x7a,
- 0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x77,0x0,0x79,0x0,0x2c,0x0,0x20,0x0,0x6a,
- 0x0,0x61,0x0,0x6b,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x6d,
- 0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x79,
- 0x0,0x20,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x6a,0x0,0x61,0x0,0x6c,
- 0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x73,0x1,0x5,0x0,0x20,0x0,0x7a,0x0,0x61,
- 0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x7a,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x20,
- 0x0,0x6a,0x0,0x61,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x27,0x0,0x53,0x0,0x46,
- 0x0,0x58,0x0,0x27,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x55,
- 0x53,0x65,0x74,0x73,0x20,0x74,0x68,0x65,0x20,0x53,0x46,0x58,0x27,0x73,0x20,0x64,
- 0x65,0x66,0x61,0x75,0x6c,0x74,0x20,0x76,0x6f,0x6c,0x75,0x6d,0x65,0x2e,0x20,0x49,
- 0x6e,0x74,0x65,0x72,0x6a,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x61,0x6e,0x64,
- 0x20,0x61,0x63,0x74,0x75,0x61,0x6c,0x20,0x73,0x6f,0x75,0x6e,0x64,0x20,0x65,0x66,
- 0x66,0x65,0x63,0x74,0x73,0x20,0x63,0x6f,0x75,0x6e,0x74,0x20,0x61,0x73,0x20,0x27,
- 0x53,0x46,0x58,0x27,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,
- 0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x6a,0x0,
- 0x55,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x77,0x0,0x69,0x0,0x61,0x0,0x20,0x0,
- 0x75,0x0,0x72,0x0,0x7a,0x1,0x5,0x0,0x64,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,
- 0x69,0x0,0x65,0x0,0x20,0x0,0x64,0x1,0x7a,0x0,0x77,0x0,0x69,0x1,0x19,0x0,
- 0x6b,0x0,0x6f,0x0,0x77,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x6c,0x0,0x61,0x0,
- 0x20,0x0,0x77,0x0,0x73,0x0,0x7a,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x6b,0x0,
- 0x69,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x64,0x1,0x7a,0x0,0x77,0x0,0x69,0x1,
- 0x19,0x0,0x6b,0x0,0xf3,0x0,0x77,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x25,0x53,0x65,0x74,0x73,0x20,0x74,0x68,0x65,0x20,0x61,0x75,0x64,0x69,
- 0x6f,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x20,0x66,0x6f,0x72,0x20,0x61,0x6c,0x6c,
- 0x20,0x73,0x6f,0x75,0x6e,0x64,0x73,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,
- 0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,
- 0x0,0xa4,0x0,0x55,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x77,0x0,0x69,0x0,0x61,
- 0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x6d,0x0,0x79,0x1,0x5b,0x0,0x6c,0x0,0x6e,
- 0x0,0x79,0x0,0x20,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0xf3,0x0,0x62,
- 0x0,0x20,0x0,0x73,0x0,0x6b,0x0,0x61,0x0,0x6c,0x0,0x6f,0x0,0x77,0x0,0x61,
- 0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x2c,0x0,0x20,0x0,0x6a,0x0,0x65,0x1,0x7c,
- 0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,
- 0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x6a,0x0,0x75,0x1,0x7c,
- 0x0,0x20,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x61,
- 0x0,0x77,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x70,0x0,0x72,
- 0x0,0x7a,0x0,0x65,0x0,0x7a,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x74,
- 0x0,0x61,0x1,0x7,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x64,
- 0x53,0x65,0x74,0x73,0x20,0x74,0x68,0x65,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,
- 0x20,0x73,0x63,0x61,0x6c,0x69,0x6e,0x67,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x2c,
- 0x20,0x69,0x66,0x20,0x74,0x68,0x65,0x72,0x65,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,
- 0x20,0x6f,0x6e,0x65,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x64,0x65,0x66,
- 0x69,0x6e,0x65,0x64,0x20,0x73,0x70,0x65,0x63,0x69,0x66,0x69,0x63,0x61,0x6c,0x6c,
- 0x79,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x65,0x20,0x63,0x68,0x61,0x72,0x61,0x63,
- 0x74,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,
- 0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x55,
- 0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x77,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x6f,
- 0x0,0x70,0x0,0xf3,0x1,0x7a,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x69,
- 0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x6d,0x0,0x69,0x1,0x19,0x0,0x64,
- 0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x69,
- 0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x70,0x0,0xf3,
- 0x0,0x77,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x53,0x65,
- 0x74,0x73,0x20,0x74,0x68,0x65,0x20,0x64,0x65,0x6c,0x61,0x79,0x20,0x62,0x65,0x74,
- 0x77,0x65,0x65,0x6e,0x20,0x70,0x6c,0x61,0x79,0x69,0x6e,0x67,0x20,0x74,0x68,0x65,
- 0x20,0x62,0x6c,0x69,0x70,0x20,0x73,0x6f,0x75,0x6e,0x64,0x73,0x2e,0x7,0x0,0x0,
- 0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0x0,0x0,0x0,0x74,0x0,0x55,0x0,0x73,0x0,0x74,0x0,0x61,0x0,
- 0x77,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x6a,0x1,0x19,0x0,0x7a,0x0,0x79,0x0,
- 0x6b,0x0,0x2c,0x0,0x20,0x0,0x6a,0x0,0x65,0x1,0x5b,0x0,0x6c,0x0,0x69,0x0,
- 0x20,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x63,0x0,
- 0x65,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x75,0x1,0x7c,0x0,0x79,0x0,0x77,0x0,
- 0x61,0x1,0x7,0x0,0x20,0x0,0x6a,0x1,0x19,0x0,0x7a,0x0,0x79,0x0,0x6b,0x0,
- 0x61,0x0,0x20,0x0,0x73,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,
- 0x6f,0x0,0x77,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x40,0x53,0x65,0x74,0x73,0x20,0x74,0x68,0x65,0x20,0x6c,0x61,
- 0x6e,0x67,0x75,0x61,0x67,0x65,0x20,0x69,0x66,0x20,0x79,0x6f,0x75,0x20,0x64,0x6f,
- 0x6e,0x27,0x74,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x75,0x73,0x65,0x20,
- 0x79,0x6f,0x75,0x72,0x20,0x73,0x79,0x73,0x74,0x65,0x6d,0x20,0x6c,0x61,0x6e,0x67,
- 0x75,0x61,0x67,0x65,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,
- 0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x42,0x0,
- 0x55,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x77,0x0,0x69,0x0,0x61,0x0,0x20,0x0,
- 0x64,0x0,0x6f,0x0,0x6d,0x0,0x79,0x1,0x5b,0x0,0x6c,0x0,0x6e,0x1,0x5,0x0,
- 0x20,0x0,0x67,0x1,0x42,0x0,0x6f,0x1,0x5b,0x0,0x6e,0x0,0x6f,0x1,0x5b,0x1,
- 0x7,0x0,0x20,0x0,0x6d,0x0,0x75,0x0,0x7a,0x0,0x79,0x0,0x6b,0x0,0x69,0x0,
- 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x20,0x53,0x65,0x74,0x73,0x20,
- 0x74,0x68,0x65,0x20,0x6d,0x75,0x73,0x69,0x63,0x27,0x73,0x20,0x64,0x65,0x66,0x61,
- 0x75,0x6c,0x74,0x20,0x76,0x6f,0x6c,0x75,0x6d,0x65,0x2e,0x7,0x0,0x0,0x0,0xf,
- 0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,
- 0x3,0x0,0x0,0x1,0x88,0x0,0x55,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x77,0x0,
- 0x69,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x74,0x0,0x79,0x0,0x77,0x0,
- 0x20,0x0,0x75,0x1,0x7c,0x0,0x79,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x79,0x0,
- 0x20,0x0,0x77,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x2e,0x0,
- 0x20,0x0,0x4a,0x0,0x65,0x1,0x7c,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,
- 0x6e,0x0,0x6f,0x0,0x77,0x0,0x79,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x74,0x0,
- 0x79,0x0,0x77,0x0,0x20,0x0,0x7a,0x0,0x6d,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,
- 0x69,0x0,0x61,0x0,0x20,0x0,0x77,0x0,0x79,0x0,0x67,0x0,0x6c,0x1,0x5,0x0,
- 0x64,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x63,0x0,0x7a,0x0,0x65,0x0,0x6b,0x0,
- 0x61,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x62,0x1,0x19,0x0,
- 0x64,0x0,0x7a,0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x6d,0x0,
- 0x75,0x0,0x73,0x0,0x69,0x0,0x61,0x1,0x42,0x0,0x28,0x0,0x61,0x0,0x29,0x0,
- 0x20,0x0,0x6a,0x1,0x5,0x0,0x20,0x0,0x72,0x0,0xf3,0x0,0x77,0x0,0x6e,0x0,
- 0x69,0x0,0x65,0x1,0x7c,0x0,0x20,0x0,0x6f,0x0,0x64,0x1,0x5b,0x0,0x77,0x0,
- 0x69,0x0,0x65,0x1,0x7c,0x0,0x79,0x1,0x7,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,
- 0x62,0x0,0x79,0x0,0x20,0x0,0x7a,0x0,0x6d,0x0,0x69,0x0,0x61,0x0,0x6e,0x0,
- 0x79,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x63,0x0,0x7a,0x1,0x19,0x1,0x42,0x0,
- 0x79,0x0,0x20,0x0,0x64,0x0,0x7a,0x0,0x69,0x0,0x61,0x1,0x42,0x0,0x61,0x1,
- 0x7,0x0,0x2c,0x0,0x20,0x0,0x6e,0x0,0x70,0x0,0x2e,0x0,0x20,0x0,0x70,0x0,
- 0x6f,0x0,0x70,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x7a,0x0,0x20,0x0,0x64,0x0,
- 0x6f,0x1,0x42,0x1,0x5,0x0,0x63,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,
- 0x65,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,
- 0x77,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x77,0x0,
- 0x79,0x0,0x6a,0x1,0x5b,0x0,0x63,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,
- 0x20,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0xbb,0x53,0x65,0x74,0x73,0x20,0x74,0x68,0x65,0x20,
- 0x74,0x68,0x65,0x6d,0x65,0x20,0x75,0x73,0x65,0x64,0x20,0x69,0x6e,0x2d,0x67,0x61,
- 0x6d,0x65,0x2e,0x20,0x49,0x66,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x20,0x74,
- 0x68,0x65,0x6d,0x65,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x73,0x20,0x74,0x68,0x65,
- 0x20,0x6c,0x6f,0x62,0x62,0x79,0x27,0x73,0x20,0x6c,0x6f,0x6f,0x6b,0x20,0x61,0x73,
- 0x20,0x77,0x65,0x6c,0x6c,0x2c,0x20,0x79,0x6f,0x75,0x27,0x6c,0x6c,0x20,0x6e,0x65,
- 0x65,0x64,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x6f,0x61,0x64,0x20,0x74,0x68,0x65,
- 0x20,0x6c,0x6f,0x62,0x62,0x79,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x65,0x20,0x63,
- 0x68,0x61,0x6e,0x67,0x65,0x73,0x20,0x74,0x6f,0x20,0x74,0x61,0x6b,0x65,0x20,0x65,
- 0x66,0x66,0x65,0x63,0x74,0x2c,0x20,0x73,0x75,0x63,0x68,0x20,0x61,0x73,0x20,0x62,
- 0x79,0x20,0x6a,0x6f,0x69,0x6e,0x69,0x6e,0x67,0x20,0x61,0x20,0x73,0x65,0x72,0x76,
- 0x65,0x72,0x20,0x61,0x6e,0x64,0x20,0x6c,0x65,0x61,0x76,0x69,0x6e,0x67,0x20,0x69,
- 0x74,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,
- 0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x6c,0x0,0x55,0x0,0x73,
- 0x0,0x74,0x0,0x61,0x0,0x77,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x67,0x1,0x42,
- 0x0,0x6f,0x1,0x5b,0x0,0x6e,0x0,0x6f,0x1,0x5b,0x1,0x7,0x0,0x20,0x0,0x62,
- 0x0,0x6c,0x0,0x69,0x0,0x70,0x0,0xf3,0x0,0x77,0x0,0x2c,0x0,0x20,0x0,0x65,
- 0x0,0x66,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0xf3,0x0,0x77,0x0,0x20,0x0,0x64,
- 0x1,0x7a,0x0,0x77,0x0,0x69,0x1,0x19,0x0,0x6b,0x0,0x6f,0x0,0x77,0x0,0x79,
- 0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x6d,0x0,0xf3,0x0,0x77,0x0,0x69,0x0,0x65,
- 0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x38,0x53,0x65,0x74,0x73,0x20,0x74,0x68,0x65,0x20,0x76,0x6f,0x6c,0x75,0x6d,
- 0x65,0x20,0x6f,0x66,0x20,0x74,0x68,0x65,0x20,0x62,0x6c,0x69,0x70,0x73,0x2c,0x20,
- 0x74,0x68,0x65,0x20,0x74,0x61,0x6c,0x6b,0x69,0x6e,0x67,0x20,0x73,0x6f,0x75,0x6e,
- 0x64,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x73,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,
- 0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,
- 0x0,0x0,0x0,0x14,0x0,0x55,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x77,0x0,0x69,
- 0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x8,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0xf,0x41,
- 0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,
- 0x0,0x0,0x0,0xe,0x0,0x47,0x1,0x42,0x0,0x61,0x0,0x64,0x0,0x6b,0x0,0x69,
- 0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53,0x6d,0x6f,0x6f,
- 0x74,0x68,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,
- 0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x53,0x0,0x74,
- 0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x3a,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x74,0x65,0x6e,0x6f,0x67,
- 0x72,0x61,0x70,0x68,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,
- 0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,
- 0x12,0x0,0x4e,0x0,0x61,0x0,0x6b,0x0,0x6c,0x0,0x65,0x0,0x6a,0x0,0x6b,0x0,
- 0x69,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x53,0x74,0x69,
- 0x63,0x6b,0x65,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,
- 0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x1c,
- 0x0,0x4c,0x0,0x65,0x0,0x70,0x0,0x6b,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x45,
- 0x0,0x66,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x79,0x0,0x3a,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0xf,0x53,0x74,0x69,0x63,0x6b,0x79,0x20,0x45,0x66,0x66,
- 0x65,0x63,0x74,0x73,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,
- 0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,
- 0x4c,0x0,0x65,0x0,0x70,0x0,0x6b,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x50,0x0,
- 0x72,0x0,0x7a,0x0,0x65,0x0,0x64,0x0,0x2d,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,
- 0x6d,0x0,0x61,0x0,0x63,0x0,0x6a,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x10,0x53,0x74,0x69,0x63,0x6b,0x79,0x20,0x50,0x72,0x65,0x61,
- 0x6e,0x69,0x6d,0x73,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,
- 0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,
- 0x4c,0x0,0x65,0x0,0x70,0x0,0x6b,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x44,0x1,
- 0x7a,0x0,0x77,0x0,0x69,0x1,0x19,0x0,0x6b,0x0,0x69,0x0,0x3a,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x74,0x69,0x63,0x6b,0x79,0x20,0x53,0x6f,
- 0x75,0x6e,0x64,0x73,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,
- 0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x36,0x0,
- 0x5a,0x0,0x61,0x0,0x74,0x0,0x72,0x0,0x7a,0x0,0x79,0x0,0x6d,0x0,0x61,0x0,
- 0x6a,0x0,0x20,0x0,0x4d,0x0,0x75,0x0,0x7a,0x0,0x79,0x0,0x6b,0x1,0x19,0x0,
- 0x20,0x0,0x4b,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x72,0x0,
- 0x69,0x1,0x5,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x53,
- 0x74,0x6f,0x70,0x20,0x4d,0x75,0x73,0x69,0x63,0x20,0x77,0x2f,0x20,0x43,0x61,0x74,
- 0x65,0x67,0x6f,0x72,0x79,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,
- 0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x1,0x1a,
- 0x0,0x5a,0x0,0x61,0x0,0x74,0x0,0x72,0x0,0x7a,0x0,0x79,0x0,0x6d,0x0,0x61,
- 0x0,0x6a,0x0,0x20,0x0,0x6d,0x0,0x75,0x0,0x7a,0x0,0x79,0x0,0x6b,0x1,0x19,
- 0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x63,0x0,0x7a,0x0,0x61,0x0,0x73,
- 0x0,0x20,0x0,0x64,0x0,0x77,0x0,0x75,0x0,0x6b,0x0,0x72,0x0,0x6f,0x0,0x74,
- 0x0,0x6e,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x20,0x0,0x6b,0x0,0x6c,0x0,0x69,
- 0x0,0x6b,0x0,0x6e,0x0,0x69,0x1,0x19,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x20,
- 0x0,0x77,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x6f,
- 0x0,0x72,0x0,0x69,0x1,0x19,0x0,0x2e,0x0,0x20,0x0,0x4a,0x0,0x65,0x1,0x5b,
- 0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20,
- 0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x77,0x0,0x79,0x1,0x42,0x1,0x5,0x0,0x63,
- 0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x75,0x1,0x7c,
- 0x0,0x79,0x0,0x6a,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x75,0x0,0x20,
- 0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x77,
- 0x0,0x79,0x0,0x6d,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x7a,0x0,0x79,0x0,0x63,
- 0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x69,0x0,0x65,0x0,0x6d,0x0,0x2c,0x0,0x20,
- 0x0,0x61,0x0,0x62,0x0,0x79,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x74,0x0,0x72,
- 0x0,0x7a,0x0,0x79,0x0,0x6d,0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x6d,0x0,0x75,
- 0x0,0x7a,0x0,0x79,0x0,0x6b,0x1,0x19,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x70,0x53,0x74,0x6f,0x70,0x20,0x6d,0x75,0x73,0x69,0x63,0x20,0x77,
- 0x68,0x65,0x6e,0x20,0x64,0x6f,0x75,0x62,0x6c,0x65,0x2d,0x63,0x6c,0x69,0x63,0x6b,
- 0x69,0x6e,0x67,0x20,0x61,0x20,0x63,0x61,0x74,0x65,0x67,0x6f,0x72,0x79,0x2e,0x20,
- 0x49,0x66,0x20,0x74,0x68,0x69,0x73,0x20,0x69,0x73,0x20,0x64,0x69,0x73,0x61,0x62,
- 0x6c,0x65,0x64,0x2c,0x20,0x75,0x73,0x65,0x20,0x74,0x68,0x65,0x20,0x72,0x69,0x67,
- 0x68,0x74,0x2d,0x63,0x6c,0x69,0x63,0x6b,0x20,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,
- 0x20,0x6d,0x65,0x6e,0x75,0x20,0x74,0x6f,0x20,0x73,0x74,0x6f,0x70,0x20,0x6d,0x75,
- 0x73,0x69,0x63,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,
- 0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x50,
- 0x0,0x6f,0x0,0x64,0x0,0x6d,0x0,0x6f,0x0,0x74,0x0,0x79,0x0,0x77,0x0,0x3a,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x53,0x75,0x62,0x74,0x68,0x65,
- 0x6d,0x65,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,
- 0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x43,0x0,
- 0x7a,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x7a,0x0,0x6f,0x0,
- 0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x54,0x0,
- 0x65,0x0,0x6b,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0xf,0x54,0x65,0x78,0x74,0x20,0x53,0x74,0x61,0x79,0x20,0x54,
- 0x69,0x6d,0x65,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,
- 0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x43,
- 0x0,0x7a,0x0,0x6f,0x1,0x42,0x0,0x67,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,
- 0x0,0x20,0x0,0x73,0x0,0x69,0x1,0x19,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6b,
- 0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0xb,0x54,0x65,0x78,0x74,0x20,0x63,0x72,0x61,0x77,0x6c,0x3a,0x7,0x0,0x0,
- 0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0x0,0x0,0x1,0x12,0x0,0x49,0x0,0x6c,0x0,0x6f,0x1,0x5b,0x1,
- 0x7,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x6d,0x0,
- 0x6f,0x1,0x5b,0x0,0x63,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x6a,0x0,0x61,0x0,
- 0x6b,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x7a,0x0,0x69,0x0,0x65,0x0,
- 0x6e,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x20,0x0,0x49,0x0,0x43,0x0,0x20,0x0,
- 0x62,0x1,0x19,0x0,0x64,0x0,0x7a,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x70,0x0,
- 0x6f,0x0,0x6b,0x0,0x61,0x0,0x7a,0x0,0x79,0x0,0x77,0x0,0x61,0x1,0x42,0x0,
- 0x20,0x0,0x7a,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x75,0x0,
- 0x73,0x0,0x75,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x74,0x0,
- 0x61,0x0,0x72,0x0,0x73,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x77,0x0,0x69,0x0,
- 0x61,0x0,0x64,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x1,0x5b,0x0,0x63,0x0,0x69,0x0,
- 0x2e,0x0,0x20,0x0,0x57,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x6f,0x1,0x5b,0x1,
- 0x7,0x0,0x20,0x0,0x30,0x0,0x20,0x0,0x6c,0x0,0x75,0x0,0x62,0x0,0x20,0x0,
- 0x6e,0x0,0x69,0x1,0x7c,0x0,0x65,0x0,0x6a,0x0,0x2c,0x0,0x20,0x0,0x6c,0x0,
- 0x69,0x0,0x63,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x73,0x0,0x69,0x1,0x19,0x0,
- 0x20,0x0,0x6a,0x0,0x61,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x27,0x0,0x6e,0x0,
- 0x69,0x0,0x65,0x0,0x73,0x0,0x6b,0x0,0x6f,0x1,0x44,0x0,0x63,0x0,0x7a,0x0,
- 0x6f,0x0,0x6e,0x0,0x65,0x0,0x27,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x85,0x54,0x68,0x65,0x20,0x61,0x6d,0x6f,0x75,0x6e,0x74,0x20,0x6f,0x66,
- 0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x6c,0x69,0x6e,0x65,0x73,0x20,0x74,
- 0x68,0x65,0x20,0x49,0x43,0x20,0x63,0x68,0x61,0x74,0x6c,0x6f,0x67,0x20,0x77,0x69,
- 0x6c,0x6c,0x20,0x6b,0x65,0x65,0x70,0x20,0x62,0x65,0x66,0x6f,0x72,0x65,0x20,0x64,
- 0x65,0x6c,0x65,0x74,0x69,0x6e,0x67,0x20,0x6f,0x6c,0x64,0x65,0x72,0x20,0x6d,0x65,
- 0x73,0x73,0x61,0x67,0x65,0x20,0x6c,0x69,0x6e,0x65,0x73,0x2e,0x20,0x41,0x20,0x76,
- 0x61,0x6c,0x75,0x65,0x20,0x6f,0x66,0x20,0x30,0x20,0x6f,0x72,0x20,0x62,0x65,0x6c,
- 0x6f,0x77,0x20,0x63,0x6f,0x75,0x6e,0x74,0x73,0x20,0x61,0x73,0x20,0x27,0x69,0x6e,
- 0x66,0x69,0x6e,0x69,0x74,0x65,0x27,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,
- 0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,
- 0x0,0x90,0x0,0x44,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x73,
- 0x0,0x20,0x0,0x77,0x0,0x20,0x0,0x70,0x0,0x69,0x0,0x6b,0x0,0x73,0x0,0x65,
- 0x0,0x6c,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x6d,
- 0x0,0x69,0x1,0x19,0x0,0x64,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x6b,0x0,0x61,
- 0x1,0x7c,0x0,0x64,0x0,0x79,0x0,0x6d,0x0,0x20,0x0,0x77,0x0,0x70,0x0,0x69,
- 0x0,0x73,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x77,0x0,0x20,0x0,0x64,0x0,0x7a,
- 0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x75,0x0,0x20,
- 0x0,0x49,0x0,0x43,0x0,0x2e,0x0,0x20,0x0,0x44,0x0,0x6f,0x0,0x6d,0x0,0x79,
- 0x1,0x5b,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x3a,0x0,0x20,0x0,0x30,
- 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x44,0x54,0x68,0x65,0x20,
- 0x64,0x69,0x73,0x74,0x61,0x6e,0x63,0x65,0x20,0x69,0x6e,0x20,0x70,0x69,0x78,0x65,
- 0x6c,0x73,0x20,0x62,0x65,0x74,0x77,0x65,0x65,0x6e,0x20,0x65,0x61,0x63,0x68,0x20,
- 0x65,0x6e,0x74,0x72,0x79,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x49,0x43,0x20,
- 0x6c,0x6f,0x67,0x2e,0x20,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x3a,0x20,0x30,0x2e,
- 0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,
- 0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x4d,0x0,0x6f,0x0,0x74,
- 0x0,0x79,0x0,0x77,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,
- 0x54,0x68,0x65,0x6d,0x65,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,
- 0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x56,
- 0x0,0x54,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x77,
- 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x77,
- 0x0,0x73,0x0,0x70,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x6b,
- 0x0,0x6f,0x0,0x6d,0x0,0x75,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x74,
- 0x0,0xf3,0x0,0x77,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x70,0x0,0x72,
- 0x0,0x61,0x0,0x77,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x29,
- 0x54,0x68,0x69,0x73,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x20,0x64,0x6f,0x65,0x73,
- 0x20,0x6e,0x6f,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x20,0x63,0x61,0x73,
- 0x65,0x20,0x61,0x6c,0x65,0x72,0x74,0x73,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,
- 0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,
- 0x0,0x0,0x4c,0x0,0x54,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x65,0x0,
- 0x72,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x77,0x0,0x73,0x0,0x70,0x0,
- 0x69,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6d,0x0,
- 0x75,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x74,0x0,0x79,0x0,0x20,0x0,
- 0x72,0x0,0x6f,0x0,0x7a,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x77,0x0,0x2e,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x54,0x68,0x69,0x73,0x20,0x73,0x65,
- 0x72,0x76,0x65,0x72,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x73,0x20,0x63,0x61,
- 0x73,0x65,0x20,0x61,0x6c,0x65,0x72,0x74,0x73,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,
- 0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,
- 0x0,0x0,0x0,0x9e,0x0,0x57,0x1,0x42,0x1,0x5,0x0,0x63,0x0,0x7a,0x0,0x20,
- 0x0,0x74,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x62,0x0,0x79,0x0,0x20,
- 0x0,0x70,0x0,0x6f,0x0,0x7a,0x0,0x77,0x0,0x6f,0x0,0x6c,0x0,0x69,0x1,0x7,
- 0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x63,0x0,0x69,
- 0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x66,0x0,0x69,0x0,0x6e,
- 0x0,0x69,0x0,0x6f,0x0,0x77,0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x73,0x0,0x77,
- 0x0,0x6f,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x77,0x1,0x42,0x0,0x61,0x0,0x73,
- 0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x69,0x0,0x67,
- 0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x6f,0x0,0x6b,0x0,0x69,0x0,0x65,0x0,0x6e,
- 0x0,0x65,0x0,0x6b,0x0,0x20,0x0,0x63,0x0,0x7a,0x0,0x61,0x0,0x74,0x0,0x75,
- 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4d,0x54,0x75,0x72,0x6e,
- 0x20,0x74,0x68,0x69,0x73,0x20,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x61,0x6c,0x6c,0x6f,
- 0x77,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x73,0x20,0x74,0x6f,0x20,
- 0x64,0x65,0x66,0x69,0x6e,0x65,0x20,0x74,0x68,0x65,0x69,0x72,0x20,0x6f,0x77,0x6e,
- 0x20,0x63,0x75,0x73,0x74,0x6f,0x6d,0x20,0x63,0x68,0x61,0x74,0x20,0x62,0x6f,0x78,
- 0x20,0x64,0x65,0x73,0x69,0x67,0x6e,0x73,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,
- 0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,
- 0x0,0x1,0x26,0x0,0x57,0x1,0x42,0x1,0x5,0x0,0x63,0x0,0x7a,0x0,0x20,0x0,
- 0x74,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x62,0x0,0x79,0x0,0x20,0x0,
- 0x70,0x0,0x6f,0x0,0x7a,0x0,0x77,0x0,0x6f,0x0,0x6c,0x0,0x69,0x1,0x7,0x0,
- 0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x63,0x0,0x69,0x0,
- 0x6f,0x0,0x6d,0x0,0x20,0x0,0x7a,0x0,0x64,0x0,0x65,0x0,0x66,0x0,0x69,0x0,
- 0x6e,0x0,0x69,0x0,0x6f,0x0,0x77,0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x69,0x0,
- 0x63,0x0,0x68,0x0,0x20,0x0,0x77,0x1,0x42,0x0,0x61,0x0,0x73,0x0,0x6e,0x0,
- 0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x6b,0x0,0x6c,0x0,0x65,0x0,0x6a,0x0,
- 0x6b,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x75,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,
- 0x61,0x0,0x74,0x0,0x6f,0x0,0x77,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,
- 0x72,0x0,0x61,0x0,0x7a,0x0,0x6b,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x6b,0x0,
- 0x74,0x0,0xf3,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x6a,0x0,
- 0x61,0x0,0x77,0x0,0x69,0x1,0x5,0x0,0x20,0x0,0x73,0x0,0x69,0x1,0x19,0x0,
- 0x20,0x0,0x6e,0x0,0x61,0x0,0x64,0x0,0x20,0x0,0x6f,0x0,0x6b,0x0,0x6e,0x0,
- 0x65,0x0,0x6d,0x0,0x20,0x0,0x63,0x0,0x7a,0x0,0x61,0x0,0x74,0x0,0x75,0x0,
- 0x2c,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x7a,0x0,0x79,0x0,0x6d,0x0,
- 0x20,0x0,0x61,0x0,0x77,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x79,0x0,
- 0x20,0x0,0x6c,0x0,0x75,0x0,0x62,0x0,0x20,0x0,0x6b,0x0,0x73,0x0,0x79,0x0,
- 0x77,0x0,0x6b,0x0,0x69,0x0,0x29,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x88,0x54,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x20,0x6f,0x6e,0x20,
- 0x74,0x6f,0x20,0x61,0x6c,0x6c,0x6f,0x77,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,
- 0x65,0x72,0x73,0x20,0x74,0x6f,0x20,0x64,0x65,0x66,0x69,0x6e,0x65,0x20,0x74,0x68,
- 0x65,0x69,0x72,0x20,0x6f,0x77,0x6e,0x20,0x73,0x74,0x69,0x63,0x6b,0x65,0x72,0x73,
- 0x20,0x28,0x75,0x6e,0x69,0x71,0x75,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,
- 0x74,0x68,0x61,0x74,0x20,0x73,0x68,0x6f,0x77,0x20,0x75,0x70,0x20,0x6f,0x76,0x65,
- 0x72,0x20,0x74,0x68,0x65,0x20,0x63,0x68,0x61,0x74,0x62,0x6f,0x78,0x20,0x2d,0x20,
- 0x6c,0x69,0x6b,0x65,0x20,0x61,0x76,0x61,0x74,0x61,0x72,0x73,0x20,0x6f,0x72,0x20,
- 0x73,0x68,0x6f,0x77,0x6e,0x61,0x6d,0x65,0x73,0x29,0x2e,0x7,0x0,0x0,0x0,0xf,
- 0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,
- 0x3,0x0,0x0,0x0,0xbc,0x0,0x57,0x1,0x42,0x1,0x5,0x0,0x63,0x0,0x7a,0x0,
- 0x20,0x0,0x74,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x62,0x0,0x79,0x0,
- 0x20,0x0,0x7a,0x0,0x61,0x0,0x70,0x0,0x6f,0x0,0x62,0x0,0x69,0x0,0x65,0x0,
- 0x63,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x7a,0x0,0x79,0x0,0x63,0x0,0x69,0x0,
- 0x73,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x77,0x0,0x79,0x0,0x62,0x0,0x6f,0x0,
- 0x72,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x64,0x0,
- 0x2d,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x6a,0x0,
- 0x69,0x0,0x20,0x0,0x6f,0x0,0x64,0x0,0x20,0x0,0x6f,0x0,0x64,0x0,0x7a,0x0,
- 0x6e,0x0,0x61,0x0,0x63,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x61,0x0,
- 0x20,0x0,0x73,0x0,0x69,0x1,0x19,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,
- 0x6f,0x0,0x64,0x0,0x65,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,
- 0x75,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x74,0x0,0x6b,0x0,0x69,0x0,
- 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x54,0x54,0x75,0x72,0x6e,0x20,
- 0x74,0x68,0x69,0x73,0x20,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x70,0x72,0x65,0x76,0x65,
- 0x6e,0x74,0x20,0x70,0x72,0x65,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x20,
- 0x63,0x68,0x65,0x63,0x6b,0x62,0x6f,0x78,0x20,0x66,0x72,0x6f,0x6d,0x20,0x63,0x6c,
- 0x65,0x61,0x72,0x69,0x6e,0x67,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x70,0x6c,0x61,
- 0x79,0x69,0x6e,0x67,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x6f,0x74,0x65,0x2e,0x7,
- 0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,
- 0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xc0,0x0,0x57,0x1,0x42,0x1,0x5,0x0,
- 0x63,0x0,0x7a,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,
- 0x62,0x0,0x79,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x70,0x0,0x6f,0x0,0x62,0x0,
- 0x69,0x0,0x65,0x0,0x63,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x74,0x1,
- 0x19,0x0,0x20,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0xf3,0x0,
- 0x77,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x64,0x0,0x20,0x0,
- 0x6f,0x0,0x64,0x0,0x7a,0x0,0x6e,0x0,0x61,0x0,0x63,0x0,0x7a,0x0,0x65,0x0,
- 0x6e,0x0,0x69,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x7a,0x0,
- 0x6e,0x0,0x61,0x0,0x63,0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x67,0x0,
- 0x6f,0x0,0x20,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x75,0x0,
- 0x20,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,
- 0x20,0x0,0x6f,0x0,0x64,0x0,0x74,0x0,0x77,0x0,0x6f,0x0,0x72,0x0,0x7a,0x0,
- 0x65,0x0,0x6e,0x0,0x69,0x0,0x75,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x57,0x54,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x20,0x6f,0x6e,0x20,
- 0x74,0x6f,0x20,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x20,0x74,0x68,0x65,0x20,0x65,
- 0x66,0x66,0x65,0x63,0x74,0x73,0x20,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x20,
- 0x66,0x72,0x6f,0x6d,0x20,0x63,0x6c,0x65,0x61,0x72,0x69,0x6e,0x67,0x20,0x74,0x68,
- 0x65,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x70,
- 0x6c,0x61,0x79,0x69,0x6e,0x67,0x20,0x69,0x74,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,
- 0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,
- 0x0,0x0,0x0,0xc4,0x0,0x57,0x1,0x42,0x1,0x5,0x0,0x63,0x0,0x7a,0x0,0x20,
- 0x0,0x74,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x62,0x0,0x79,0x0,0x20,
- 0x0,0x7a,0x0,0x61,0x0,0x70,0x0,0x6f,0x0,0x62,0x0,0x69,0x0,0x65,0x0,0x63,
- 0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x74,0x1,0x19,0x0,0x20,0x0,0x64,
- 0x1,0x7a,0x0,0x77,0x0,0x69,0x1,0x19,0x0,0x6b,0x0,0xf3,0x0,0x77,0x0,0x20,
- 0x0,0x70,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x6f,0x0,0x64,
- 0x0,0x7a,0x0,0x6e,0x0,0x61,0x0,0x63,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,
- 0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x7a,0x0,0x6e,0x0,0x61,
- 0x0,0x63,0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x20,
- 0x0,0x64,0x1,0x7a,0x0,0x77,0x0,0x69,0x1,0x19,0x0,0x6b,0x0,0x75,0x0,0x20,
- 0x0,0x70,0x0,0x6f,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x20,
- 0x0,0x6f,0x0,0x64,0x0,0x74,0x0,0x77,0x0,0x6f,0x0,0x72,0x0,0x7a,0x0,0x65,
- 0x0,0x6e,0x0,0x69,0x0,0x75,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x54,0x54,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x20,0x6f,0x6e,0x20,0x74,
- 0x6f,0x20,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x20,0x74,0x68,0x65,0x20,0x73,0x6f,
- 0x75,0x6e,0x64,0x20,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x20,0x66,0x72,0x6f,
- 0x6d,0x20,0x63,0x6c,0x65,0x61,0x72,0x69,0x6e,0x67,0x20,0x74,0x68,0x65,0x20,0x73,
- 0x6f,0x75,0x6e,0x64,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x70,0x6c,0x61,0x79,0x69,
- 0x6e,0x67,0x20,0x69,0x74,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,
- 0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x64,
- 0x0,0x55,0x1,0x7c,0x0,0x79,0x0,0x6a,0x0,0x20,0x0,0x7a,0x0,0x6e,0x0,0x61,
- 0x0,0x63,0x0,0x7a,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0xf3,0x0,0x77,0x0,0x20,
- 0x0,0x6b,0x0,0x6f,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0xf3,0x0,0x77,0x0,0x20,
- 0x0,0x77,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x77,0x0,0x65,0x0,0x72,
- 0x0,0x6f,0x0,0x77,0x0,0x79,0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0x7a,0x0,0x69,
- 0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x49,
- 0x0,0x43,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x55,0x73,
- 0x65,0x20,0x74,0x68,0x65,0x20,0x6d,0x61,0x72,0x6b,0x75,0x70,0x20,0x63,0x6f,0x6c,
- 0x6f,0x72,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x72,0x76,0x65,
- 0x72,0x20,0x49,0x43,0x20,0x63,0x68,0x61,0x74,0x6c,0x6f,0x67,0x2e,0x7,0x0,0x0,
- 0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0x0,0x0,0x0,0xe2,0x0,0x4f,0x0,0x64,0x0,0x20,0x0,0x74,0x0,
- 0x65,0x0,0x67,0x0,0x6f,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x6c,0x0,0x65,0x1,
- 0x7c,0x0,0x79,0x0,0x2c,0x0,0x20,0x0,0x63,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,
- 0x61,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x6a,0x0,0x65,0x0,
- 0x20,0x0,0x62,0x1,0x19,0x0,0x64,0x1,0x5,0x0,0x20,0x0,0x6f,0x0,0x64,0x0,
- 0x74,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x7a,0x0,0x61,0x1,0x7,0x0,0x20,0x0,
- 0x73,0x0,0x69,0x1,0x19,0x0,0x20,0x0,0x6f,0x0,0x64,0x0,0x20,0x0,0x70,0x0,
- 0x75,0x0,0x6e,0x0,0x6b,0x0,0x74,0x0,0x75,0x0,0x20,0x0,0x77,0x0,0x79,0x0,
- 0x6a,0x1,0x5b,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x2e,0x0,0x20,0x0,0x57,0x0,
- 0x79,0x1,0x42,0x1,0x5,0x0,0x63,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,
- 0x65,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,
- 0x6d,0x0,0x6f,0x1,0x7c,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x6d,0x0,0x6e,0x0,
- 0x69,0x0,0x65,0x0,0x6a,0x0,0x73,0x0,0x7a,0x0,0x79,0x1,0x7,0x0,0x20,0x0,
- 0x73,0x0,0x70,0x0,0x6f,0x0,0x77,0x0,0x6f,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0,
- 0x65,0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x63,0x57,0x68,0x65,0x74,0x68,0x65,0x72,0x20,0x6f,0x72,0x20,0x6e,0x6f,
- 0x74,0x20,0x74,0x6f,0x20,0x72,0x65,0x73,0x75,0x6d,0x65,0x20,0x70,0x6c,0x61,0x79,
- 0x69,0x6e,0x67,0x20,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x73,0x20,0x66,
- 0x72,0x6f,0x6d,0x20,0x77,0x68,0x65,0x72,0x65,0x20,0x74,0x68,0x65,0x79,0x20,0x6c,
- 0x65,0x66,0x74,0x20,0x6f,0x66,0x66,0x2e,0x20,0x54,0x75,0x72,0x6e,0x69,0x6e,0x67,
- 0x20,0x6f,0x66,0x66,0x20,0x6d,0x69,0x67,0x68,0x74,0x20,0x72,0x65,0x64,0x75,0x63,
- 0x65,0x20,0x6c,0x61,0x67,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,
- 0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xb0,
- 0x0,0x54,0x0,0x77,0x0,0x6f,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61,
- 0x0,0x7a,0x0,0x77,0x0,0x61,0x0,0x20,0x0,0x4f,0x0,0x4f,0x0,0x43,0x0,0x20,
- 0x0,0x62,0x1,0x19,0x0,0x64,0x0,0x7a,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x61,
- 0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x79,0x0,0x63,
- 0x0,0x7a,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x73,0x0,0x74,
- 0x0,0x61,0x0,0x77,0x0,0x69,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x64,
- 0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x77,0x0,0x61,
- 0x0,0x72,0x0,0x74,0x0,0x6f,0x1,0x5b,0x0,0x63,0x0,0x69,0x0,0x2c,0x0,0x20,
- 0x0,0x67,0x0,0x64,0x0,0x79,0x0,0x20,0x0,0x64,0x0,0x6f,0x1,0x42,0x1,0x5,
- 0x0,0x63,0x0,0x7a,0x0,0x79,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x6e,0x0,0x61,
- 0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x2e,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4d,0x59,0x6f,0x75,0x72,0x20,0x4f,
- 0x4f,0x43,0x20,0x6e,0x61,0x6d,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,
- 0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x61,0x6c,0x6c,0x79,0x20,0x73,0x65,
- 0x74,0x20,0x74,0x6f,0x20,0x74,0x68,0x69,0x73,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,
- 0x77,0x68,0x65,0x6e,0x20,0x79,0x6f,0x75,0x20,0x6a,0x6f,0x69,0x6e,0x20,0x61,0x20,
- 0x73,0x65,0x72,0x76,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,
- 0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,
- 0xaa,0x0,0x54,0x0,0x77,0x0,0x6f,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,
- 0x73,0x0,0x79,0x0,0x77,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x62,0x1,0x19,0x0,
- 0x64,0x0,0x7a,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0,
- 0x6f,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x79,0x0,0x63,0x0,0x7a,0x0,0x6e,0x0,
- 0x69,0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x77,0x0,
- 0x69,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,
- 0x74,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x74,0x0,
- 0x6f,0x1,0x5b,0x0,0x63,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x67,0x0,0x64,0x0,
- 0x79,0x0,0x20,0x0,0x64,0x0,0x6f,0x1,0x42,0x1,0x5,0x0,0x63,0x0,0x7a,0x0,
- 0x79,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x73,0x0,
- 0x65,0x0,0x72,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x4d,0x59,0x6f,0x75,0x72,0x20,0x73,0x68,0x6f,0x77,0x6e,0x61,
- 0x6d,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x61,0x75,0x74,0x6f,0x6d,
- 0x61,0x74,0x69,0x63,0x61,0x6c,0x6c,0x79,0x20,0x73,0x65,0x74,0x20,0x74,0x6f,0x20,
- 0x74,0x68,0x69,0x73,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x77,0x68,0x65,0x6e,0x20,
- 0x79,0x6f,0x75,0x20,0x6a,0x6f,0x69,0x6e,0x20,0x61,0x20,0x73,0x65,0x72,0x76,0x65,
- 0x72,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,
- 0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0xff,0xff,0xff,0xff,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x3,0xe2,0x86,0x91,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,
- 0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0xff,
- 0xff,0xff,0xff,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0xe2,0x86,0x93,
- 0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,
- 0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x22,0x0,0x25,0x0,0x31,
- 0x0,0x22,0x0,0x20,0x0,0x7a,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x1,0x42,
- 0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,
- 0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x79,0x0,0x2f,0x0,0x61,0x0,0x2e,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x22,0x25,0x31,0x22,0x20,0x68,
- 0x61,0x73,0x20,0x62,0x65,0x65,0x6e,0x20,0x74,0x72,0x61,0x6e,0x73,0x66,0x65,0x72,
- 0x72,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x25,0x0,0x20,0x0,0x77,0x0,0x79,
- 0x0,0x72,0x0,0xf3,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,
- 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x25,0x20,0x78,0x20,
- 0x6f,0x66,0x66,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x25,0x0,0x20,0x0,0x77,
- 0x0,0x79,0x0,0x72,0x0,0xf3,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,
- 0x0,0x20,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x25,0x20,
- 0x79,0x20,0x6f,0x66,0x66,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,
- 0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x4f,0x0,0x2f,
- 0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x41,0x2f,0x4d,0x7,
- 0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,
- 0x0,0x0,0x26,0x0,0x44,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,
- 0x6e,0x0,0x6f,0x0,0x77,0x0,0x79,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,
- 0xf3,0x0,0x64,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x13,0x41,0x64,0x64,0x20,0x6e,0x65,0x77,0x20,0x65,0x76,0x69,0x64,0x65,
- 0x6e,0x63,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x86,0x0,0x44,0x0,0x6f,0x0,0x64,
- 0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x73,0x0,0x74,
- 0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x77,0x0,0x6f,0x0,0x6a,
- 0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,
- 0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x61,
- 0x0,0x64,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x1,0x5b,0x0,0x63,0x0,0x69,0x0,0x2c,
- 0x0,0x20,0x0,0x67,0x0,0x64,0x0,0x79,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x73,
- 0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x7a,
- 0x0,0x6e,0x0,0x61,0x0,0x63,0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x2e,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x32,0x41,0x64,0x64,0x20,0x74,0x65,
- 0x78,0x74,0x20,0x74,0x6f,0x20,0x79,0x6f,0x75,0x72,0x20,0x6c,0x61,0x73,0x74,0x20,
- 0x73,0x70,0x6f,0x6b,0x65,0x6e,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x77,
- 0x68,0x65,0x6e,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x16,
- 0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x79,0x0,0x6e,0x0,0x75,0x0,0x61,
- 0x0,0x63,0x0,0x6a,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,
- 0x41,0x64,0x64,0x69,0x74,0x69,0x76,0x65,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,
- 0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x54,0x0,0x55,0x0,0x6d,
- 0x0,0x6f,0x1,0x7c,0x0,0x6c,0x0,0x69,0x0,0x77,0x0,0x69,0x0,0x61,0x0,0x20,
- 0x0,0x7a,0x0,0x6d,0x0,0x69,0x0,0x61,0x0,0x6e,0x1,0x19,0x0,0x20,0x0,0x72,
- 0x0,0xf3,0x1,0x7c,0x0,0x6e,0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x61,
- 0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0xf3,0x0,0x77,0x0,0x20,
- 0x0,0x6b,0x0,0x6c,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x2e,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x33,0x41,0x6c,0x6c,0x6f,0x77,0x73,
- 0x20,0x79,0x6f,0x75,0x20,0x74,0x6f,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x20,0x76,
- 0x61,0x72,0x69,0x6f,0x75,0x73,0x20,0x61,0x73,0x70,0x65,0x63,0x74,0x73,0x20,0x6f,
- 0x66,0x20,0x74,0x68,0x65,0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,0x2e,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0xd2,0x0,0x49,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0x65,0x0,
- 0x6a,0x0,0x73,0x0,0x2c,0x0,0x20,0x0,0x6b,0x0,0x74,0x0,0xf3,0x0,0x72,0x0,
- 0x79,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x1,0x7c,0x0,0x65,0x0,
- 0x20,0x0,0x63,0x0,0x69,0x0,0x20,0x0,0x6f,0x0,0x67,0x1,0x42,0x0,0x6f,0x0,
- 0x73,0x0,0x69,0x1,0x7,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x70,0x0,
- 0x72,0x0,0x61,0x0,0x77,0x1,0x19,0x0,0x20,0x0,0x28,0x0,0x6d,0x0,0x75,0x0,
- 0x73,0x0,0x69,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x62,0x0,0x79,0x1,0x7,0x0,
- 0x20,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x7a,0x1,0x5,0x0,0x64,0x0,0x63,0x1,
- 0x5,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x70,0x0,0x72,0x0,0x61,0x0,
- 0x77,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x4d,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,
- 0x61,0x0,0x62,0x0,0x79,0x0,0x20,0x0,0x6d,0x0,0xf3,0x0,0x63,0x0,0x20,0x0,
- 0x6f,0x0,0x67,0x1,0x42,0x0,0x61,0x0,0x73,0x0,0x7a,0x0,0x61,0x1,0x7,0x0,
- 0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x77,0x0,
- 0x79,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x61,0x41,0x6e,0x20,
- 0x69,0x6e,0x74,0x65,0x72,0x66,0x61,0x63,0x65,0x20,0x74,0x6f,0x20,0x68,0x65,0x6c,
- 0x70,0x20,0x79,0x6f,0x75,0x20,0x61,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x20,0x61,
- 0x20,0x63,0x61,0x73,0x65,0x20,0x28,0x79,0x6f,0x75,0x20,0x68,0x61,0x76,0x65,0x20,
- 0x74,0x6f,0x20,0x62,0x65,0x20,0x61,0x20,0x43,0x4d,0x20,0x66,0x69,0x72,0x73,0x74,
- 0x20,0x74,0x6f,0x20,0x62,0x65,0x20,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x61,
- 0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x20,0x63,0x61,0x73,0x65,0x73,0x29,0x7,0x0,
- 0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,
- 0x0,0x28,0x0,0x50,0x0,0x6f,0x0,0x77,0x0,0x72,0x0,0xf3,0x0,0x74,0x0,0x20,
- 0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x63,0x0,0x7a,0x0,0x65,
- 0x0,0x6b,0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0xd,0x42,0x61,0x63,0x6b,0x20,0x74,0x6f,0x20,0x4c,0x6f,0x62,0x62,
- 0x79,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,
- 0x3,0x0,0x0,0x0,0x8e,0x0,0x46,0x0,0x75,0x0,0x6e,0x0,0x6b,0x0,0x63,0x0,
- 0x6a,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,
- 0x61,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x2e,0x0,0x20,0x0,0x4e,0x0,
- 0x69,0x0,0x65,0x0,0x20,0x0,0x62,0x1,0x19,0x0,0x64,0x0,0x7a,0x0,0x69,0x0,
- 0x65,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x6d,0x0,0xf3,0x0,0x67,0x1,0x42,0x0,
- 0x20,0x0,0x77,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x64,0x0,0x7a,0x0,0x69,0x1,
- 0x7,0x0,0x20,0x0,0x77,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,
- 0x72,0x0,0x61,0x0,0x6b,0x0,0x63,0x0,0x6a,0x1,0x19,0x0,0x20,0x0,0x7a,0x0,
- 0x20,0x0,0x6f,0x0,0x6b,0x0,0x6e,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x49,0x0,
- 0x43,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4f,0x42,0x65,0x63,
- 0x6f,0x6d,0x65,0x20,0x61,0x20,0x73,0x70,0x65,0x63,0x74,0x61,0x74,0x6f,0x72,0x2e,
- 0x20,0x59,0x6f,0x75,0x20,0x77,0x6f,0x6e,0x27,0x74,0x20,0x62,0x65,0x20,0x61,0x62,
- 0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x74,0x65,0x72,0x61,0x63,0x74,0x20,0x77,
- 0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x69,0x6e,0x2d,0x63,0x68,0x61,0x72,0x61,
- 0x63,0x74,0x65,0x72,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x2e,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xa,
- 0x0,0x42,0x0,0x6c,0x0,0x69,0x0,0x70,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x5,0x42,0x6c,0x69,0x70,0x73,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,
- 0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x66,0x0,0x57,0x0,
- 0x79,0x1,0x5b,0x0,0x77,0x0,0x69,0x0,0x65,0x0,0x74,0x0,0x6c,0x0,0x20,0x0,
- 0x65,0x0,0x6b,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x7a,0x0,0x6d,0x0,
- 0x69,0x0,0x61,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,
- 0x74,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x7a,0x0,
- 0x6d,0x0,0x69,0x0,0x65,0x1,0x44,0x0,0x20,0x0,0x73,0x0,0x77,0x0,0x6f,0x0,
- 0x6a,0x1,0x5,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x1,
- 0x7,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3f,0x42,0x72,0x69,
- 0x6e,0x67,0x20,0x75,0x70,0x20,0x74,0x68,0x65,0x20,0x43,0x68,0x61,0x72,0x61,0x63,
- 0x74,0x65,0x72,0x20,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x53,0x63,0x72,0x65,0x65,
- 0x6e,0x20,0x61,0x6e,0x64,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x20,0x79,0x6f,0x75,
- 0x72,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x2e,
- 0x0,0x57,0x0,0x79,0x1,0x5b,0x0,0x77,0x0,0x69,0x0,0x65,0x0,0x74,0x0,0x6c,
- 0x0,0x20,0x0,0x65,0x0,0x6b,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x64,
- 0x0,0x6f,0x0,0x77,0x0,0x6f,0x0,0x64,0x0,0xf3,0x0,0x77,0x0,0x2e,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x42,0x72,0x69,0x6e,0x67,0x20,0x75,0x70,
- 0x20,0x74,0x68,0x65,0x20,0x45,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x73,0x63,
- 0x72,0x65,0x65,0x6e,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,
- 0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x4b,0x0,0x4c,0x0,0x49,0x0,
- 0x45,0x0,0x4e,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x43,
- 0x4c,0x49,0x45,0x4e,0x54,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,
- 0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4e,0x0,0x49,0x0,0x45,0x0,
- 0x53,0x0,0x54,0x0,0x41,0x0,0x4e,0x0,0x44,0x0,0x41,0x0,0x52,0x0,0x44,0x0,
- 0x4f,0x0,0x57,0x0,0x59,0x0,0x20,0x0,0x53,0x0,0x50,0x0,0x52,0x0,0x5a,0x0,
- 0x45,0x0,0x43,0x0,0x49,0x0,0x57,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x11,0x43,0x55,0x53,0x54,0x4f,0x4d,0x20,0x4f,0x42,0x4a,0x45,0x43,0x54,
- 0x49,0x4f,0x4e,0x21,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x57,0x0,0x65,0x0,0x7a,0x0,0x77,
- 0x0,0x69,0x0,0x6a,0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x72,
- 0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0xe,0x43,0x61,0x6c,0x6c,0x20,0x4d,0x6f,0x64,0x65,0x72,0x61,0x74,
- 0x6f,0x72,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,
- 0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x57,0x0,0x65,0x0,0x7a,0x0,0x77,0x0,0x69,
- 0x0,0x6a,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x61,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x61,0x6c,0x6c,0x20,0x6d,0x6f,0x64,0x7,0x0,
- 0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,
- 0x0,0x38,0x0,0x52,0x0,0x6f,0x0,0x7a,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x77,
- 0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x77,0x0,0x6f,0x0,0x72,0x0,0x7a,
- 0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x7a,0x0,0x65,
- 0x0,0x7a,0x0,0x20,0x0,0x25,0x0,0x31,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x10,0x43,0x61,0x73,0x65,0x20,0x6d,0x61,0x64,0x65,0x20,0x62,0x79,
- 0x20,0x25,0x31,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x52,0x0,0x6f,0x0,0x7a,0x0,0x70,
- 0x0,0x72,0x0,0x61,0x0,0x77,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x6,0x43,0x61,0x73,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,
- 0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x5a,0x0,0x6d,
- 0x0,0x69,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,
- 0x0,0x74,0x0,0x61,0x0,0x63,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x10,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,
- 0x65,0x72,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,
- 0x1,0x3,0x0,0x0,0x0,0xa4,0x0,0x5a,0x0,0x6d,0x0,0x69,0x0,0x65,0x1,0x44,
- 0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x74,
- 0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6d,0x0,0x65,
- 0x0,0x67,0x0,0x6f,0x0,0x20,0x0,0x77,0x0,0x79,0x0,0x72,0x0,0xf3,0x0,0x77,
- 0x0,0x6e,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x6f,
- 0x0,0x7a,0x0,0x79,0x0,0x63,0x0,0x6a,0x0,0x69,0x0,0x20,0x0,0x74,0x0,0x77,
- 0x0,0x6f,0x0,0x6a,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,
- 0x0,0x74,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x63,
- 0x0,0x7a,0x1,0x5,0x0,0x63,0x0,0x20,0x0,0x6f,0x0,0x64,0x0,0x20,0x1,0x5b,
- 0x0,0x72,0x0,0x6f,0x0,0x64,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6b,
- 0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x75,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x63,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x74,0x68,0x65,0x20,0x68,
- 0x6f,0x72,0x69,0x7a,0x6f,0x6e,0x74,0x61,0x6c,0x20,0x70,0x65,0x72,0x63,0x65,0x6e,
- 0x74,0x61,0x67,0x65,0x20,0x6f,0x66,0x66,0x73,0x65,0x74,0x20,0x6f,0x66,0x20,0x79,
- 0x6f,0x75,0x72,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x27,0x73,0x20,
- 0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x20,0x66,0x72,0x6f,0x6d,0x20,0x74,0x68,
- 0x65,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x20,0x6f,0x66,0x20,0x74,0x68,0x65,0x20,
- 0x73,0x63,0x72,0x65,0x65,0x6e,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x60,0x0,0x5a,0x0,0x6d,0x0,
- 0x69,0x0,0x65,0x1,0x44,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,
- 0x6a,0x0,0x6e,0x0,0x6f,0x1,0x5b,0x1,0x7,0x0,0x20,0x0,0x77,0x0,0x79,0x0,
- 0x73,0x0,0x74,0x1,0x19,0x0,0x70,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,
- 0x69,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x74,0x0,
- 0x77,0x0,0x6f,0x0,0x6a,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,
- 0x73,0x0,0x74,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x32,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x74,0x68,0x65,0x20,
- 0x6f,0x72,0x64,0x65,0x72,0x20,0x6f,0x66,0x20,0x61,0x70,0x70,0x65,0x61,0x72,0x61,
- 0x6e,0x63,0x65,0x20,0x66,0x6f,0x72,0x20,0x79,0x6f,0x75,0x72,0x20,0x63,0x68,0x61,
- 0x72,0x61,0x63,0x74,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x1,0x14,0x0,0x5a,0x0,0x6d,0x0,
- 0x69,0x0,0x65,0x1,0x44,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6c,0x0,0x6f,0x0,
- 0x72,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x73,0x0,0x74,0x0,0x75,0x0,
- 0x20,0x0,0x74,0x0,0x77,0x0,0x6f,0x0,0x6a,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,
- 0x77,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x1,0x5b,0x0,
- 0x63,0x0,0x69,0x0,0x2e,0x0,0xa,0x0,0x4d,0x0,0x6f,0x1,0x7c,0x0,0x65,0x0,
- 0x73,0x0,0x7a,0x0,0x20,0x0,0x72,0x0,0xf3,0x0,0x77,0x0,0x6e,0x0,0x69,0x0,
- 0x65,0x1,0x7c,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x7a,0x0,0x6e,0x0,0x61,0x0,
- 0x63,0x0,0x7a,0x0,0x79,0x1,0x7,0x0,0x20,0x0,0x63,0x0,0x7a,0x1,0x19,0x1,
- 0x5b,0x1,0x7,0x0,0x20,0x0,0x74,0x0,0x77,0x0,0x6f,0x0,0x6a,0x0,0x65,0x0,
- 0x6a,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x65,0x0,0x63,0x0,0x6e,0x0,0x69,0x0,
- 0x65,0x0,0x20,0x0,0x70,0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,
- 0x6a,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x6d,0x0,
- 0x6f,0x1,0x5b,0x0,0x63,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x75,0x1,
- 0x7c,0x0,0x79,0x1,0x7,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x74,0x0,
- 0x79,0x0,0x20,0x0,0x61,0x0,0x62,0x0,0x79,0x0,0x20,0x0,0x7a,0x0,0x6d,0x0,
- 0x69,0x0,0x65,0x0,0x6e,0x0,0x69,0x1,0x7,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,
- 0x6a,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x21,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x91,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,
- 0x74,0x68,0x65,0x20,0x74,0x65,0x78,0x74,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x6f,
- 0x66,0x20,0x74,0x68,0x65,0x20,0x73,0x70,0x6f,0x6b,0x65,0x6e,0x20,0x6d,0x65,0x73,
- 0x73,0x61,0x67,0x65,0x2e,0xa,0x59,0x6f,0x75,0x20,0x63,0x61,0x6e,0x20,0x61,0x6c,
- 0x73,0x6f,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x61,0x20,0x70,0x61,0x72,0x74,
- 0x20,0x6f,0x66,0x20,0x79,0x6f,0x75,0x72,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,
- 0x6c,0x79,0x20,0x74,0x79,0x70,0x65,0x64,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,
- 0x20,0x61,0x6e,0x64,0x20,0x75,0x73,0x65,0x20,0x74,0x68,0x65,0x20,0x64,0x72,0x6f,
- 0x70,0x64,0x6f,0x77,0x6e,0x20,0x74,0x6f,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x20,
- 0x69,0x74,0x73,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x21,0x7,0x0,0x0,0x0,0x9,0x43,
- 0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xa4,0x0,0x5a,
- 0x0,0x6d,0x0,0x69,0x0,0x65,0x1,0x44,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,
- 0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x69,0x0,0x6f,
- 0x0,0x6e,0x0,0x6f,0x0,0x77,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x20,0x0,0x77,
- 0x0,0x79,0x0,0x72,0x0,0xf3,0x0,0x77,0x0,0x6e,0x0,0x61,0x0,0x6e,0x0,0x69,
- 0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x7a,0x0,0x79,0x0,0x63,0x0,0x6a,
- 0x0,0x69,0x0,0x20,0x0,0x74,0x0,0x77,0x0,0x6f,0x0,0x6a,0x0,0x65,0x0,0x6a,
- 0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x63,0x0,0x69,
- 0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x7a,0x1,0x5,0x0,0x63,0x0,0x20,
- 0x0,0x6f,0x0,0x64,0x0,0x20,0x1,0x5b,0x0,0x72,0x0,0x6f,0x0,0x64,0x0,0x6b,
- 0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6b,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x75,
- 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x61,0x43,0x68,0x61,0x6e,
- 0x67,0x65,0x20,0x74,0x68,0x65,0x20,0x76,0x65,0x72,0x74,0x69,0x63,0x61,0x6c,0x20,
- 0x70,0x65,0x72,0x63,0x65,0x6e,0x74,0x61,0x67,0x65,0x20,0x6f,0x66,0x66,0x73,0x65,
- 0x74,0x20,0x6f,0x66,0x20,0x79,0x6f,0x75,0x72,0x20,0x63,0x68,0x61,0x72,0x61,0x63,
- 0x74,0x65,0x72,0x27,0x73,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x20,0x66,
- 0x72,0x6f,0x6d,0x20,0x74,0x68,0x65,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x20,0x6f,
- 0x66,0x20,0x74,0x68,0x65,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x2e,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x2,
- 0x36,0x0,0x57,0x0,0x79,0x0,0x62,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x7a,0x0,
- 0x20,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x20,0x0,0x64,0x0,
- 0x6c,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x77,0x0,0x6f,0x0,0x6a,0x0,0x65,0x0,
- 0x6a,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x73,0x0,0x74,0x1,0x19,0x0,0x70,0x0,
- 0x6e,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x61,0x0,0x64,0x0,
- 0x6f,0x0,0x6d,0x0,0x6f,0x1,0x5b,0x0,0x63,0x0,0x69,0x0,0x2e,0x0,0xa,0x0,
- 0x45,0x0,0x66,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x79,0x0,0x20,0x0,0x73,0x1,
- 0x5,0x0,0x20,0x0,0x7a,0x0,0x64,0x0,0x65,0x0,0x66,0x0,0x69,0x0,0x6e,0x0,
- 0x69,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x77,0x0,
- 0x20,0x0,0x70,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x74,0x0,
- 0x68,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x2f,0x0,0x65,0x0,0x66,0x0,0x66,0x0,
- 0x65,0x0,0x63,0x0,0x74,0x0,0x2f,0x0,0x65,0x0,0x66,0x0,0x66,0x0,0x65,0x0,
- 0x63,0x0,0x74,0x0,0x73,0x0,0x2e,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x2e,0x0,
- 0x20,0x0,0x54,0x0,0x77,0x0,0x6f,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x70,0x0,
- 0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x6d,0x0,0x6f,0x1,
- 0x7c,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x64,0x0,0x65,0x0,0x66,0x0,0x69,0x0,
- 0x6e,0x0,0x69,0x0,0x6f,0x0,0x77,0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x6e,0x0,
- 0x69,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,
- 0x72,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x66,0x0,
- 0x65,0x0,0x6b,0x0,0x74,0x0,0x79,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x7a,0x0,
- 0x65,0x0,0x7a,0x0,0xa,0x0,0x6b,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x67,0x0,
- 0x6f,0x0,0x72,0x0,0x69,0x1,0x19,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x61,0x0,
- 0x72,0x0,0x2e,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x5b,0x0,0x4f,0x0,
- 0x70,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x5d,0x0,0x2c,0x0,
- 0x20,0x0,0x65,0x0,0x66,0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x73,0x0,
- 0x20,0x0,0x3d,0x0,0x20,0x0,0x27,0x0,0x6d,0x0,0x69,0x0,0x73,0x0,0x63,0x0,
- 0x6e,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x27,0x0,0x20,0x0,0x67,0x0,0x64,0x0,
- 0x7a,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x69,0x1,0x19,0x0,0x20,0x0,
- 0x6f,0x0,0x64,0x0,0x6e,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x20,0x0,0x64,0x0,
- 0x6f,0x0,0x20,0x0,0x6d,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x2f,0x0,0x3c,0x0,
- 0x6d,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,
- 0x3e,0x0,0x2f,0x0,0x65,0x0,0x66,0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,
- 0x73,0x0,0x2e,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,
- 0x62,0x0,0x79,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x6a,0x0,
- 0x72,0x0,0x7a,0x0,0x65,0x1,0x7,0x0,0x20,0x0,0x65,0x0,0x66,0x0,0x65,0x0,
- 0x6b,0x0,0x74,0x0,0x79,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,
- 0x13,0x43,0x68,0x6f,0x6f,0x73,0x65,0x20,0x61,0x6e,0x20,0x65,0x66,0x66,0x65,0x63,
- 0x74,0x20,0x74,0x6f,0x20,0x70,0x6c,0x61,0x79,0x20,0x6f,0x6e,0x20,0x79,0x6f,0x75,
- 0x72,0x20,0x6e,0x65,0x78,0x74,0x20,0x73,0x70,0x6f,0x6b,0x65,0x6e,0x20,0x6d,0x65,
- 0x73,0x73,0x61,0x67,0x65,0x2e,0xa,0x54,0x68,0x65,0x20,0x65,0x66,0x66,0x65,0x63,
- 0x74,0x73,0x20,0x61,0x72,0x65,0x20,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x20,0x69,
- 0x6e,0x20,0x79,0x6f,0x75,0x72,0x20,0x74,0x68,0x65,0x6d,0x65,0x2f,0x65,0x66,0x66,
- 0x65,0x63,0x74,0x73,0x2f,0x65,0x66,0x66,0x65,0x63,0x74,0x73,0x2e,0x69,0x6e,0x69,
- 0x2e,0x20,0x59,0x6f,0x75,0x72,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,
- 0x20,0x63,0x61,0x6e,0x20,0x64,0x65,0x66,0x69,0x6e,0x65,0x20,0x63,0x75,0x73,0x74,
- 0x6f,0x6d,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x73,0x20,0x62,0x79,0xa,0x63,0x68,
- 0x61,0x72,0x2e,0x69,0x6e,0x69,0x20,0x5b,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x5d,
- 0x20,0x63,0x61,0x74,0x65,0x67,0x6f,0x72,0x79,0x2c,0x20,0x65,0x66,0x66,0x65,0x63,
- 0x74,0x73,0x20,0x3d,0x20,0x27,0x6d,0x69,0x73,0x63,0x6e,0x61,0x6d,0x65,0x27,0x20,
- 0x77,0x68,0x65,0x72,0x65,0x20,0x69,0x74,0x20,0x72,0x65,0x66,0x65,0x72,0x65,0x73,
- 0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x63,0x2f,0x3c,0x6d,0x69,0x73,0x63,0x6e,0x61,
- 0x6d,0x65,0x3e,0x2f,0x65,0x66,0x66,0x65,0x63,0x74,0x73,0x2e,0x69,0x6e,0x69,0x20,
- 0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20,0x74,0x68,0x65,0x20,0x65,0x66,0x66,0x65,
- 0x63,0x74,0x73,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x57,0x0,0x79,0x0,0x62,0x0,0x69,
- 0x0,0x65,0x0,0x72,0x0,0x7a,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x8,0x43,0x68,0x6f,0x6f,0x73,0x65,0x2e,0x2e,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xaa,
- 0x0,0x4e,0x0,0x61,0x0,0x63,0x0,0x69,0x1,0x5b,0x0,0x6e,0x0,0x69,0x0,0x6a,
- 0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x6e,
- 0x1,0x19,0x0,0x20,0x0,0x6f,0x1,0x42,0x0,0xf3,0x0,0x77,0x0,0x6b,0x0,0x61,
- 0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x62,0x0,0x79,0x0,0x20,0x0,0x65,0x0,0x64,
- 0x0,0x79,0x0,0x74,0x0,0x6f,0x0,0x77,0x0,0x61,0x1,0x7,0x0,0x2e,0x0,0x20,
- 0x0,0x4e,0x0,0x61,0x0,0x63,0x0,0x69,0x1,0x5b,0x0,0x6e,0x0,0x69,0x0,0x6a,
- 0x0,0x20,0x0,0x5b,0x0,0x58,0x0,0x5d,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x62,
- 0x0,0x79,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x6b,0x0,0x74,0x0,0x75,0x0,0x61,
- 0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x6f,0x0,0x77,0x0,0x61,0x1,0x7,0x0,0x20,
- 0x0,0x73,0x0,0x77,0x0,0x6f,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x6d,
- 0x0,0x69,0x0,0x61,0x0,0x6e,0x0,0x79,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x40,0x43,0x6c,0x69,0x63,0x6b,0x20,0x74,0x68,0x65,0x20,0x70,0x65,
- 0x6e,0x63,0x69,0x6c,0x20,0x69,0x63,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x65,0x64,0x69,
- 0x74,0x2e,0x20,0x50,0x72,0x65,0x73,0x73,0x20,0x5b,0x58,0x5d,0x20,0x74,0x6f,0x20,
- 0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x79,0x6f,0x75,0x72,0x20,0x63,0x68,0x61,0x6e,
- 0x67,0x65,0x73,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x4e,0x0,0x61,0x0,0x63,0x0,0x69,
- 0x1,0x5b,0x0,0x6e,0x0,0x69,0x0,0x6a,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,
- 0x0,0x6f,0x1,0x42,0x0,0xf3,0x0,0x77,0x0,0x65,0x0,0x6b,0x0,0x2c,0x0,0x20,
- 0x0,0x61,0x0,0x62,0x0,0x79,0x0,0x20,0x0,0x65,0x0,0x64,0x0,0x79,0x0,0x74,
- 0x0,0x6f,0x0,0x77,0x0,0x61,0x1,0x7,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x43,0x6c,0x69,0x63,0x6b,0x20,0x74,0x68,
- 0x65,0x20,0x70,0x65,0x6e,0x63,0x69,0x6c,0x20,0x74,0x6f,0x20,0x65,0x64,0x69,0x74,
- 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0xda,0x0,0x5a,0x0,0x61,0x0,0x6d,0x0,0x6b,0x0,
- 0x6e,0x0,0x69,0x0,0x6a,0x0,0x20,0x0,0x77,0x0,0x79,0x1,0x5b,0x0,0x77,0x0,
- 0x69,0x0,0x65,0x0,0x74,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,
- 0x2f,0x0,0x65,0x0,0x64,0x0,0x79,0x0,0x74,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,
- 0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x6b,0x0,0x69,0x0,0x65,0x0,
- 0x6e,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x6f,0x0,
- 0x64,0x0,0xf3,0x0,0x77,0x0,0x2e,0x0,0xa,0x0,0x5a,0x0,0x6f,0x0,0x73,0x0,
- 0x74,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,
- 0x7a,0x0,0x61,0x0,0x77,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x6d,0x0,
- 0x69,0x0,0x6f,0x0,0x6e,0x0,0x79,0x0,0x2c,0x0,0x20,0x0,0x6a,0x0,0x65,0x1,
- 0x5b,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x73,0x1,0x5,0x0,0x20,0x0,0x6a,0x0,
- 0x61,0x0,0x6b,0x0,0x69,0x0,0x65,0x1,0x5b,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,
- 0x65,0x0,0x7a,0x0,0x61,0x0,0x70,0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x6e,0x0,
- 0x65,0x0,0x20,0x0,0x7a,0x0,0x6d,0x0,0x69,0x0,0x61,0x0,0x6e,0x0,0x79,0x0,
- 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x60,0x43,0x6c,0x6f,0x73,0x65,
- 0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x64,0x69,
- 0x73,0x70,0x6c,0x61,0x79,0x2f,0x65,0x64,0x69,0x74,0x69,0x6e,0x67,0x20,0x6f,0x76,
- 0x65,0x72,0x6c,0x61,0x79,0x2e,0xa,0x59,0x6f,0x75,0x20,0x77,0x69,0x6c,0x6c,0x20,
- 0x62,0x65,0x20,0x70,0x72,0x6f,0x6d,0x70,0x74,0x65,0x64,0x20,0x69,0x66,0x20,0x74,
- 0x68,0x65,0x72,0x65,0x27,0x73,0x20,0x61,0x6e,0x79,0x20,0x75,0x6e,0x73,0x61,0x76,
- 0x65,0x64,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x73,0x2e,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x30,0x0,
- 0x5a,0x0,0x77,0x0,0x69,0x1,0x44,0x0,0x20,0x0,0x57,0x0,0x73,0x0,0x7a,0x0,
- 0x79,0x0,0x73,0x0,0x74,0x0,0x6b,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x4b,0x0,
- 0x61,0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x65,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x43,0x6f,0x6c,0x6c,0x61,0x70,0x73,
- 0x65,0x20,0x41,0x6c,0x6c,0x20,0x43,0x61,0x74,0x65,0x67,0x6f,0x72,0x69,0x65,0x73,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0x86,0x0,0x4f,0x0,0x62,0x0,0x65,0x0,0x63,0x0,0x6e,0x0,0x65,
- 0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x6f,0x0,0x64,0x0,0x79,0x0,0x20,
- 0x0,0x73,0x1,0x5,0x0,0x20,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x62,0x0,0x61,
- 0x0,0x6c,0x0,0x6e,0x0,0x65,0x0,0x2e,0x0,0x20,0x0,0x4b,0x0,0x6c,0x0,0x69,
- 0x0,0x6b,0x0,0x6e,0x0,0x69,0x0,0x6a,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x62,
- 0x0,0x79,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x7a,0x0,0x65,0x1,0x42,0x1,0x5,
- 0x0,0x63,0x0,0x7a,0x0,0x79,0x1,0x7,0x0,0x20,0x0,0x73,0x0,0x69,0x1,0x19,
- 0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x79,0x0,0x77,
- 0x0,0x61,0x0,0x74,0x0,0x6e,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x37,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x65,0x76,0x69,0x64,
- 0x65,0x6e,0x63,0x65,0x20,0x69,0x73,0x20,0x67,0x6c,0x6f,0x62,0x61,0x6c,0x2e,0x20,
- 0x43,0x6c,0x69,0x63,0x6b,0x20,0x74,0x6f,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x20,
- 0x74,0x6f,0x20,0x70,0x72,0x69,0x76,0x61,0x74,0x65,0x2e,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x86,0x0,
- 0x4f,0x0,0x62,0x0,0x65,0x0,0x63,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x64,0x0,
- 0x6f,0x0,0x77,0x0,0x6f,0x0,0x64,0x0,0x79,0x0,0x20,0x0,0x73,0x1,0x5,0x0,
- 0x20,0x0,0x70,0x0,0x72,0x0,0x79,0x0,0x77,0x0,0x61,0x0,0x74,0x0,0x6e,0x0,
- 0x65,0x0,0x2e,0x0,0x20,0x0,0x4b,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x6e,0x0,
- 0x69,0x0,0x6a,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x62,0x0,0x79,0x0,0x20,0x0,
- 0x70,0x0,0x72,0x0,0x7a,0x0,0x65,0x1,0x42,0x1,0x5,0x0,0x63,0x0,0x7a,0x0,
- 0x79,0x1,0x7,0x0,0x20,0x0,0x73,0x0,0x69,0x1,0x19,0x0,0x20,0x0,0x6e,0x0,
- 0x61,0x0,0x20,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x62,0x0,0x61,0x0,0x6c,0x0,
- 0x6e,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x37,0x43,
- 0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,
- 0x69,0x73,0x20,0x70,0x72,0x69,0x76,0x61,0x74,0x65,0x2e,0x20,0x43,0x6c,0x69,0x63,
- 0x6b,0x20,0x74,0x6f,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x20,0x74,0x6f,0x20,0x67,
- 0x6c,0x6f,0x62,0x61,0x6c,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x4e,0x0,0x69,0x0,0x65,
- 0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,
- 0x0,0x6f,0x0,0x77,0x0,0x79,0x0,0x20,0x0,0x4b,0x0,0x72,0x0,0x7a,0x0,0x79,
- 0x0,0x6b,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x75,
- 0x73,0x74,0x6f,0x6d,0x20,0x53,0x68,0x6f,0x75,0x74,0x21,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x24,0x0,
- 0x4f,0x0,0x62,0x0,0x6e,0x0,0x69,0x1,0x7c,0x0,0x20,0x0,0x70,0x0,0x61,0x0,
- 0x73,0x0,0x65,0x0,0x6b,0x0,0x20,0x1,0x7c,0x0,0x79,0x0,0x63,0x0,0x69,0x0,
- 0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x44,0x65,0x63,
- 0x72,0x65,0x61,0x73,0x65,0x20,0x74,0x68,0x65,0x20,0x68,0x65,0x61,0x6c,0x74,0x68,
- 0x20,0x62,0x61,0x72,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,
- 0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x44,0x0,0x6f,0x0,0x6d,0x0,
- 0x79,0x1,0x5b,0x0,0x6c,0x0,0x6e,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x7,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x9,0x43,
- 0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x5a,
- 0x0,0x6e,0x0,0x69,0x0,0x73,0x0,0x7a,0x0,0x63,0x0,0x7a,0x0,0x20,0x0,0x74,
- 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0xf3,0x0,0x64,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x44,0x65,0x73,0x74,0x72,0x6f,
- 0x79,0x20,0x74,0x68,0x69,0x73,0x20,0x70,0x69,0x65,0x63,0x65,0x20,0x6f,0x66,0x20,
- 0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,
- 0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xa6,0x0,0x57,0x0,0x79,
- 0x1,0x5b,0x0,0x77,0x0,0x69,0x0,0x65,0x0,0x74,0x0,0x6c,0x0,0x20,0x0,0x6e,
- 0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,
- 0x0,0x72,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x65,0x0,0x20,0x0,0x6b,0x0,0x73,
- 0x0,0x79,0x0,0x77,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x6c,0x0,0x61,
- 0x0,0x20,0x0,0x77,0x0,0x73,0x0,0x7a,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x6b,
- 0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x75,0x1,0x7c,0x0,0x79,0x0,0x74,
- 0x0,0x6b,0x0,0x6f,0x0,0x77,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0xf3,0x0,0x77,
- 0x0,0x2c,0x0,0x20,0x0,0x67,0x0,0x64,0x0,0x79,0x0,0x20,0x0,0x6a,0x0,0x65,
- 0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x7a,0x0,0x61,
- 0x0,0x7a,0x0,0x6e,0x0,0x61,0x0,0x63,0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0,0x65,
- 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x38,0x44,0x69,0x73,0x70,
- 0x6c,0x61,0x79,0x20,0x63,0x75,0x73,0x74,0x6f,0x6d,0x69,0x7a,0x65,0x64,0x20,0x73,
- 0x68,0x6f,0x77,0x6e,0x61,0x6d,0x65,0x73,0x20,0x66,0x6f,0x72,0x20,0x61,0x6c,0x6c,
- 0x20,0x75,0x73,0x65,0x72,0x73,0x20,0x77,0x68,0x65,0x6e,0x20,0x63,0x68,0x65,0x63,
- 0x6b,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x72,0x0,0x57,0x0,0x79,0x1,0x5b,0x0,0x77,
- 0x0,0x69,0x0,0x65,0x0,0x74,0x0,0x6c,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x73,
- 0x0,0x74,0x1,0x19,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x65,
- 0x0,0x72,0x0,0xf3,0x0,0x77,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x74,
- 0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x6b,0x0,0x74,0x0,0xf3,
- 0x0,0x72,0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x63,
- 0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x7a,0x0,0x6d,0x0,0x75,0x0,0x74,
- 0x0,0x6f,0x0,0x77,0x0,0x61,0x1,0x7,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x37,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x74,0x68,0x65,0x20,
- 0x6c,0x69,0x73,0x74,0x20,0x6f,0x66,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,
- 0x72,0x20,0x66,0x6f,0x6c,0x64,0x65,0x72,0x73,0x20,0x79,0x6f,0x75,0x20,0x77,0x69,
- 0x73,0x68,0x20,0x74,0x6f,0x20,0x6d,0x75,0x74,0x65,0x2e,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x56,0x0,
- 0x57,0x0,0x79,0x1,0x5b,0x0,0x77,0x0,0x69,0x0,0x65,0x0,0x74,0x0,0x6c,0x0,
- 0x20,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x74,0x1,0x19,0x0,0x20,0x0,0x70,0x0,
- 0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x20,0x0,0x64,0x0,
- 0x6f,0x0,0x20,0x0,0x73,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x6f,0x0,0x77,0x0,
- 0x61,0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x69,0x1,0x19,0x0,
- 0x20,0x0,0x7a,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2c,0x44,
- 0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x74,0x68,0x65,0x20,0x6c,0x69,0x73,0x74,0x20,
- 0x6f,0x66,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x73,0x20,0x74,0x6f,
- 0x20,0x70,0x61,0x69,0x72,0x20,0x77,0x69,0x74,0x68,0x2e,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xd6,0x0,
- 0x47,0x0,0x64,0x0,0x79,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x74,0x0,
- 0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x7a,0x0,0x6e,0x0,
- 0x61,0x0,0x63,0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,
- 0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x64,0x0,0x67,0x0,0x72,0x0,
- 0x79,0x0,0x77,0x0,0x61,0x0,0x20,0x0,0x64,0x1,0x7a,0x0,0x77,0x0,0x69,0x1,
- 0x19,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x77,0x0,0x79,0x1,
- 0x42,0x1,0x5,0x0,0x63,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x66,0x0,
- 0x65,0x0,0x6b,0x0,0x74,0x0,0x20,0x0,0x6d,0x0,0x69,0x0,0x67,0x0,0x61,0x0,
- 0x6a,0x1,0x5,0x0,0x63,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x20,0x0,0x6f,0x0,
- 0x6b,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x6b,0x0,0x61,0x0,0x2c,0x0,0x20,0x0,
- 0x67,0x0,0x64,0x0,0x79,0x0,0x20,0x0,0x6b,0x0,0x74,0x0,0x6f,0x1,0x5b,0x0,
- 0x20,0x0,0x77,0x0,0x65,0x0,0x7a,0x0,0x77,0x0,0x69,0x0,0x65,0x0,0x20,0x0,
- 0x6d,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,
- 0x72,0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x71,0x44,
- 0x6f,0x20,0x6e,0x6f,0x74,0x20,0x6c,0x69,0x73,0x74,0x65,0x6e,0x20,0x74,0x6f,0x20,
- 0x6d,0x6f,0x64,0x20,0x63,0x61,0x6c,0x6c,0x73,0x20,0x77,0x68,0x65,0x6e,0x20,0x63,
- 0x68,0x65,0x63,0x6b,0x65,0x64,0x2c,0x20,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x69,
- 0x6e,0x67,0x20,0x74,0x68,0x65,0x6d,0x20,0x66,0x72,0x6f,0x6d,0x20,0x70,0x6c,0x61,
- 0x79,0x69,0x6e,0x67,0x20,0x73,0x6f,0x75,0x6e,0x64,0x73,0x20,0x6f,0x72,0x20,0x66,
- 0x6f,0x63,0x75,0x73,0x69,0x6e,0x67,0x20,0x61,0x74,0x74,0x65,0x6e,0x74,0x69,0x6f,
- 0x6e,0x20,0x6f,0x6e,0x20,0x74,0x68,0x65,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0x34,0x0,0x43,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x63,0x0,0x68,
- 0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x70,
- 0x0,0x69,0x0,0x73,0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x7a,0x0,0x6d,0x0,0x69,
- 0x0,0x61,0x0,0x6e,0x0,0x79,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x21,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,
- 0x20,0x73,0x61,0x76,0x65,0x20,0x79,0x6f,0x75,0x72,0x20,0x63,0x68,0x61,0x6e,0x67,
- 0x65,0x73,0x3f,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x43,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,
- 0x63,0x0,0x68,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x7a,0x0,
- 0x61,0x0,0x74,0x0,0x72,0x0,0x7a,0x0,0x79,0x0,0x6d,0x0,0x61,0x1,0x7,0x0,
- 0x20,0x0,0x7a,0x0,0x6d,0x0,0x69,0x0,0x61,0x0,0x6e,0x0,0x79,0x0,0x3f,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,
- 0x77,0x69,0x73,0x68,0x20,0x74,0x6f,0x20,0x6b,0x65,0x65,0x70,0x20,0x79,0x6f,0x75,
- 0x72,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x73,0x3f,0x7,0x0,0x0,0x0,0x9,0x43,
- 0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x45,
- 0x0,0x64,0x0,0x79,0x0,0x74,0x0,0x75,0x0,0x6a,0x0,0x20,0x0,0x74,0x0,0x65,
- 0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0xf3,0x0,0x64,0x0,0x2e,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1c,0x45,0x64,0x69,0x74,0x20,0x74,
- 0x68,0x69,0x73,0x20,0x70,0x69,0x65,0x63,0x65,0x20,0x6f,0x66,0x20,0x65,0x76,0x69,
- 0x64,0x65,0x6e,0x63,0x65,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x42,0x1,0x42,0x1,0x5,
- 0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x45,0x72,0x72,0x6f,
- 0x72,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,
- 0x3,0x0,0x0,0x0,0x3a,0x0,0x44,0x0,0x6f,0x0,0x77,0x0,0x6f,0x0,0x64,0x0,
- 0x79,0x0,0x20,0x0,0x7a,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x1,0x42,0x0,
- 0x79,0x0,0x20,0x0,0x7a,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x79,0x0,0x66,0x0,
- 0x69,0x0,0x6b,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x2e,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x76,0x69,0x64,0x65,0x6e,0x63,
- 0x65,0x20,0x68,0x61,0x73,0x20,0x62,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x64,0x69,0x66,
- 0x69,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x52,0x0,0x6f,0x0,0x7a,0x0,0x77,
- 0x0,0x69,0x1,0x44,0x0,0x20,0x0,0x57,0x0,0x73,0x0,0x7a,0x0,0x79,0x0,0x73,
- 0x0,0x74,0x0,0x6b,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x4b,0x0,0x61,0x0,0x74,
- 0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x65,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x15,0x45,0x78,0x70,0x61,0x6e,0x64,0x20,0x41,0x6c,0x6c,
- 0x20,0x43,0x61,0x74,0x65,0x67,0x6f,0x72,0x69,0x65,0x73,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,
- 0x53,0x0,0x74,0x0,0x6f,0x0,0x70,0x0,0x6e,0x0,0x69,0x0,0x6f,0x0,0x77,0x0,
- 0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x67,0x1,0x42,0x0,0x6f,0x0,
- 0x73,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x7,0x46,0x61,0x64,0x65,0x20,0x49,0x6e,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x26,
- 0x0,0x57,0x0,0x79,0x0,0x63,0x0,0x69,0x0,0x73,0x0,0x7a,0x0,0x61,0x0,0x6a,
- 0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x70,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x64,
- 0x0,0x6e,0x0,0x69,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,
- 0x46,0x61,0x64,0x65,0x20,0x4f,0x75,0x74,0x20,0x50,0x72,0x65,0x76,0x69,0x6f,0x75,
- 0x73,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,
- 0x3,0x0,0x0,0x0,0xc,0x0,0x4f,0x0,0x64,0x0,0x77,0x0,0x72,0x0,0xf3,0x1,
- 0x7,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x6c,0x69,0x70,0x7,
- 0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,
- 0x0,0x0,0x34,0x0,0x47,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x6f,0x0,
- 0x77,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,
- 0x73,0x0,0x74,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x3a,0x0,0xa,0x0,0x25,0x0,
- 0x31,0x0,0x2f,0x0,0x25,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x17,0x47,0x65,0x6e,0x65,0x72,0x61,0x74,0x69,0x6e,0x67,0x20,0x63,0x68,0x61,0x72,
- 0x73,0x3a,0xa,0x25,0x31,0x2f,0x25,0x32,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,
- 0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4e,0x0,0x61,
- 0x0,0x20,0x0,0x53,0x1,0x42,0x0,0x75,0x1,0x7c,0x0,0x62,0x0,0x69,0x0,0x65,
- 0x0,0x20,0x0,0x28,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x5,0x47,0x75,0x61,0x72,0x64,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xc,0x0,
- 0x57,0x0,0x69,0x0,0x6e,0x0,0x6e,0x0,0x79,0x0,0x21,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x7,0x47,0x75,0x69,0x6c,0x74,0x79,0x21,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x12,
- 0x0,0x5a,0x0,0x41,0x0,0x43,0x0,0x5a,0x0,0x45,0x0,0x4b,0x0,0x41,0x0,0x4a,
- 0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x48,0x4f,0x4c,0x44,
- 0x20,0x49,0x54,0x21,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x5a,0x0,0x61,0x0,0x63,0x0,0x7a,
- 0x0,0x65,0x0,0x6b,0x0,0x61,0x0,0x6a,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x8,0x48,0x6f,0x6c,0x64,0x20,0x49,0x74,0x21,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xec,
- 0x0,0x4a,0x0,0x65,0x1,0x5b,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x72,
- 0x0,0x7a,0x0,0x65,0x0,0x64,0x0,0x2d,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x6d,
- 0x0,0x61,0x0,0x63,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x73,
- 0x0,0x74,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x7a,0x0,0x6e,0x0,0x61,0x0,0x63,
- 0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x2c,0x0,0x20,0x0,0x77,0x0,0x79,
- 0x1,0x5b,0x0,0x77,0x0,0x69,0x0,0x65,0x0,0x74,0x0,0x6c,0x0,0x20,0x0,0x77,
- 0x0,0x70,0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x74,
- 0x0,0x65,0x0,0x6b,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x74,
- 0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x6d,0x0,0x69,0x0,0x61,0x0,0x73,0x0,0x74,
- 0x0,0x6f,0x0,0x77,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x64,
- 0x0,0x6e,0x0,0x6f,0x0,0x63,0x0,0x7a,0x0,0x65,0x1,0x5b,0x0,0x6e,0x0,0x69,
- 0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x63,0x0,0x7a,0x0,0x61,
- 0x0,0x73,0x0,0x20,0x0,0x6f,0x0,0x64,0x0,0x67,0x0,0x72,0x0,0x79,0x0,0x77,
- 0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x69,
- 0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x6a,0x0,0x69,0x0,0x2e,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x5e,0x49,0x66,0x20,0x70,0x72,0x65,0x61,0x6e,0x69,0x6d,
- 0x20,0x69,0x73,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2c,0x20,0x64,0x69,0x73,
- 0x70,0x6c,0x61,0x79,0x20,0x74,0x68,0x65,0x20,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,
- 0x65,0x78,0x74,0x20,0x69,0x6d,0x6d,0x65,0x64,0x69,0x61,0x74,0x65,0x6c,0x79,0x20,
- 0x61,0x73,0x20,0x74,0x68,0x65,0x20,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,
- 0x20,0x70,0x6c,0x61,0x79,0x73,0x20,0x63,0x6f,0x6e,0x63,0x75,0x72,0x72,0x65,0x6e,
- 0x74,0x6c,0x79,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,
- 0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x28,0x0,0x2a,0x0,0x2e,0x0,0x70,0x0,0x6e,
- 0x0,0x67,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x49,0x6d,
- 0x61,0x67,0x65,0x73,0x20,0x28,0x2a,0x2e,0x70,0x6e,0x67,0x29,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x1c,
- 0x0,0x4e,0x0,0x61,0x0,0x74,0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x6d,0x0,0x69,
- 0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x77,0x0,0x65,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x9,0x49,0x6d,0x6d,0x65,0x64,0x69,0x61,0x74,0x65,0x7,
- 0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,
- 0x0,0x0,0x28,0x0,0x5a,0x0,0x77,0x0,0x69,0x1,0x19,0x0,0x6b,0x0,0x73,0x0,
- 0x7a,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x6b,0x0,0x20,0x1,
- 0x7c,0x0,0x79,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x18,0x49,0x6e,0x63,0x72,0x65,0x61,0x73,0x65,0x20,0x74,0x68,
- 0x65,0x20,0x68,0x65,0x61,0x6c,0x74,0x68,0x20,0x62,0x61,0x72,0x2e,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0x22,0x0,0x50,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x69,0x0,
- 0x6e,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x2a,0x0,0x2e,0x0,0x69,0x0,0x6e,0x0,
- 0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x49,0x6e,0x69,
- 0x20,0x46,0x69,0x6c,0x65,0x73,0x20,0x28,0x2a,0x2e,0x69,0x6e,0x69,0x29,0x7,0x0,
- 0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,
- 0x0,0xd4,0x0,0x50,0x0,0x6f,0x0,0x7a,0x0,0x77,0x0,0x61,0x0,0x6c,0x0,0x61,
- 0x0,0x20,0x0,0x63,0x0,0x69,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x72,0x0,0x7a,
- 0x0,0x79,0x0,0x6d,0x0,0x79,0x0,0x77,0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x6b,
- 0x0,0x6f,0x0,0x6d,0x0,0x75,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x74,
- 0x0,0x79,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x70,0x0,0x72,0x0,0x61,
- 0x0,0x77,0x0,0x2c,0x0,0x20,0x0,0x67,0x0,0x64,0x0,0x79,0x0,0x20,0x0,0x77,
- 0x1,0x42,0x1,0x5,0x0,0x63,0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x2e,
- 0x0,0xa,0x0,0x28,0x0,0x4d,0x0,0x6f,0x1,0x7c,0x0,0x65,0x0,0x73,0x0,0x7a,
- 0x0,0x20,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x77,0x0,0x69,0x1,0x7,
- 0x0,0x20,0x0,0x73,0x0,0x77,0x0,0x6f,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x70,
- 0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x63,
- 0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x77,0x0,0x20,0x0,0x55,0x0,0x73,0x0,0x74,
- 0x0,0x61,0x0,0x77,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x63,
- 0x0,0x68,0x0,0x21,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5a,
- 0x4c,0x65,0x74,0x73,0x20,0x79,0x6f,0x75,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,
- 0x20,0x63,0x61,0x73,0x65,0x20,0x61,0x6c,0x65,0x72,0x74,0x73,0x20,0x77,0x68,0x65,
- 0x6e,0x20,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x2e,0xa,0x28,0x59,0x6f,0x75,0x20,
- 0x63,0x61,0x6e,0x20,0x73,0x65,0x74,0x20,0x79,0x6f,0x75,0x72,0x20,0x70,0x72,0x65,
- 0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,
- 0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x21,0x29,0x7,0x0,0x0,0x0,0x9,0x43,
- 0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x5a,
- 0x0,0x61,0x1,0x42,0x0,0x61,0x0,0x64,0x0,0x75,0x0,0x6a,0x0,0x20,0x0,0x64,
- 0x0,0x6f,0x0,0x77,0x0,0x6f,0x0,0x64,0x0,0x79,0x0,0x20,0x0,0x7a,0x0,0x20,
- 0x0,0x70,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x2e,0x0,0x69,
- 0x0,0x6e,0x0,0x69,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x20,
- 0x4c,0x6f,0x61,0x64,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x66,0x72,
- 0x6f,0x6d,0x20,0x61,0x6e,0x20,0x2e,0x69,0x6e,0x69,0x20,0x66,0x69,0x6c,0x65,0x2e,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0x28,0x0,0x44,0x0,0x7a,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x6e,
- 0x0,0x69,0x0,0x6b,0x0,0x20,0x0,0x69,0x0,0x64,0x0,0x7a,0x0,0x69,0x0,0x65,
- 0x0,0x20,0x0,0x77,0x0,0x20,0x0,0x64,0x0,0xf3,0x1,0x42,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0xd,0x4c,0x6f,0x67,0x20,0x67,0x6f,0x65,0x73,0x20,0x64,
- 0x6f,0x77,0x6e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x44,0x0,0x7a,0x0,0x69,0x0,0x65,0x0,
- 0x6e,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x20,0x0,0x69,0x0,0x64,0x0,0x7a,0x0,
- 0x69,0x0,0x65,0x0,0x20,0x0,0x77,0x0,0x20,0x0,0x67,0x0,0xf3,0x0,0x72,0x1,
- 0x19,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x4c,0x6f,0x67,0x20,0x67,
- 0x6f,0x65,0x73,0x20,0x75,0x70,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4c,0x0,0x6f,0x0,0x67,
- 0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6e,
- 0x0,0x69,0x0,0x65,0x0,0x75,0x0,0x64,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x2e,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4c,0x6f,0x67,0x69,0x6e,0x20,
- 0x75,0x6e,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x2e,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0xff,0xff,0xff,
- 0xff,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4d,0x61,0x73,0x74,0x65,
- 0x72,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,
- 0x3,0x0,0x0,0x0,0x12,0x0,0x57,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,
- 0x6d,0x0,0x6f,0x1,0x5b,0x1,0x7,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x7,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,
- 0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x7e,0x0,0x4f,0x0,0x64,
- 0x0,0x62,0x0,0x69,0x0,0x6a,0x0,0x20,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x74,
- 0x0,0x72,0x0,0x7a,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x65,
- 0x0,0x6d,0x0,0x6f,0x0,0x74,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x74,0x0,0x77,
- 0x0,0x6f,0x0,0x6a,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,
- 0x0,0x74,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x67,0x0,0x64,
- 0x0,0x79,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x74,
- 0x0,0x6f,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x7a,0x0,0x6e,0x0,0x61,0x0,0x63,
- 0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x2c,0x4d,0x69,0x72,0x72,0x6f,0x72,0x20,0x79,0x6f,0x75,0x72,0x20,
- 0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x27,0x73,0x20,0x65,0x6d,0x6f,0x74,
- 0x65,0x73,0x20,0x77,0x68,0x65,0x6e,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2e,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0xc,0x0,0x4d,0x0,0x75,0x0,0x7a,0x0,0x79,0x0,0x6b,0x0,0x61,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x4d,0x75,0x73,0x69,0x63,0x7,
- 0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,
- 0x0,0x0,0xa,0x0,0x4e,0x0,0x61,0x0,0x7a,0x0,0x77,0x0,0x61,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e,0x61,0x6d,0x65,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x38,0x0,
- 0x4e,0x0,0x61,0x0,0x7a,0x0,0x77,0x0,0x61,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,
- 0x31,0x0,0xa,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x3a,0x0,
- 0x20,0x0,0x25,0x0,0x32,0x0,0xa,0x0,0x4f,0x0,0x70,0x0,0x69,0x0,0x73,0x0,
- 0x3a,0x0,0xa,0x0,0x25,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x22,0x4e,0x61,0x6d,0x65,0x3a,0x20,0x25,0x31,0xa,0x49,0x6d,0x61,0x67,0x65,0x3a,
- 0x20,0x25,0x32,0xa,0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3a,
- 0xa,0x25,0x33,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0x52,0x0,0x50,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,
- 0x6a,0x0,0x64,0x1,0x7a,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x25,0x0,
- 0x31,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x62,0x0,0x79,0x0,0x20,0x0,0x64,0x0,
- 0x6f,0x0,0x6a,0x1,0x5b,0x1,0x7,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,
- 0x64,0x0,0x6f,0x0,0x6b,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,
- 0x75,0x0,0x20,0x0,0x43,0x0,0x4d,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x1e,0x4e,0x61,0x76,0x69,0x67,0x61,0x74,0x65,0x20,0x74,0x6f,0x20,0x25,
- 0x31,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x65,0x20,0x43,0x4d,0x20,0x64,0x6f,0x63,
- 0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,
- 0x3,0x0,0x0,0x0,0x6,0x0,0x4e,0x0,0x69,0x0,0x63,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x4,0x4e,0x6f,0x6e,0x65,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,
- 0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x53,0x0,
- 0x50,0x0,0x52,0x0,0x5a,0x0,0x45,0x0,0x43,0x0,0x49,0x0,0x57,0x0,0x21,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x4f,0x42,0x4a,0x45,0x43,0x54,0x49,
- 0x4f,0x4e,0x21,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x53,0x0,0x70,0x0,0x72,0x0,0x7a,0x0,
- 0x65,0x0,0x63,0x0,0x69,0x0,0x77,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0xa,0x4f,0x62,0x6a,0x65,0x63,0x74,0x69,0x6f,0x6e,0x21,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0x2c,0x0,0x55,0x0,0x70,0x0,0x73,0x0,0x2c,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,
- 0x73,0x0,0x74,0x0,0x65,0x1,0x5b,0x0,0x20,0x0,0x7a,0x0,0x6d,0x0,0x75,0x0,
- 0x74,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x79,0x0,0x21,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4f,0x6f,0x70,0x73,0x2c,0x20,0x79,0x6f,0x75,
- 0x27,0x72,0x65,0x20,0x6d,0x75,0x74,0x65,0x64,0x21,0x7,0x0,0x0,0x0,0x9,0x43,
- 0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4f,
- 0x0,0x74,0x0,0x77,0x0,0xf3,0x0,0x72,0x0,0x7a,0x0,0x20,0x0,0x65,0x0,0x6b,
- 0x0,0x77,0x0,0x69,0x0,0x70,0x0,0x75,0x0,0x6e,0x0,0x65,0x0,0x6b,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x20,0x49,0x6e,0x76,
- 0x65,0x6e,0x74,0x6f,0x72,0x79,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x48,0x0,0x61,0x0,0x73,
- 0x1,0x42,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x50,0x61,
- 0x73,0x73,0x77,0x6f,0x72,0x64,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x5a,0x0,0x61,0x0,0x68,
- 0x0,0x61,0x0,0x73,0x1,0x42,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x79,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x50,0x61,0x73,0x73,0x77,0x6f,
- 0x72,0x64,0x65,0x64,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x57,0x1,0x42,0x1,0x5,0x0,0x63,
- 0x0,0x7a,0x0,0x20,0x0,0x4c,0x0,0x6f,0x0,0x73,0x0,0x6f,0x0,0x77,0x1,0x5,
- 0x0,0x20,0x0,0x50,0x0,0x69,0x0,0x6f,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x6b,
- 0x1,0x19,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x50,0x6c,0x61,0x79,
- 0x20,0x52,0x61,0x6e,0x64,0x6f,0x6d,0x20,0x53,0x6f,0x6e,0x67,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xa6,
- 0x0,0x4f,0x0,0x64,0x0,0x65,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6a,0x0,0x20,
- 0x0,0x70,0x0,0x6f,0x0,0x6a,0x0,0x65,0x0,0x64,0x0,0x79,0x1,0x44,0x0,0x63,
- 0x0,0x7a,0x1,0x5,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x61,
- 0x0,0x63,0x0,0x6a,0x1,0x19,0x0,0x2c,0x0,0x20,0x0,0x6a,0x0,0x61,0x0,0x6b,
- 0x0,0x20,0x0,0x7a,0x0,0x64,0x0,0x65,0x0,0x66,0x0,0x69,0x0,0x6e,0x0,0x69,
- 0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x72,
- 0x0,0x7a,0x0,0x65,0x0,0x7a,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x74,
- 0x0,0x6b,0x1,0x19,0x0,0x2c,0x0,0x20,0x0,0x67,0x0,0x64,0x0,0x79,0x0,0x20,
- 0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,
- 0x0,0x7a,0x0,0x61,0x0,0x7a,0x0,0x6e,0x0,0x61,0x0,0x63,0x0,0x7a,0x0,0x6f,
- 0x0,0x6e,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x42,
- 0x50,0x6c,0x61,0x79,0x20,0x61,0x20,0x73,0x69,0x6e,0x67,0x6c,0x65,0x2d,0x73,0x68,
- 0x6f,0x74,0x20,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x20,0x61,0x73,0x20,
- 0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x20,0x62,0x79,0x20,0x74,0x68,0x65,0x20,0x65,
- 0x6d,0x6f,0x74,0x65,0x20,0x77,0x68,0x65,0x6e,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,
- 0x64,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,
- 0x1,0x3,0x0,0x0,0x0,0xc2,0x0,0x5a,0x0,0x61,0x0,0x67,0x0,0x72,0x0,0x61,
- 0x0,0x6a,0x0,0x20,0x0,0x64,0x1,0x7a,0x0,0x77,0x0,0x69,0x1,0x19,0x0,0x6b,
- 0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,
- 0x0,0x63,0x0,0x6a,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x61,0x0,0x6e,
- 0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x6a,0x1,0x19,0x0,0x20,0x0,0x77,
- 0x0,0x20,0x0,0x6f,0x0,0x6b,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x70,
- 0x0,0x6f,0x0,0x64,0x0,0x63,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x6e,
- 0x0,0x61,0x0,0x73,0x0,0x74,0x1,0x19,0x0,0x70,0x0,0x6e,0x0,0x65,0x0,0x6a,
- 0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x6d,0x0,0x6f,
- 0x1,0x5b,0x0,0x63,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x67,0x0,0x64,0x0,0x79,
- 0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x6f,
- 0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x7a,0x0,0x6e,0x0,0x61,0x0,0x63,0x0,0x7a,
- 0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x5d,0x50,0x6c,0x61,0x79,0x20,0x72,0x65,0x61,0x6c,0x69,0x7a,0x61,0x74,0x69,
- 0x6f,0x6e,0x20,0x73,0x6f,0x75,0x6e,0x64,0x20,0x61,0x6e,0x64,0x20,0x61,0x6e,0x69,
- 0x6d,0x61,0x74,0x69,0x6f,0x6e,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x76,0x69,
- 0x65,0x77,0x70,0x6f,0x72,0x74,0x20,0x6f,0x6e,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,
- 0x78,0x74,0x20,0x73,0x70,0x6f,0x6b,0x65,0x6e,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,
- 0x65,0x20,0x77,0x68,0x65,0x6e,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2e,0x7,
- 0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,
- 0x0,0x0,0xc,0x0,0x70,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x64,0x0,0x2d,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x50,0x72,0x65,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x10,
- 0x0,0x41,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x6a,0x0,0x61,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x50,0x72,0x65,0x61,0x6e,0x69,
- 0x6d,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,
- 0x3,0x0,0x0,0x0,0x88,0x0,0x5a,0x0,0x61,0x0,0x70,0x0,0x72,0x0,0x65,0x0,
- 0x7a,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x75,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,
- 0x7a,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,
- 0x77,0x0,0xf3,0x0,0x64,0x0,0x20,0x0,0x6b,0x0,0x61,0x1,0x7c,0x0,0x64,0x0,
- 0x65,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x63,0x0,
- 0x7a,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x74,0x0,0x77,0x0,0x6f,0x0,0x6a,0x0,
- 0x65,0x0,0x6a,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x73,0x0,0x74,0x1,0x19,0x0,
- 0x70,0x0,0x6e,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x61,0x0,
- 0x64,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x1,0x5b,0x0,0x63,0x0,0x69,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x46,0x50,0x72,0x65,0x73,0x65,0x6e,0x74,0x20,0x74,
- 0x68,0x69,0x73,0x20,0x70,0x69,0x65,0x63,0x65,0x20,0x6f,0x66,0x20,0x65,0x76,0x69,
- 0x64,0x65,0x6e,0x63,0x65,0x20,0x74,0x6f,0x20,0x65,0x76,0x65,0x72,0x79,0x6f,0x6e,
- 0x65,0x20,0x6f,0x6e,0x20,0x79,0x6f,0x75,0x72,0x20,0x6e,0x65,0x78,0x74,0x20,0x73,
- 0x70,0x6f,0x6b,0x65,0x6e,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0xc,0x0,0x50,0x0,0x6f,0x0,0x77,0x0,0xf3,0x0,0x64,0x0,0x3a,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x52,0x65,0x61,0x73,0x6f,0x6e,0x3a,0x7,0x0,
- 0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,
- 0x0,0x90,0x0,0x4f,0x0,0x64,0x1,0x5b,0x0,0x77,0x0,0x69,0x0,0x65,0x1,0x7c,
- 0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x74,0x0,0x79,0x0,0x77,0x0,0x20,0x0,0x69,
- 0x0,0x20,0x0,0x75,0x0,0x61,0x0,0x6b,0x0,0x74,0x0,0x75,0x0,0x61,0x0,0x6c,
- 0x0,0x6e,0x0,0x69,0x0,0x6a,0x0,0x20,0x0,0x77,0x0,0x73,0x0,0x7a,0x0,0x79,
- 0x0,0x73,0x0,0x74,0x0,0x6b,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6c,
- 0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x79,0x0,0x20,0x0,0x69,
- 0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0x65,0x0,0x6a,0x0,0x73,
- 0x0,0x75,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x62,0x0,0x79,0x0,0x20,0x0,0x64,
- 0x0,0x6f,0x0,0x70,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x77,0x0,0x61,0x1,0x7,
- 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3d,0x52,0x65,0x66,0x72,
- 0x65,0x73,0x68,0x20,0x74,0x68,0x65,0x20,0x74,0x68,0x65,0x6d,0x65,0x20,0x61,0x6e,
- 0x64,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x61,0x6c,0x6c,0x20,0x6f,0x66,0x20,
- 0x74,0x68,0x65,0x20,0x75,0x69,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x20,
- 0x74,0x6f,0x20,0x6d,0x61,0x74,0x63,0x68,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,
- 0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4f,0x0,
- 0x64,0x1,0x5b,0x0,0x77,0x0,0x69,0x0,0x65,0x1,0x7c,0x0,0x20,0x0,0x6d,0x0,
- 0x6f,0x0,0x74,0x0,0x79,0x0,0x77,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0xc,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20,0x74,0x68,0x65,0x6d,0x65,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0x9e,0x0,0x55,0x0,0x73,0x0,0x75,0x1,0x44,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,
- 0x65,0x0,0x63,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x7a,0x0,
- 0x6e,0x0,0x61,0x0,0x63,0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,
- 0x69,0x0,0x6e,0x0,0x69,0x0,0x73,0x0,0x77,0x0,0x61,0x0,0x70,0x0,0x20,0x0,
- 0x7a,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x79,0x0,0x20,0x0,
- 0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x77,0x0,0x72,0x0,0xf3,0x1,0x7,0x0,
- 0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x69,0x0,0x65,0x0,0x72,0x0,
- 0x77,0x0,0x6f,0x0,0x74,0x0,0x6e,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x20,0x0,
- 0x66,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x20,0x0,
- 0x70,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x2e,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x60,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,
- 0x74,0x68,0x65,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x6c,0x79,0x20,0x73,0x65,
- 0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x69,0x6e,0x69,0x73,0x77,0x61,0x70,0x20,0x66,
- 0x72,0x6f,0x6d,0x20,0x74,0x68,0x65,0x20,0x6c,0x69,0x73,0x74,0x20,0x61,0x6e,0x64,
- 0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x6f,
- 0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,
- 0x72,0x20,0x66,0x6f,0x6c,0x64,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,
- 0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x54,0x0,0x57,0x0,
- 0x79,0x0,0x63,0x0,0x6f,0x0,0x66,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x6f,0x0,
- 0x62,0x0,0x65,0x0,0x63,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,
- 0x7a,0x0,0x6e,0x0,0x61,0x0,0x63,0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0,0x79,0x0,
- 0x20,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x20,0x0,0x64,0x1,
- 0x7a,0x0,0x77,0x0,0x69,0x1,0x19,0x0,0x6b,0x0,0x6f,0x0,0x77,0x0,0x79,0x0,
- 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x52,0x65,0x6d,0x6f,0x76,
- 0x65,0x20,0x74,0x68,0x65,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x6c,0x79,0x20,
- 0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x73,0x6f,0x75,0x6e,0x64,0x20,0x65,
- 0x66,0x66,0x65,0x63,0x74,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x54,0x0,0x5a,0x0,0x61,0x1,0x7c,
- 0x1,0x5,0x0,0x64,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x75,0x0,0x77,0x0,0x61,
- 0x0,0x67,0x1,0x19,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x72,
- 0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x62,
- 0x0,0x65,0x0,0x63,0x0,0x6e,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x20,0x0,0x73,
- 0x0,0x65,0x0,0x72,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x2e,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x38,0x52,0x65,0x71,0x75,0x65,0x73,0x74,0x20,
- 0x74,0x68,0x65,0x20,0x61,0x74,0x74,0x65,0x6e,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x66,
- 0x20,0x74,0x68,0x65,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x73,0x65,0x72,
- 0x76,0x65,0x72,0x27,0x73,0x20,0x6d,0x6f,0x64,0x65,0x72,0x61,0x74,0x6f,0x72,0x2e,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0x78,0x0,0x5a,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,
- 0x0,0x75,0x0,0x6a,0x0,0x20,0x0,0x74,0x0,0x77,0x0,0x6f,0x0,0x6a,0x0,0x65,
- 0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x0,0x63,0x0,0x6e,0x0,0x69,
- 0x0,0x63,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x74,0x1,0x42,0x0,0x6f,0x0,0x20,
- 0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x20,
- 0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x6d,0x0,0x79,0x1,0x5b,
- 0x0,0x6c,0x0,0x6e,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x77,0x0,0x61,0x0,0x72,
- 0x0,0x74,0x0,0x6f,0x1,0x5b,0x0,0x63,0x0,0x69,0x0,0x2e,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x3f,0x52,0x65,0x73,0x65,0x74,0x20,0x79,0x6f,0x75,0x72,
- 0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x27,0x73,0x20,0x73,0x75,0x70,
- 0x70,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x61,0x72,0x79,0x20,0x62,0x61,0x63,0x6b,0x67,
- 0x72,0x6f,0x75,0x6e,0x64,0x20,0x74,0x6f,0x20,0x69,0x74,0x73,0x20,0x64,0x65,0x66,
- 0x61,0x75,0x6c,0x74,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,
- 0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x57,0x0,0x72,0x0,0xf3,0x1,
- 0x7,0x0,0x20,0x0,0x7a,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x77,0x0,0x72,0x0,
- 0x6f,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,
- 0x6c,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x79,0x0,0x20,0x0,0x73,0x0,0x65,0x0,
- 0x72,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0xf3,0x0,0x77,0x0,0x2e,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x1f,0x52,0x65,0x74,0x75,0x72,0x6e,0x20,0x62,0x61,
- 0x63,0x6b,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x72,0x76,0x65,0x72,
- 0x20,0x6c,0x69,0x73,0x74,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x5a,0x0,0x61,0x0,0x70,
- 0x0,0x69,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x65,0x0,0x6b,0x0,0x77,0x0,0x69,
- 0x0,0x70,0x0,0x75,0x0,0x6e,0x0,0x65,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0xe,0x53,0x61,0x76,0x65,0x20,0x49,0x6e,0x76,0x65,0x6e,0x74,0x6f,
- 0x72,0x79,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,
- 0x1,0x3,0x0,0x0,0x0,0x68,0x0,0x5a,0x0,0x61,0x0,0x70,0x0,0x69,0x0,0x73,
- 0x0,0x7a,0x0,0x20,0x0,0x7a,0x0,0x6d,0x0,0x69,0x0,0x61,0x0,0x6e,0x0,0x79,
- 0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x6f,
- 0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x6f,0x0,0x64,0x0,0x75,0x0,0x20,
- 0x0,0x69,0x0,0x20,0x0,0x77,0x0,0x79,0x1,0x5b,0x0,0x6c,0x0,0x69,0x0,0x6a,
- 0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x73,
- 0x0,0x65,0x0,0x72,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x2e,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x48,0x53,0x61,0x76,0x65,0x20,0x61,0x6e,0x79,
- 0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x73,0x20,0x6d,0x61,0x64,0x65,0x20,0x74,0x6f,
- 0x20,0x74,0x68,0x69,0x73,0x20,0x70,0x69,0x65,0x63,0x65,0x20,0x6f,0x66,0x20,0x65,
- 0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x61,0x6e,0x64,0x20,0x73,0x65,0x6e,0x64,
- 0x20,0x74,0x68,0x65,0x6d,0x20,0x74,0x6f,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x2e,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0x38,0x0,0x5a,0x0,0x61,0x0,0x70,0x0,0x69,0x0,0x73,0x0,0x7a,
- 0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x6f,0x0,0x64,0x0,0x79,0x0,0x20,
- 0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x75,
- 0x0,0x20,0x0,0x2e,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x2e,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x1e,0x53,0x61,0x76,0x65,0x20,0x65,0x76,0x69,0x64,0x65,
- 0x6e,0x63,0x65,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x2e,0x69,0x6e,0x69,0x20,0x66,
- 0x69,0x6c,0x65,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x57,0x0,0x79,0x0,0x73,0x0,0x7a,
- 0x0,0x75,0x0,0x6b,0x0,0x61,0x0,0x6a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x6,0x53,0x65,0x61,0x72,0x63,0x68,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,
- 0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x58,0x0,0x5a,0x0,0x61,
- 0x0,0x7a,0x0,0x6e,0x0,0x61,0x0,0x63,0x0,0x7a,0x0,0x20,0x0,0x70,0x0,0x6f,
- 0x0,0x73,0x0,0x74,0x0,0x61,0x1,0x7,0x0,0x2c,0x0,0x20,0x0,0x7a,0x0,0x20,
- 0x0,0x6b,0x0,0x74,0x0,0xf3,0x0,0x72,0x1,0x5,0x0,0x20,0x0,0x63,0x0,0x68,
- 0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x73,0x0,0x69,0x1,0x19,
- 0x0,0x20,0x0,0x73,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x6f,0x0,0x77,0x0,0x61,
- 0x1,0x7,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x29,0x53,0x65,
- 0x6c,0x65,0x63,0x74,0x20,0x61,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,
- 0x20,0x79,0x6f,0x75,0x20,0x77,0x69,0x73,0x68,0x20,0x74,0x6f,0x20,0x70,0x61,0x69,
- 0x72,0x20,0x77,0x69,0x74,0x68,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x53,0x0,0x65,0x0,
- 0x72,0x0,0x77,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x6,0x53,0x65,0x72,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x2,0x3a,0x0,0x55,0x0,0x73,0x0,
- 0x74,0x0,0x61,0x0,0x77,0x0,0x20,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x6b,0x0,
- 0x74,0x0,0x20,0x0,0x64,0x1,0x7a,0x0,0x77,0x0,0x69,0x1,0x19,0x0,0x6b,0x0,
- 0x6f,0x0,0x77,0x0,0x79,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x7a,0x0,
- 0x61,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x20,0x0,
- 0x64,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x77,0x0,0x6f,0x0,0x6a,0x0,
- 0x65,0x0,0x6a,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x73,0x0,0x74,0x1,0x19,0x0,
- 0x70,0x0,0x6e,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x27,0x0,0x41,0x0,0x6e,0x0,
- 0x69,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x6a,0x0,0x69,0x0,0x27,0x0,0x2e,0x0,
- 0x20,0x0,0x5a,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x77,0x0,0x69,0x0,
- 0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x67,0x0,
- 0x6f,0x0,0x20,0x0,0x6a,0x0,0x61,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,
- 0x6f,0x0,0x6d,0x0,0x79,0x1,0x5b,0x0,0x6c,0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,
- 0x20,0x0,0x75,0x1,0x7c,0x0,0x79,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x64,0x1,
- 0x7a,0x0,0x77,0x0,0x69,0x1,0x19,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x7a,0x0,
- 0x64,0x0,0x65,0x0,0x66,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x6f,0x0,0x77,0x0,
- 0x61,0x0,0x6e,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x72,0x0,
- 0x7a,0x0,0x65,0x0,0x7a,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x74,0x0,
- 0x6b,0x1,0x19,0x0,0x20,0x0,0x28,0x0,0x6a,0x0,0x65,0x1,0x5b,0x0,0x6c,0x0,
- 0x69,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,
- 0x6a,0x0,0x65,0x0,0x29,0x0,0x2e,0x0,0xa,0x0,0x45,0x0,0x64,0x0,0x79,0x0,
- 0x74,0x0,0x75,0x0,0x6a,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x70,0x0,0x72,0x0,
- 0x7a,0x0,0x65,0x0,0x7a,0x0,0x20,0x0,0x77,0x0,0x63,0x0,0x69,0x1,0x5b,0x0,
- 0x6e,0x0,0x69,0x1,0x19,0x0,0x63,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x45,0x0,
- 0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,
- 0x77,0x0,0x70,0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x75,0x0,
- 0x20,0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x2c,0x0,
- 0x20,0x0,0x5b,0x0,0x58,0x0,0x5d,0x0,0x20,0x0,0x61,0x0,0x62,0x0,0x79,0x0,
- 0x20,0x0,0x75,0x0,0x73,0x0,0x75,0x0,0x6e,0x1,0x5,0x1,0x7,0x0,0x2e,0x0,
- 0x20,0x0,0x5a,0x0,0x61,0x0,0x70,0x0,0x69,0x0,0x73,0x0,0x75,0x0,0x6a,0x0,
- 0x65,0x0,0x20,0x0,0x73,0x0,0x69,0x1,0x19,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,
- 0x20,0x0,0x77,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x2f,0x0,
- 0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x65,0x0,
- 0x72,0x0,0x73,0x0,0x2f,0x0,0x3c,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,
- 0x6e,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x3e,0x0,0x2f,0x0,0x73,0x0,0x6f,0x0,
- 0x75,0x0,0x6e,0x0,0x64,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x2e,0x0,
- 0x69,0x0,0x6e,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe1,0x53,
- 0x65,0x74,0x20,0x61,0x20,0x73,0x6f,0x75,0x6e,0x64,0x20,0x65,0x66,0x66,0x65,0x63,
- 0x74,0x20,0x74,0x6f,0x20,0x70,0x6c,0x61,0x79,0x20,0x6f,0x6e,0x20,0x79,0x6f,0x75,
- 0x72,0x20,0x6e,0x65,0x78,0x74,0x20,0x27,0x50,0x72,0x65,0x61,0x6e,0x69,0x6d,0x27,
- 0x2e,0x20,0x4c,0x65,0x61,0x76,0x69,0x6e,0x67,0x20,0x69,0x74,0x20,0x6f,0x6e,0x20,
- 0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x20,0x77,0x69,0x6c,0x6c,0x20,0x75,0x73,0x65,
- 0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x6f,0x74,0x65,0x2d,0x64,0x65,0x66,0x69,0x6e,
- 0x65,0x64,0x20,0x73,0x6f,0x75,0x6e,0x64,0x20,0x28,0x69,0x66,0x20,0x61,0x6e,0x79,
- 0x29,0x2e,0xa,0x45,0x64,0x69,0x74,0x20,0x62,0x79,0x20,0x74,0x79,0x70,0x69,0x6e,
- 0x67,0x20,0x61,0x6e,0x64,0x20,0x70,0x72,0x65,0x73,0x73,0x69,0x6e,0x67,0x20,0x45,
- 0x6e,0x74,0x65,0x72,0x2c,0x20,0x5b,0x58,0x5d,0x20,0x74,0x6f,0x20,0x72,0x65,0x6d,
- 0x6f,0x76,0x65,0x2e,0x20,0x54,0x68,0x69,0x73,0x20,0x73,0x61,0x76,0x65,0x73,0x20,
- 0x74,0x6f,0x20,0x79,0x6f,0x75,0x72,0x20,0x62,0x61,0x73,0x65,0x2f,0x63,0x68,0x61,
- 0x72,0x61,0x63,0x74,0x65,0x72,0x73,0x2f,0x3c,0x63,0x68,0x61,0x72,0x6e,0x61,0x6d,
- 0x65,0x3e,0x2f,0x73,0x6f,0x75,0x6e,0x64,0x6c,0x69,0x73,0x74,0x2e,0x69,0x6e,0x69,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x1,0x9e,0x0,0x55,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x77,0x0,0x20,
- 0x0,0x27,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x73,0x0,0x77,0x0,0x61,0x0,0x70,
- 0x0,0x27,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x62,0x0,0x6f,0x0,0x20,0x0,0x61,
- 0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x61,0x0,0x74,0x0,0x79,
- 0x0,0x77,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x6c,0x0,0x64,
- 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,
- 0x0,0x63,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x62,0x0,0x79,0x0,0x20,
- 0x0,0x6f,0x0,0x64,0x0,0x6e,0x0,0x6f,0x0,0x73,0x0,0x69,0x1,0x42,0x0,0x20,
- 0x0,0x73,0x0,0x69,0x1,0x19,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x74,
- 0x0,0x77,0x0,0x6f,0x0,0x6a,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x6f,0x0,0x62,
- 0x0,0x65,0x0,0x63,0x0,0x6e,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x70,0x0,0x6f,
- 0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x2e,0x0,0xa,0x0,0x45,
- 0x0,0x64,0x0,0x79,0x0,0x74,0x0,0x75,0x0,0x6a,0x0,0x20,0x0,0x70,0x0,0x6f,
- 0x0,0x70,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x7a,0x0,0x20,0x0,0x77,0x0,0x63,
- 0x0,0x69,0x1,0x5b,0x0,0x6e,0x0,0x69,0x1,0x19,0x0,0x63,0x0,0x69,0x0,0x65,
- 0x0,0x20,0x0,0x45,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x70,
- 0x0,0x6f,0x0,0x20,0x0,0x77,0x0,0x70,0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x6e,
- 0x0,0x69,0x0,0x75,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x73,0x0,0x74,
- 0x0,0x75,0x0,0x2c,0x0,0x20,0x0,0x5b,0x0,0x58,0x0,0x5d,0x0,0x20,0x0,0x61,
- 0x0,0x62,0x0,0x79,0x0,0x20,0x0,0x75,0x0,0x73,0x0,0x75,0x0,0x6e,0x1,0x5,
- 0x1,0x7,0x0,0x2e,0x0,0x20,0x0,0x5a,0x0,0x61,0x0,0x70,0x0,0x69,0x0,0x73,
- 0x0,0x75,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x69,0x1,0x19,0x0,0x20,
- 0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x77,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x73,
- 0x0,0x65,0x0,0x2f,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x63,
- 0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x2f,0x0,0x69,0x0,0x6e,0x0,0x69,
- 0x0,0x73,0x0,0x77,0x0,0x61,0x0,0x70,0x0,0x73,0x0,0x2e,0x0,0x69,0x0,0x6e,
- 0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb4,0x53,0x65,0x74,0x20,
- 0x61,0x6e,0x20,0x27,0x69,0x6e,0x69,0x73,0x77,0x61,0x70,0x27,0x2c,0x20,0x6f,0x72,
- 0x20,0x61,0x6e,0x20,0x61,0x6c,0x74,0x65,0x72,0x6e,0x61,0x74,0x69,0x76,0x65,0x20,
- 0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x20,0x66,0x6f,0x6c,0x64,0x65,0x72,
- 0x20,0x74,0x6f,0x20,0x72,0x65,0x66,0x65,0x72,0x20,0x74,0x6f,0x20,0x66,0x72,0x6f,
- 0x6d,0x20,0x79,0x6f,0x75,0x72,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x63,
- 0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x2e,0xa,0x45,0x64,0x69,0x74,0x20,0x62,
- 0x79,0x20,0x74,0x79,0x70,0x69,0x6e,0x67,0x20,0x61,0x6e,0x64,0x20,0x70,0x72,0x65,
- 0x73,0x73,0x69,0x6e,0x67,0x20,0x45,0x6e,0x74,0x65,0x72,0x2c,0x20,0x5b,0x58,0x5d,
- 0x20,0x74,0x6f,0x20,0x72,0x65,0x6d,0x6f,0x76,0x65,0x2e,0x20,0x54,0x68,0x69,0x73,
- 0x20,0x73,0x61,0x76,0x65,0x73,0x20,0x74,0x6f,0x20,0x79,0x6f,0x75,0x72,0x20,0x62,
- 0x61,0x73,0x65,0x2f,0x69,0x6e,0x69,0x73,0x77,0x61,0x70,0x73,0x2e,0x69,0x6e,0x69,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0x8c,0x0,0x55,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x77,0x0,0x20,
- 0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x74,0x0,0x6b,0x1,0x19,0x0,0x20,0x0,0x74,
- 0x0,0x77,0x0,0x6f,0x0,0x6a,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x70,0x0,0x6f,
- 0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x6f,
- 0x0,0x20,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6e,
- 0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x63,0x0,0x7a,
- 0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x73,0x0,0x74,0x1,0x19,
- 0x0,0x70,0x0,0x6e,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x61,
- 0x0,0x64,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x1,0x5b,0x0,0x63,0x0,0x69,0x0,0x2e,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x38,0x53,0x65,0x74,0x20,0x79,0x6f,
- 0x75,0x72,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x27,0x73,0x20,0x65,
- 0x6d,0x6f,0x74,0x65,0x20,0x74,0x6f,0x20,0x70,0x6c,0x61,0x79,0x20,0x6f,0x6e,0x20,
- 0x79,0x6f,0x75,0x72,0x20,0x6e,0x65,0x78,0x74,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,
- 0x65,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,
- 0x1,0x3,0x0,0x0,0x0,0x4e,0x0,0x55,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x77,
- 0x0,0x20,0x0,0x75,0x0,0x7a,0x0,0x75,0x0,0x70,0x0,0x65,0x1,0x42,0x0,0x6e,
- 0x0,0x69,0x0,0x61,0x0,0x6a,0x1,0x5,0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x74,
- 0x1,0x42,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x77,0x0,0x6f,0x0,0x6a,0x0,0x65,
- 0x0,0x6a,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x63,
- 0x0,0x69,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x53,0x65,
- 0x74,0x20,0x79,0x6f,0x75,0x72,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,
- 0x27,0x73,0x20,0x73,0x75,0x70,0x70,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x61,0x72,0x79,
- 0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2e,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x14,
- 0x0,0x55,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x77,0x0,0x69,0x0,0x65,0x0,0x6e,
- 0x0,0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x65,
- 0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x53,0x0,0x66,0x0,0x78,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x53,0x66,0x78,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0x90,0x0,0x57,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x7a,0x1,0x5,0x1,0x5b,0x0,
- 0x6e,0x0,0x69,0x0,0x6a,0x0,0x20,0x0,0x65,0x0,0x6b,0x0,0x72,0x0,0x61,0x0,
- 0x6e,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x63,0x0,
- 0x7a,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x73,0x0,0x74,0x1,
- 0x19,0x0,0x70,0x0,0x6e,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x77,0x0,0x69,0x0,
- 0x61,0x0,0x64,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x1,0x5b,0x0,0x63,0x0,0x69,0x0,
- 0x2c,0x0,0x20,0x0,0x67,0x0,0x64,0x0,0x79,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,
- 0x73,0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,
- 0x7a,0x0,0x6e,0x0,0x61,0x0,0x63,0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,
- 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x35,0x53,0x68,0x61,0x6b,0x65,
- 0x20,0x74,0x68,0x65,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x6f,0x6e,0x20,0x6e,
- 0x65,0x78,0x74,0x20,0x73,0x70,0x6f,0x6b,0x65,0x6e,0x20,0x6d,0x65,0x73,0x73,0x61,
- 0x67,0x65,0x20,0x77,0x68,0x65,0x6e,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2e,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0xc,0x0,0x4b,0x0,0x73,0x0,0x79,0x0,0x77,0x0,0x6b,0x0,0x61,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x68,0x6f,0x77,0x6e,0x61,
- 0x6d,0x65,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,
- 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x4b,0x0,0x73,0x0,0x79,0x0,0x77,0x0,0x6b,
- 0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x53,0x68,0x6f,0x77,
- 0x6e,0x61,0x6d,0x65,0x73,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,
- 0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x53,0x0,0x70,0x0,0x65,0x0,
- 0x6b,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x9,0x53,0x70,0x65,0x63,0x74,0x61,0x74,0x6f,0x72,0x7,0x0,
- 0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,
- 0x0,0x32,0x0,0x5a,0x0,0x61,0x0,0x74,0x0,0x72,0x0,0x7a,0x0,0x79,0x0,0x6d,
- 0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x4f,0x0,0x62,0x0,0x65,0x0,0x63,0x0,0x6e,
- 0x1,0x5,0x0,0x20,0x0,0x50,0x0,0x69,0x0,0x6f,0x0,0x73,0x0,0x65,0x0,0x6e,
- 0x0,0x6b,0x1,0x19,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x53,0x74,
- 0x6f,0x70,0x20,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x53,0x6f,0x6e,0x67,0x7,
- 0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,
- 0x0,0x0,0x70,0x0,0x5a,0x0,0x61,0x0,0x70,0x0,0x69,0x0,0x73,0x0,0x61,0x0,
- 0x6e,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x6d,0x0,0x79,0x1,0x5b,0x0,
- 0x6c,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x65,0x0,0x64,0x0,
- 0x79,0x0,0x74,0x0,0x75,0x0,0x6a,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x6b,0x0,
- 0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x20,0x0,
- 0x6c,0x0,0x69,0x0,0x6e,0x0,0x6b,0x0,0x20,0x0,0x63,0x0,0x6d,0x0,0x64,0x0,
- 0x6f,0x0,0x63,0x0,0x20,0x0,0x77,0x0,0x20,0x0,0x2e,0x0,0x69,0x0,0x6e,0x0,
- 0x69,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x36,0x53,0x75,0x63,
- 0x63,0x65,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x73,0x61,0x76,0x65,0x64,0x2c,0x20,
- 0x65,0x64,0x69,0x74,0x20,0x64,0x6f,0x63,0x20,0x61,0x6e,0x64,0x20,0x63,0x6d,0x64,
- 0x6f,0x63,0x20,0x6c,0x69,0x6e,0x6b,0x20,0x6f,0x6e,0x20,0x74,0x68,0x65,0x20,0x69,
- 0x6e,0x69,0x21,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0x5a,0x0,0x50,0x0,0x72,0x0,0x7a,0x0,0x65,0x1,
- 0x42,0x1,0x5,0x0,0x63,0x0,0x7a,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x70,0x0,
- 0x6f,0x0,0x6d,0x0,0x69,0x1,0x19,0x0,0x64,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,
- 0x6c,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x69,0x0,0x20,0x0,
- 0x4f,0x0,0x62,0x0,0x73,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0xf3,0x0,0x77,0x0,
- 0x20,0x0,0x69,0x0,0x20,0x0,0x4d,0x0,0x75,0x0,0x7a,0x0,0x79,0x0,0x6b,0x0,
- 0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x53,0x77,0x69,0x74,0x63,
- 0x68,0x20,0x62,0x65,0x74,0x77,0x65,0x65,0x6e,0x20,0x41,0x72,0x65,0x61,0x73,0x20,
- 0x61,0x6e,0x64,0x20,0x4d,0x75,0x73,0x69,0x63,0x20,0x6c,0x69,0x73,0x74,0x73,0x7,
- 0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,
- 0x0,0x0,0x5e,0x0,0x50,0x0,0x72,0x0,0x7a,0x0,0x65,0x1,0x42,0x1,0x5,0x0,
- 0x63,0x0,0x7a,0x0,0x20,0x0,0x65,0x0,0x6b,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,
- 0x20,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x6f,0x0,0x64,0x0,0xf3,0x0,0x77,0x0,
- 0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x62,0x0,
- 0x61,0x0,0x6c,0x0,0x6e,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,
- 0x6b,0x0,0x77,0x0,0x69,0x0,0x70,0x0,0x75,0x0,0x6e,0x0,0x6b,0x0,0x75,0x0,
- 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x53,0x77,0x69,0x74,0x63,
- 0x68,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x74,0x6f,0x20,0x67,0x6c,
- 0x6f,0x62,0x61,0x6c,0x20,0x69,0x6e,0x76,0x65,0x6e,0x74,0x6f,0x72,0x79,0x2e,0x7,
- 0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,
- 0x0,0x0,0x5e,0x0,0x50,0x0,0x72,0x0,0x7a,0x0,0x65,0x1,0x42,0x1,0x5,0x0,
- 0x63,0x0,0x7a,0x0,0x20,0x0,0x65,0x0,0x6b,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,
- 0x20,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x6f,0x0,0x64,0x0,0xf3,0x0,0x77,0x0,
- 0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x79,0x0,0x77,0x0,
- 0x61,0x0,0x74,0x0,0x6e,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,
- 0x6b,0x0,0x77,0x0,0x69,0x0,0x70,0x0,0x75,0x0,0x6e,0x0,0x6b,0x0,0x75,0x0,
- 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x25,0x53,0x77,0x69,0x74,0x63,
- 0x68,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x74,0x6f,0x20,0x70,0x72,
- 0x69,0x76,0x61,0x74,0x65,0x20,0x69,0x6e,0x76,0x65,0x6e,0x74,0x6f,0x72,0x79,0x2e,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0x1a,0x0,0x5a,0x0,0x73,0x0,0x79,0x0,0x6e,0x0,0x63,0x0,0x68,
- 0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0x75,0x0,0x6a,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x53,0x79,0x6e,0x63,0x68,0x72,0x6f,0x6e,
- 0x69,0x7a,0x65,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x54,0x0,0x52,0x0,0x5a,0x0,0x59,0x0,
- 0x4d,0x0,0x41,0x0,0x4a,0x0,0x20,0x0,0x54,0x0,0x4f,0x0,0x21,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x54,0x41,0x4b,0x45,0x20,0x54,0x48,0x41,0x54,
- 0x21,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,
- 0x3,0x0,0x0,0x0,0x16,0x0,0x54,0x0,0x72,0x0,0x7a,0x0,0x79,0x0,0x6d,0x0,
- 0x61,0x0,0x6a,0x0,0x20,0x0,0x54,0x0,0x6f,0x0,0x21,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0xa,0x54,0x61,0x6b,0x65,0x20,0x54,0x68,0x61,0x74,0x21,0x7,
- 0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,
- 0x0,0x0,0xc,0x0,0x5a,0x0,0x61,0x0,0x6a,0x1,0x19,0x0,0x74,0x0,0x79,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x61,0x6b,0x65,0x6e,0x7,0x0,
- 0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,
- 0x0,0x3a,0x0,0x54,0x0,0x61,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x61,0x0,0x64,
- 0x0,0x6f,0x0,0x6d,0x0,0x6f,0x1,0x5b,0x1,0x7,0x0,0x20,0x0,0x6a,0x0,0x65,
- 0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x7a,0x0,0x62,0x0,0x79,0x0,0x74,0x0,0x20,
- 0x0,0x64,0x1,0x42,0x0,0x75,0x0,0x67,0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x18,0x54,0x68,0x65,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,
- 0x65,0x20,0x69,0x73,0x20,0x74,0x6f,0x6f,0x20,0x6c,0x6f,0x6e,0x67,0x2e,0x7,0x0,
- 0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,
- 0x0,0x58,0x0,0x44,0x0,0x6f,0x0,0x77,0x0,0xf3,0x0,0x64,0x0,0x2c,0x0,0x20,
- 0x0,0x6b,0x0,0x74,0x0,0xf3,0x0,0x72,0x0,0x79,0x0,0x20,0x0,0x65,0x0,0x64,
- 0x0,0x79,0x0,0x74,0x0,0x75,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x2c,
- 0x0,0x20,0x0,0x77,0x1,0x42,0x0,0x61,0x1,0x5b,0x0,0x6e,0x0,0x69,0x0,0x65,
- 0x0,0x20,0x0,0x73,0x0,0x69,0x1,0x19,0x0,0x20,0x0,0x7a,0x0,0x6d,0x0,0x69,
- 0x0,0x65,0x0,0x6e,0x0,0x69,0x1,0x42,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x36,0x54,0x68,0x65,0x20,0x70,0x69,0x65,0x63,0x65,0x20,0x6f,0x66,
- 0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x79,0x6f,0x75,0x27,0x76,0x65,
- 0x20,0x62,0x65,0x65,0x6e,0x20,0x65,0x64,0x69,0x74,0x69,0x6e,0x67,0x20,0x68,0x61,
- 0x73,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,
- 0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x8e,0x0,0x54,
- 0x0,0x6f,0x0,0x20,0x0,0x62,0x1,0x19,0x0,0x64,0x0,0x7a,0x0,0x69,0x0,0x65,
- 0x0,0x20,0x0,0x77,0x0,0x79,0x1,0x5b,0x0,0x77,0x0,0x69,0x0,0x65,0x0,0x74,
- 0x0,0x6c,0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x6d,
- 0x0,0x61,0x0,0x63,0x0,0x6a,0x1,0x19,0x0,0x20,0x0,0x77,0x0,0x20,0x0,0x6f,
- 0x0,0x6b,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x6a,0x0,0x61,
- 0x0,0x6b,0x0,0x20,0x0,0x74,0x0,0x79,0x0,0x6c,0x0,0x6b,0x0,0x6f,0x0,0x20,
- 0x0,0x7a,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,
- 0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x77,0x0,0x63,0x0,0x69,0x1,0x5b,
- 0x0,0x6e,0x0,0x69,0x1,0x19,0x0,0x74,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x49,0x54,0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,
- 0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x74,0x68,0x65,0x20,0x61,0x6e,0x69,0x6d,
- 0x61,0x74,0x69,0x6f,0x6e,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x76,0x69,0x65,
- 0x77,0x70,0x6f,0x72,0x74,0x20,0x61,0x73,0x20,0x73,0x6f,0x6f,0x6e,0x20,0x61,0x73,
- 0x20,0x69,0x74,0x20,0x69,0x73,0x20,0x70,0x72,0x65,0x73,0x73,0x65,0x64,0x2e,0x7,
- 0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,
- 0x0,0x2,0x6,0x0,0x42,0x1,0x19,0x0,0x64,0x0,0x7a,0x0,0x69,0x0,0x65,0x0,
- 0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x77,0x0,0x79,0x1,0x5b,0x0,0x77,0x0,
- 0x69,0x0,0x61,0x0,0x74,0x0,0x6c,0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x61,0x0,
- 0x6e,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x6a,0x1,0x19,0x0,0x20,0x0,
- 0x7a,0x0,0x64,0x0,0x65,0x0,0x66,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x6f,0x0,
- 0x77,0x0,0x61,0x0,0x6e,0x1,0x5,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x7a,0x0,
- 0x65,0x0,0x7a,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x74,0x0,
- 0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x6f,0x0,0x77,0x1,
- 0x5,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x1,0x7,0x0,
- 0x69,0x0,0x20,0x0,0x77,0x0,0x20,0x0,0x6f,0x0,0x6b,0x0,0x6e,0x0,0x69,0x0,
- 0x65,0x0,0x2c,0x0,0x20,0x0,0x6a,0x0,0x61,0x0,0x6b,0x0,0x20,0x0,0x74,0x0,
- 0x79,0x0,0x6c,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x7a,0x0,0x6f,0x0,0x73,0x0,
- 0x74,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,
- 0x20,0x0,0x77,0x0,0x63,0x0,0x69,0x1,0x5b,0x0,0x6e,0x0,0x69,0x1,0x19,0x0,
- 0x74,0x0,0x65,0x0,0x2e,0x0,0xa,0x0,0x41,0x0,0x62,0x0,0x79,0x0,0x20,0x0,
- 0x73,0x0,0x74,0x0,0x77,0x0,0x6f,0x0,0x72,0x0,0x7a,0x0,0x79,0x1,0x7,0x0,
- 0x20,0x0,0x63,0x0,0x6f,0x1,0x5b,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x6b,0x0,
- 0x69,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,
- 0x6c,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x74,0x0,0x77,0x0,0x6f,0x0,
- 0x6a,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,
- 0x61,0x0,0x63,0x0,0x69,0x0,0x20,0x0,0x6d,0x0,0x75,0x0,0x73,0x0,0x69,0x0,
- 0x20,0x0,0x7a,0x0,0x61,0x0,0x77,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x61,0x1,
- 0x7,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,
- 0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x65,0x0,
- 0x20,0x0,0x5b,0x0,0x77,0x0,0x65,0x0,0x62,0x0,0x70,0x0,0x2f,0x0,0x61,0x0,
- 0x70,0x0,0x6e,0x0,0x67,0x0,0x2f,0x0,0x67,0x0,0x69,0x0,0x66,0x0,0x2f,0x0,
- 0x70,0x0,0x6e,0x0,0x67,0x0,0x5d,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,
- 0x69,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,
- 0x72,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x65,0x0,0x20,0x0,0x5b,0x0,0x77,0x0,
- 0x61,0x0,0x76,0x0,0x2f,0x0,0x6f,0x0,0x67,0x0,0x67,0x0,0x2f,0x0,0x6f,0x0,
- 0x70,0x0,0x75,0x0,0x73,0x0,0x5d,0x0,0x20,0x0,0x65,0x0,0x66,0x0,0x65,0x0,
- 0x6b,0x0,0x74,0x0,0x79,0x0,0x20,0x0,0x64,0x1,0x7a,0x0,0x77,0x0,0x69,0x1,
- 0x19,0x0,0x6b,0x0,0x6f,0x0,0x77,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0xd6,0x54,0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x64,0x69,0x73,
- 0x70,0x6c,0x61,0x79,0x20,0x74,0x68,0x65,0x20,0x63,0x75,0x73,0x74,0x6f,0x6d,0x20,
- 0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x2d,0x64,0x65,0x66,0x69,0x6e,0x65,
- 0x64,0x20,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x20,0x69,0x6e,0x20,0x74,
- 0x68,0x65,0x20,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x20,0x61,0x73,0x20,0x73,
- 0x6f,0x6f,0x6e,0x20,0x61,0x73,0x20,0x69,0x74,0x20,0x69,0x73,0x20,0x70,0x72,0x65,
- 0x73,0x73,0x65,0x64,0x2e,0xa,0x54,0x6f,0x20,0x6d,0x61,0x6b,0x65,0x20,0x6f,0x6e,
- 0x65,0x2c,0x20,0x79,0x6f,0x75,0x72,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,
- 0x72,0x27,0x73,0x20,0x66,0x6f,0x6c,0x64,0x65,0x72,0x20,0x6d,0x75,0x73,0x74,0x20,
- 0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x20,0x63,0x75,0x73,0x74,0x6f,0x6d,0x2e,0x5b,
- 0x77,0x65,0x62,0x70,0x2f,0x61,0x70,0x6e,0x67,0x2f,0x67,0x69,0x66,0x2f,0x70,0x6e,
- 0x67,0x5d,0x20,0x61,0x6e,0x64,0x20,0x63,0x75,0x73,0x74,0x6f,0x6d,0x2e,0x5b,0x77,
- 0x61,0x76,0x2f,0x6f,0x67,0x67,0x2f,0x6f,0x70,0x75,0x73,0x5d,0x20,0x73,0x6f,0x75,
- 0x6e,0x64,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,
- 0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x44,0x0,
- 0x6f,0x0,0x20,0x0,0x74,0x0,0x79,0x1,0x42,0x0,0x75,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x9,0x54,0x6f,0x20,0x62,0x65,0x68,0x69,0x6e,0x64,0x7,0x0,
- 0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,
- 0x0,0x12,0x0,0x44,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x7a,0x0,0x6f,
- 0x0,0x64,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x54,0x6f,
- 0x20,0x66,0x72,0x6f,0x6e,0x74,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x7a,0x0,0x50,0x0,0x72,0x0,0x7a,
- 0x0,0x65,0x1,0x42,0x1,0x5,0x0,0x63,0x0,0x7a,0x0,0x61,0x0,0x6a,0x0,0x20,
- 0x0,0x70,0x0,0x6f,0x0,0x6d,0x0,0x69,0x1,0x19,0x0,0x64,0x0,0x7a,0x0,0x79,
- 0x0,0x20,0x0,0x63,0x0,0x7a,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x20,
- 0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x6f,0x0,0x77,
- 0x0,0x79,0x0,0x6d,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x67,0x0,0x6c,0x0,0x6f,
- 0x0,0x62,0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x79,0x0,0x6d,0x0,0x20,0x0,0x63,
- 0x0,0x7a,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x41,0x0,0x4f,
- 0x0,0x32,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x54,0x6f,
- 0x67,0x67,0x6c,0x65,0x20,0x62,0x65,0x74,0x77,0x65,0x65,0x6e,0x20,0x73,0x65,0x72,
- 0x76,0x65,0x72,0x20,0x63,0x68,0x61,0x74,0x20,0x61,0x6e,0x64,0x20,0x67,0x6c,0x6f,
- 0x62,0x61,0x6c,0x20,0x41,0x4f,0x32,0x20,0x63,0x68,0x61,0x74,0x2e,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0xe2,0x0,0x5a,0x0,0x62,0x0,0x79,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x75,0x1,
- 0x7c,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,
- 0x65,0x0,0x74,0x0,0x72,0x0,0xf3,0x0,0x77,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,
- 0x62,0x0,0x79,0x0,0x20,0x0,0x7a,0x0,0x61,0x1,0x42,0x0,0x61,0x0,0x64,0x0,
- 0x6f,0x0,0x77,0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,
- 0x70,0x0,0x72,0x0,0x61,0x0,0x77,0x1,0x19,0x0,0x21,0x0,0x20,0x0,0x50,0x0,
- 0x6f,0x0,0x74,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x62,0x0,0x75,0x0,0x6a,0x0,
- 0x65,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x74,0x0,0x79,0x0,0x6c,0x0,0x6b,0x0,
- 0x6f,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x64,0x0,0x6e,0x1,0x5,0x0,0x20,0x0,
- 0x6e,0x0,0x61,0x0,0x7a,0x0,0x77,0x1,0x19,0x0,0x20,0x0,0x70,0x0,0x6c,0x0,
- 0x69,0x0,0x6b,0x0,0x75,0x0,0x2c,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x7a,0x0,
- 0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x73,0x0,0x7a,0x0,0x65,0x0,0x72,0x0,
- 0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,
- 0x7a,0x0,0x77,0x0,0x79,0x0,0x20,0x0,0x70,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,
- 0x75,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x51,0x54,0x6f,0x6f,
- 0x20,0x6d,0x61,0x6e,0x79,0x20,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x20,
- 0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x61,0x20,0x63,0x61,0x73,0x65,0x21,0x20,
- 0x59,0x6f,0x75,0x20,0x6f,0x6e,0x6c,0x79,0x20,0x6e,0x65,0x65,0x64,0x20,0x6f,0x6e,
- 0x65,0x20,0x66,0x69,0x6c,0x65,0x6e,0x61,0x6d,0x65,0x2c,0x20,0x77,0x69,0x74,0x68,
- 0x6f,0x75,0x74,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x2e,0x7,0x0,
- 0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,
- 0x1,0xc,0x0,0x5a,0x0,0x62,0x0,0x79,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x75,
- 0x1,0x7c,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6d,
- 0x0,0x65,0x0,0x74,0x0,0x72,0x0,0xf3,0x0,0x77,0x0,0x2c,0x0,0x20,0x0,0x61,
- 0x0,0x62,0x0,0x79,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x70,0x0,0x69,0x0,0x73,
- 0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x70,0x0,0x72,
- 0x0,0x61,0x0,0x77,0x1,0x19,0x0,0x21,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x74,
- 0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x62,0x0,0x75,0x0,0x6a,0x0,0x65,0x0,0x73,
- 0x0,0x7a,0x0,0x20,0x0,0x74,0x0,0x79,0x0,0x6c,0x0,0x6b,0x0,0x6f,0x0,0x20,
- 0x0,0x6a,0x0,0x65,0x0,0x64,0x0,0x6e,0x1,0x5,0x0,0x20,0x0,0x6e,0x0,0x61,
- 0x0,0x7a,0x0,0x77,0x1,0x19,0x0,0x20,0x0,0x70,0x0,0x6c,0x0,0x69,0x0,0x6b,
- 0x0,0x75,0x0,0x2c,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x7a,0x0,0x20,0x0,0x72,
- 0x0,0x6f,0x0,0x7a,0x0,0x73,0x0,0x7a,0x0,0x65,0x0,0x72,0x0,0x7a,0x0,0x65,
- 0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x7a,0x0,0x77,
- 0x0,0x79,0x0,0x20,0x0,0x70,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x75,0x0,0x20,
- 0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x75,0x0,0x73,
- 0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x73,
- 0x1,0x5,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x65,0x0,0x6a,0x0,0x21,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x67,0x54,0x6f,0x6f,0x20,0x6d,0x61,0x6e,0x79,
- 0x20,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x20,0x74,0x6f,0x20,0x73,0x61,
- 0x76,0x65,0x20,0x61,0x20,0x63,0x61,0x73,0x65,0x21,0x20,0x59,0x6f,0x75,0x20,0x6f,
- 0x6e,0x6c,0x79,0x20,0x6e,0x65,0x65,0x64,0x20,0x61,0x20,0x66,0x69,0x6c,0x65,0x6e,
- 0x61,0x6d,0x65,0x20,0x77,0x69,0x74,0x68,0x6f,0x75,0x74,0x20,0x65,0x78,0x74,0x65,
- 0x6e,0x73,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,
- 0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x21,0x7,
- 0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,
- 0x0,0x0,0x50,0x0,0x50,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,
- 0x65,0x1,0x5b,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x6f,0x0,0x64,0x0,
- 0x79,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,
- 0x62,0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x20,0x0,
- 0x65,0x0,0x6b,0x0,0x77,0x0,0x69,0x0,0x70,0x0,0x75,0x0,0x6e,0x0,0x6b,0x0,
- 0x75,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x26,0x54,0x72,0x61,
- 0x6e,0x73,0x66,0x65,0x72,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x74,
- 0x6f,0x20,0x67,0x6c,0x6f,0x62,0x61,0x6c,0x20,0x69,0x6e,0x76,0x65,0x6e,0x74,0x6f,
- 0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0x50,0x0,0x50,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,
- 0x6e,0x0,0x69,0x0,0x65,0x1,0x5b,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,
- 0x6f,0x0,0x64,0x0,0x79,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,
- 0x72,0x0,0x79,0x0,0x77,0x0,0x61,0x0,0x74,0x0,0x6e,0x0,0x65,0x0,0x67,0x0,
- 0x6f,0x0,0x20,0x0,0x65,0x0,0x6b,0x0,0x77,0x0,0x69,0x0,0x70,0x0,0x75,0x0,
- 0x6e,0x0,0x6b,0x0,0x75,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x27,0x54,0x72,0x61,0x6e,0x73,0x66,0x65,0x72,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,
- 0x63,0x65,0x20,0x74,0x6f,0x20,0x70,0x72,0x69,0x76,0x61,0x74,0x65,0x20,0x69,0x6e,
- 0x76,0x65,0x6e,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,
- 0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4e,0x0,0x49,
- 0x0,0x45,0x0,0x5a,0x0,0x4e,0x0,0x41,0x0,0x4e,0x0,0x45,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x7,0x55,0x4e,0x4b,0x4e,0x4f,0x57,0x4e,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0x88,0x0,0x4b,0x0,0x69,0x0,0x65,0x0,0x64,0x0,0x79,0x0,0x20,0x0,0x6a,0x0,
- 0x65,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x77,0x1,
- 0x42,0x1,0x5,0x0,0x63,0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,
- 0x20,0x0,0x74,0x0,0x77,0x0,0x6f,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,
- 0x61,0x0,0x73,0x0,0x74,0x1,0x19,0x0,0x70,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,
- 0x77,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x1,0x5b,0x1,
- 0x7,0x0,0x20,0x0,0x49,0x0,0x43,0x0,0x20,0x0,0x62,0x1,0x19,0x0,0x64,0x0,
- 0x7a,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6b,0x0,0x72,0x0,0x7a,0x0,0x79,0x0,
- 0x6b,0x0,0x69,0x0,0x65,0x0,0x6d,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x47,0x57,0x68,0x65,0x6e,0x20,0x74,0x68,0x69,0x73,0x20,0x69,0x73,0x20,
- 0x74,0x75,0x72,0x6e,0x65,0x64,0x20,0x6f,0x6e,0x2c,0x20,0x79,0x6f,0x75,0x72,0x20,
- 0x6e,0x65,0x78,0x74,0x20,0x69,0x6e,0x2d,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,
- 0x72,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,
- 0x65,0x20,0x61,0x20,0x73,0x68,0x6f,0x75,0x74,0x21,0x7,0x0,0x0,0x0,0x9,0x43,
- 0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x1,0x3a,0x0,0x4e,
- 0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x7a,0x0,0x20,
- 0x0,0x66,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x75,0x0,0x20,
- 0x0,0x60,0x0,0x62,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x2f,0x0,0x63,0x0,0x61,
- 0x0,0x73,0x0,0x65,0x0,0x73,0x0,0x2f,0x0,0x60,0x0,0x21,0x0,0x20,0x0,0x5a,
- 0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x1,0x42,0x0,0x20,0x0,0x7a,0x0,0x72,
- 0x0,0x6f,0x0,0x62,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x74,
- 0x0,0x79,0x0,0x6c,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x6c,0x0,0x61,
- 0x0,0x20,0x0,0x63,0x0,0x69,0x0,0x65,0x0,0x62,0x0,0x69,0x0,0x65,0x0,0x2c,
- 0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x64,
- 0x0,0x7a,0x1,0x5,0x0,0x63,0x0,0x2c,0x0,0x20,0x1,0x7c,0x0,0x65,0x0,0x20,
- 0x0,0x5a,0x0,0x4f,0x0,0x53,0x0,0x54,0x0,0x41,0x1,0x41,0x0,0x20,0x0,0x7a,
- 0x0,0x72,0x0,0x6f,0x0,0x62,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x79,0x0,0x20,
- 0x0,0x74,0x0,0x79,0x0,0x6c,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x6c,
- 0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x69,0x0,0x65,0x0,0x62,0x0,0x69,0x0,0x65,
- 0x0,0x2c,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x77,0x0,0x64,0x0,0x6f,
- 0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x62,0x0,0x6e,0x0,0x69,0x0,0x65,
- 0x0,0x20,0x0,0x6a,0x0,0x61,0x0,0x6b,0x0,0x6f,0x1,0x5b,0x0,0x20,0x0,0x75,
- 0x0,0x73,0x0,0x75,0x0,0x6e,0x1,0x5,0x1,0x42,0x0,0x65,0x1,0x5b,0x0,0x2f,
- 0x0,0x75,0x0,0x73,0x0,0x75,0x0,0x6e,0x1,0x19,0x1,0x42,0x0,0x61,0x1,0x5b,
- 0x0,0x20,0x0,0x67,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x91,0x59,0x6f,0x75,0x20,0x64,0x6f,0x6e,0x27,0x74,0x20,0x68,0x61,0x76,0x65,
- 0x20,0x61,0x20,0x60,0x62,0x61,0x73,0x65,0x2f,0x63,0x61,0x73,0x65,0x73,0x2f,0x60,
- 0x20,0x66,0x6f,0x6c,0x64,0x65,0x72,0x21,0x20,0x49,0x74,0x20,0x77,0x61,0x73,0x20,
- 0x6a,0x75,0x73,0x74,0x20,0x6d,0x61,0x64,0x65,0x20,0x66,0x6f,0x72,0x20,0x79,0x6f,
- 0x75,0x2c,0x20,0x62,0x75,0x74,0x20,0x73,0x65,0x65,0x69,0x6e,0x67,0x20,0x61,0x73,
- 0x20,0x69,0x74,0x20,0x57,0x41,0x53,0x20,0x6a,0x75,0x73,0x74,0x20,0x6d,0x61,0x64,
- 0x65,0x20,0x66,0x6f,0x72,0x20,0x79,0x6f,0x75,0x2c,0x20,0x69,0x74,0x27,0x73,0x20,
- 0x6c,0x69,0x6b,0x65,0x6c,0x79,0x20,0x74,0x68,0x61,0x74,0x20,0x79,0x6f,0x75,0x20,
- 0x73,0x6f,0x6d,0x65,0x68,0x6f,0x77,0x20,0x64,0x65,0x6c,0x65,0x74,0x65,0x64,0x20,
- 0x69,0x74,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x1,0x78,0x0,0x4e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,
- 0x6d,0x0,0x61,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x6c,0x0,
- 0x64,0x0,0x65,0x0,0x72,0x0,0x75,0x0,0x20,0x0,0x60,0x0,0x62,0x0,0x61,0x0,
- 0x73,0x0,0x65,0x0,0x2f,0x0,0x63,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x73,0x0,
- 0x2f,0x0,0x60,0x0,0x21,0x0,0x20,0x0,0x5a,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,
- 0x61,0x1,0x42,0x0,0x20,0x0,0x7a,0x0,0x72,0x0,0x6f,0x0,0x62,0x0,0x69,0x0,
- 0x6f,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x74,0x0,0x79,0x0,0x6c,0x0,0x6b,0x0,
- 0x6f,0x0,0x20,0x0,0x64,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x69,0x0,
- 0x65,0x0,0x62,0x0,0x69,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,
- 0x65,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x64,0x0,0x7a,0x1,0x5,0x0,0x63,0x0,
- 0x2c,0x0,0x20,0x1,0x7c,0x0,0x65,0x0,0x20,0x0,0x5a,0x0,0x4f,0x0,0x53,0x0,
- 0x54,0x0,0x41,0x1,0x41,0x0,0x20,0x0,0x7a,0x0,0x72,0x0,0x6f,0x0,0x62,0x0,
- 0x69,0x0,0x6f,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x74,0x0,0x79,0x0,0x6c,0x0,
- 0x6b,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x63,0x0,
- 0x69,0x0,0x65,0x0,0x62,0x0,0x69,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x70,0x0,
- 0x72,0x0,0x61,0x0,0x77,0x0,0x64,0x0,0x6f,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,
- 0x6f,0x0,0x62,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6c,0x0,
- 0x69,0x0,0x6b,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x70,0x0,0x72,0x0,
- 0x61,0x0,0x77,0x0,0x2c,0x0,0x20,0x0,0x6b,0x0,0x74,0x0,0xf3,0x0,0x72,0x0,
- 0x65,0x0,0x67,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x7a,0x0,0x75,0x0,0x6b,0x0,
- 0x61,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,
- 0x7a,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x1,0x42,0x0,0x20,0x0,0x7a,0x0,
- 0x6e,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,
- 0x79,0x0,0x20,0x0,0x74,0x0,0x75,0x0,0x74,0x0,0x61,0x0,0x6a,0x0,0x2e,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xae,0x59,0x6f,0x75,0x20,0x64,0x6f,0x6e,
- 0x27,0x74,0x20,0x68,0x61,0x76,0x65,0x20,0x61,0x20,0x60,0x62,0x61,0x73,0x65,0x2f,
- 0x63,0x61,0x73,0x65,0x73,0x2f,0x60,0x20,0x66,0x6f,0x6c,0x64,0x65,0x72,0x21,0x20,
- 0x49,0x74,0x20,0x77,0x61,0x73,0x20,0x6a,0x75,0x73,0x74,0x20,0x6d,0x61,0x64,0x65,
- 0x20,0x66,0x6f,0x72,0x20,0x79,0x6f,0x75,0x2c,0x20,0x62,0x75,0x74,0x20,0x73,0x65,
- 0x65,0x69,0x6e,0x67,0x20,0x61,0x73,0x20,0x69,0x74,0x20,0x57,0x41,0x53,0x20,0x6a,
- 0x75,0x73,0x74,0x20,0x6d,0x61,0x64,0x65,0x20,0x66,0x6f,0x72,0x20,0x79,0x6f,0x75,
- 0x2c,0x20,0x69,0x74,0x27,0x73,0x20,0x6c,0x69,0x6b,0x65,0x6c,0x79,0x20,0x74,0x68,
- 0x65,0x20,0x63,0x61,0x73,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x79,0x6f,0x75,0x27,
- 0x72,0x65,0x20,0x6c,0x6f,0x6f,0x6b,0x69,0x6e,0x67,0x20,0x66,0x6f,0x72,0x20,0x63,
- 0x61,0x6e,0x27,0x74,0x20,0x62,0x65,0x20,0x66,0x6f,0x75,0x6e,0x64,0x20,0x69,0x6e,
- 0x20,0x74,0x68,0x65,0x72,0x65,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x5a,0x0,0x6f,0x0,
- 0x73,0x0,0x74,0x0,0x61,0x1,0x42,0x0,0x65,0x1,0x5b,0x0,0x2f,0x0,0x61,0x1,
- 0x5b,0x0,0x20,0x0,0x7a,0x0,0x62,0x0,0x61,0x0,0x6e,0x0,0x6f,0x0,0x77,0x0,
- 0x61,0x0,0x6e,0x0,0x79,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x15,0x59,0x6f,0x75,0x20,0x68,0x61,0x76,0x65,0x20,0x62,0x65,0x65,0x6e,0x20,0x62,
- 0x61,0x6e,0x6e,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x4d,0x0,0x75,0x0,0x73,
- 0x0,0x69,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x61,
- 0x1,0x7,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x7a,0x0,0x79,0x0,0x63,0x0,0x7a,
- 0x0,0x79,0x0,0x6e,0x1,0x19,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x1a,0x59,0x6f,0x75,0x20,0x6d,0x75,0x73,0x74,0x20,0x70,0x72,0x6f,0x76,0x69,
- 0x64,0x65,0x20,0x61,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x1,0xa0,
- 0x0,0x4d,0x0,0x75,0x0,0x73,0x0,0x69,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x70,
- 0x0,0x6f,0x0,0x64,0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x7a,
- 0x0,0x77,0x1,0x19,0x0,0x20,0x0,0x70,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x75,
- 0x0,0x2c,0x0,0x20,0x0,0x6b,0x0,0x74,0x0,0xf3,0x0,0x72,0x0,0x65,0x0,0x67,
- 0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x7a,
- 0x0,0x20,0x0,0x7a,0x0,0x61,0x1,0x42,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x77,
- 0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x28,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x73,
- 0x0,0x7a,0x0,0x65,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,
- 0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x73,
- 0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x74,0x0,0x72,0x0,0x7a,0x0,0x65,
- 0x0,0x62,0x0,0x6e,0x0,0x65,0x0,0x21,0x0,0x29,0x0,0x20,0x0,0x55,0x0,0x70,
- 0x0,0x65,0x0,0x77,0x0,0x6e,0x0,0x69,0x0,0x6a,0x0,0x20,0x0,0x73,0x0,0x69,
- 0x1,0x19,0x0,0x2c,0x0,0x20,0x1,0x7c,0x0,0x65,0x0,0x20,0x0,0x6a,0x0,0x65,
- 0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x77,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x6c,
- 0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x60,0x0,0x62,
- 0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x2f,0x0,0x63,0x0,0x61,0x0,0x73,0x0,0x65,
- 0x0,0x73,0x0,0x2f,0x0,0x60,0x0,0x20,0x0,0x69,0x0,0x20,0x1,0x7c,0x0,0x65,
- 0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x6f,
- 0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x77,0x0,0x6e,
- 0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d,
- 0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x20,
- 0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x2e,0x0,0xa,0x0,0x52,0x0,0x6f,0x0,0x7a,
- 0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x77,0x0,0x79,0x0,0x20,0x0,0x6b,0x0,0x74,
- 0x0,0xf3,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x1,0x7c,0x0,0x65,
- 0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x7a,0x0,0x61,0x1,0x42,0x0,0x61,0x0,0x64,
- 0x0,0x6f,0x0,0x77,0x0,0x61,0x1,0x7,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x31,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xae,0x59,0x6f,0x75,0x20,0x6e,0x65,
- 0x65,0x64,0x20,0x74,0x6f,0x20,0x67,0x69,0x76,0x65,0x20,0x61,0x20,0x66,0x69,0x6c,
- 0x65,0x6e,0x61,0x6d,0x65,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x28,0x65,
- 0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x6e,0x65,0x65,
- 0x64,0x65,0x64,0x29,0x21,0x20,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,
- 0x74,0x68,0x61,0x74,0x20,0x69,0x74,0x20,0x69,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,
- 0x65,0x20,0x60,0x62,0x61,0x73,0x65,0x2f,0x63,0x61,0x73,0x65,0x73,0x2f,0x60,0x20,
- 0x66,0x6f,0x6c,0x64,0x65,0x72,0x2c,0x20,0x61,0x6e,0x64,0x20,0x74,0x68,0x61,0x74,
- 0x20,0x69,0x74,0x20,0x69,0x73,0x20,0x61,0x20,0x63,0x6f,0x72,0x72,0x65,0x63,0x74,
- 0x6c,0x79,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x74,0x65,0x64,0x20,0x69,0x6e,0x69,
- 0x2e,0xa,0x43,0x61,0x73,0x65,0x73,0x20,0x79,0x6f,0x75,0x20,0x63,0x61,0x6e,0x20,
- 0x6c,0x6f,0x61,0x64,0x3a,0x20,0x25,0x31,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,
- 0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xc2,0x0,0x4d,0x0,0x75,
- 0x0,0x73,0x0,0x69,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,
- 0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x7a,0x0,0x77,0x1,0x19,
- 0x0,0x20,0x0,0x70,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x75,0x0,0x2c,0x0,0x20,
- 0x0,0x61,0x0,0x62,0x0,0x79,0x0,0x20,0x0,0x67,0x0,0x6f,0x0,0x20,0x0,0x7a,
- 0x0,0x61,0x0,0x70,0x0,0x69,0x0,0x73,0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x28,
- 0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x73,0x0,0x7a,0x0,0x65,0x0,0x72,0x0,0x7a,
- 0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65,
- 0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x6f,
- 0x0,0x74,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x62,0x0,0x6e,0x0,0x65,0x0,0x29,
- 0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x75,
- 0x0,0x73,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x73,
- 0x1,0x5,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x65,0x0,0x6a,0x0,0x21,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x54,0x59,0x6f,0x75,0x20,0x6e,0x65,0x65,0x64,
- 0x20,0x74,0x6f,0x20,0x67,0x69,0x76,0x65,0x20,0x61,0x20,0x66,0x69,0x6c,0x65,0x6e,
- 0x61,0x6d,0x65,0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x28,0x65,0x78,0x74,
- 0x65,0x6e,0x73,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x6e,0x65,0x65,0x64,0x65,
- 0x64,0x29,0x20,0x61,0x6e,0x64,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x21,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x74,
- 0x0,0x5a,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x1,0x42,0x0,0x65,0x1,0x5b,
- 0x0,0x2f,0x0,0x61,0x1,0x5b,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x64,0x0,0x61,
- 0x0,0x72,0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0,0x79,0x0,0x6d,0x0,0x2f,0x0,0x61,
- 0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x7a,0x0,0x79,0x0,0x63,0x0,0x69,0x0,0x73,
- 0x0,0x6b,0x0,0x69,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x57,0x0,0x79,0x1,0x42,
- 0x1,0x5,0x0,0x63,0x0,0x7a,0x0,0x20,0x0,0x57,0x0,0x65,0x0,0x7a,0x0,0x77,
- 0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x64,
- 0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2d,0x59,0x6f,
- 0x75,0x20,0x77,0x65,0x72,0x65,0x20,0x67,0x72,0x61,0x6e,0x74,0x65,0x64,0x20,0x74,
- 0x68,0x65,0x20,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x20,0x4d,0x6f,0x64,0x63,0x61,
- 0x6c,0x6c,0x73,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x32,0x0,
- 0x5a,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x1,0x42,0x0,0x65,0x1,0x5b,0x0,
- 0x2f,0x0,0x61,0x1,0x5b,0x0,0x20,0x0,0x77,0x0,0x79,0x0,0x6c,0x0,0x6f,0x0,
- 0x67,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x79,0x0,0x2f,0x0,0x61,0x0,
- 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x59,0x6f,0x75,0x20,0x77,
- 0x65,0x72,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x6f,0x75,0x74,0x2e,0x7,
- 0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,
- 0x0,0x0,0x4a,0x0,0x54,0x0,0x77,0x0,0x6f,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,
- 0x72,0x0,0x6f,0x0,0x7a,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x77,0x0,0x61,0x0,
- 0x20,0x0,0x22,0x0,0x25,0x0,0x31,0x0,0x22,0x0,0x20,0x0,0x7a,0x0,0x6f,0x0,
- 0x73,0x0,0x74,0x0,0x61,0x1,0x42,0x0,0x61,0x0,0x20,0x0,0x77,0x0,0x63,0x0,
- 0x7a,0x0,0x79,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x21,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x59,0x6f,0x75,0x72,0x20,0x63,0x61,0x73,0x65,
- 0x20,0x22,0x25,0x31,0x22,0x20,0x77,0x61,0x73,0x20,0x6c,0x6f,0x61,0x64,0x65,0x64,
- 0x21,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,
- 0x3,0x0,0x0,0x0,0x1c,0x0,0x5b,0x0,0x42,0x0,0x52,0x0,0x41,0x0,0x4b,0x0,
- 0x55,0x0,0x4a,0x1,0x4,0x0,0x43,0x0,0x59,0x0,0x5d,0x0,0x20,0x0,0x25,0x0,
- 0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x5b,0x4d,0x49,0x53,0x53,
- 0x49,0x4e,0x47,0x5d,0x20,0x25,0x31,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x5b,0x0,0x53,0x0,
- 0x54,0x0,0x52,0x0,0x45,0x0,0x41,0x0,0x4d,0x0,0x5d,0x0,0x20,0x0,0x25,0x0,
- 0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x5b,0x53,0x54,0x52,0x45,
- 0x41,0x4d,0x5d,0x20,0x25,0x31,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x77,0x1,0x42,0x1,0x5,
- 0x0,0x63,0x0,0x7a,0x0,0x79,0x1,0x42,0x0,0x28,0x0,0x61,0x0,0x29,0x0,0x20,
- 0x0,0x70,0x0,0x69,0x0,0x6f,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x6b,0x1,0x19,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x68,0x61,0x73,0x20,0x70,0x6c,
- 0x61,0x79,0x65,0x64,0x20,0x61,0x20,0x73,0x6f,0x6e,0x67,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,
- 0x7a,0x0,0x61,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,
- 0x74,0x0,0x6f,0x0,0x77,0x0,0x61,0x1,0x42,0x0,0x28,0x0,0x61,0x0,0x29,0x0,
- 0x20,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0xf3,0x0,0x64,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x16,0x68,0x61,0x73,0x20,0x70,0x72,0x65,0x73,0x65,0x6e,0x74,
- 0x65,0x64,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x26,0x0,
- 0x7a,0x0,0x61,0x0,0x74,0x0,0x72,0x0,0x7a,0x0,0x79,0x0,0x6d,0x0,0x61,0x1,
- 0x42,0x0,0x28,0x0,0x61,0x0,0x29,0x0,0x20,0x0,0x6d,0x0,0x75,0x0,0x7a,0x0,
- 0x79,0x0,0x6b,0x1,0x19,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x68,
- 0x61,0x73,0x20,0x73,0x74,0x6f,0x70,0x70,0x65,0x64,0x20,0x74,0x68,0x65,0x20,0x6d,
- 0x75,0x73,0x69,0x63,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x6b,0x0,0x72,0x0,0x7a,0x0,0x79,
- 0x0,0x6b,0x0,0x6e,0x1,0x5,0x1,0x42,0x0,0x2f,0x1,0x19,0x1,0x42,0x0,0x61,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x73,0x68,0x6f,0x75,0x74,0x73,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0x76,0x0,0x44,0x0,0x6f,0x0,0x73,0x0,0x74,0x1,0x19,0x0,0x70,
- 0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x6e,
- 0x0,0x64,0x0,0x79,0x0,0x3a,0x0,0xa,0x0,0x6c,0x0,0x6f,0x0,0x61,0x0,0x64,
- 0x0,0x2c,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x61,0x0,0x64,
- 0x0,0x2c,0x0,0x20,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x79,0x0,0x2c,0x0,0x20,
- 0x0,0x70,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x6d,
- 0x0,0x61,0x0,0x78,0x0,0x5f,0x0,0x77,0x0,0x61,0x0,0x69,0x0,0x74,0x0,0x2c,
- 0x0,0x20,0x0,0x68,0x0,0x65,0x0,0x6c,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x3d,0x41,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x63,0x6f,
- 0x6d,0x6d,0x61,0x6e,0x64,0x73,0x3a,0xa,0x6c,0x6f,0x61,0x64,0x2c,0x20,0x72,0x65,
- 0x6c,0x6f,0x61,0x64,0x2c,0x20,0x70,0x6c,0x61,0x79,0x2c,0x20,0x70,0x61,0x75,0x73,
- 0x65,0x2c,0x20,0x6d,0x61,0x78,0x5f,0x77,0x61,0x69,0x74,0x2c,0x20,0x68,0x65,0x6c,
- 0x70,0x7,0x0,0x0,0x0,0xa,0x44,0x65,0x6d,0x6f,0x53,0x65,0x72,0x76,0x65,0x72,
- 0x1,0x3,0x0,0x0,0x0,0xc0,0x0,0x42,0x0,0x69,0x0,0x65,0x1,0x7c,0x1,0x5,
- 0x0,0x63,0x0,0x79,0x0,0x20,0x0,0x70,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x20,
- 0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,0x77,0x0,0x63,0x0,0x7a,
- 0x0,0x79,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x70,0x0,0x6f,
- 0x0,0x6e,0x0,0x6f,0x0,0x77,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x2e,0x0,0x20,
- 0x0,0x57,0x0,0x79,0x1,0x5b,0x0,0x6c,0x0,0x69,0x0,0x6a,0x0,0x20,0x0,0x2f,
- 0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x79,0x0,0x20,0x0,0x6c,0x0,0x75,0x0,0x62,
- 0x0,0x20,0x0,0x3e,0x0,0x20,0x0,0x77,0x0,0x20,0x0,0x63,0x0,0x7a,0x0,0x61,
- 0x0,0x63,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x4f,0x0,0x4f,0x0,0x43,0x0,0x2c,
- 0x0,0x20,0x0,0x61,0x0,0x62,0x0,0x79,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,
- 0x0,0x70,0x0,0x6f,0x0,0x63,0x0,0x7a,0x1,0x5,0x1,0x7,0x0,0x20,0x0,0x6f,
- 0x0,0x64,0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x7a,0x0,0x61,0x0,0x6e,
- 0x0,0x69,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x45,
- 0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x64,0x65,0x6d,0x6f,0x20,0x66,0x69,0x6c,
- 0x65,0x20,0x72,0x65,0x6c,0x6f,0x61,0x64,0x65,0x64,0x2e,0x20,0x53,0x65,0x6e,0x64,
- 0x20,0x2f,0x70,0x6c,0x61,0x79,0x20,0x6f,0x72,0x20,0x3e,0x20,0x69,0x6e,0x20,0x4f,
- 0x4f,0x43,0x20,0x74,0x6f,0x20,0x62,0x65,0x67,0x69,0x6e,0x20,0x70,0x6c,0x61,0x79,
- 0x62,0x61,0x63,0x6b,0x2e,0x7,0x0,0x0,0x0,0xa,0x44,0x65,0x6d,0x6f,0x53,0x65,
- 0x72,0x76,0x65,0x72,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x42,0x0,0x69,0x0,0x65,
- 0x1,0x7c,0x1,0x5,0x0,0x63,0x0,0x79,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x78,
- 0x0,0x5f,0x0,0x77,0x0,0x61,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x6f,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x43,0x75,0x72,0x72,0x65,0x6e,
- 0x74,0x20,0x6d,0x61,0x78,0x5f,0x77,0x61,0x69,0x74,0x20,0x69,0x73,0x7,0x0,0x0,
- 0x0,0xa,0x44,0x65,0x6d,0x6f,0x53,0x65,0x72,0x76,0x65,0x72,0x1,0x3,0x0,0x0,
- 0x0,0x26,0x0,0x50,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x44,
- 0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,0x28,0x0,0x2a,0x0,0x2e,0x0,0x64,
- 0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x13,0x44,0x65,0x6d,0x6f,0x20,0x46,0x69,0x6c,0x65,0x73,0x20,0x28,0x2a,0x2e,
- 0x64,0x65,0x6d,0x6f,0x29,0x7,0x0,0x0,0x0,0xa,0x44,0x65,0x6d,0x6f,0x53,0x65,
- 0x72,0x76,0x65,0x72,0x1,0x3,0x0,0x0,0x0,0x9e,0x0,0x50,0x0,0x6c,0x0,0x69,
- 0x0,0x6b,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,0x77,
- 0x0,0x63,0x0,0x7a,0x0,0x79,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x79,0x0,0x2e,
- 0x0,0x20,0x0,0x57,0x0,0x79,0x1,0x5b,0x0,0x6c,0x0,0x69,0x0,0x6a,0x0,0x20,
- 0x0,0x2f,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x79,0x0,0x20,0x0,0x6c,0x0,0x75,
- 0x0,0x62,0x0,0x20,0x0,0x3e,0x0,0x20,0x0,0x77,0x0,0x20,0x0,0x63,0x0,0x7a,
- 0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x4f,0x0,0x4f,0x0,0x43,
- 0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x62,0x0,0x79,0x0,0x20,0x0,0x72,0x0,0x6f,
- 0x0,0x7a,0x0,0x70,0x0,0x6f,0x0,0x63,0x0,0x7a,0x1,0x5,0x1,0x7,0x0,0x20,
- 0x0,0x6f,0x0,0x64,0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x7a,0x0,0x61,
- 0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x3b,0x44,0x65,0x6d,0x6f,0x20,0x66,0x69,0x6c,0x65,0x20,0x6c,0x6f,0x61,0x64,
- 0x65,0x64,0x2e,0x20,0x53,0x65,0x6e,0x64,0x20,0x2f,0x70,0x6c,0x61,0x79,0x20,0x6f,
- 0x72,0x20,0x3e,0x20,0x69,0x6e,0x20,0x4f,0x4f,0x43,0x20,0x74,0x6f,0x20,0x62,0x65,
- 0x67,0x69,0x6e,0x20,0x70,0x6c,0x61,0x79,0x62,0x61,0x63,0x6b,0x2e,0x7,0x0,0x0,
- 0x0,0xa,0x44,0x65,0x6d,0x6f,0x53,0x65,0x72,0x76,0x65,0x72,0x1,0x3,0x0,0x0,
- 0x0,0x18,0x0,0x57,0x0,0x63,0x0,0x7a,0x0,0x79,0x0,0x74,0x0,0x61,0x0,0x6a,
- 0x0,0x20,0x0,0x44,0x0,0x65,0x0,0x6d,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x9,0x4c,0x6f,0x61,0x64,0x20,0x44,0x65,0x6d,0x6f,0x7,0x0,0x0,
- 0x0,0xa,0x44,0x65,0x6d,0x6f,0x53,0x65,0x72,0x76,0x65,0x72,0x1,0x3,0x0,0x0,
- 0x0,0x50,0x0,0x4e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x73,
- 0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x61,
- 0x0,0x77,0x0,0x69,0x0,0x64,0x1,0x42,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x20,
- 0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x7a,0x0,0x62,0x0,0x61,0x0,0x20,0x0,0x63,
- 0x0,0x61,0x1,0x42,0x0,0x6b,0x0,0x6f,0x0,0x77,0x0,0x69,0x0,0x74,0x0,0x61,
- 0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x4e,0x6f,0x74,0x20,
- 0x61,0x20,0x76,0x61,0x6c,0x69,0x64,0x20,0x69,0x6e,0x74,0x65,0x67,0x65,0x72,0x21,
- 0x7,0x0,0x0,0x0,0xa,0x44,0x65,0x6d,0x6f,0x53,0x65,0x72,0x76,0x65,0x72,0x1,
- 0x3,0x0,0x0,0x0,0x2e,0x0,0x50,0x0,0x61,0x0,0x75,0x0,0x7a,0x0,0x6f,0x0,
- 0x77,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x64,0x0,
- 0x74,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x7a,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,
- 0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x50,0x61,0x75,
- 0x73,0x69,0x6e,0x67,0x20,0x70,0x6c,0x61,0x79,0x62,0x61,0x63,0x6b,0x2e,0x7,0x0,
- 0x0,0x0,0xa,0x44,0x65,0x6d,0x6f,0x53,0x65,0x72,0x76,0x65,0x72,0x1,0x3,0x0,
- 0x0,0x0,0xee,0x0,0x4f,0x0,0x73,0x0,0x69,0x1,0x5,0x0,0x67,0x0,0x6e,0x0,
- 0x69,0x1,0x19,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,
- 0x69,0x0,0x65,0x0,0x63,0x0,0x20,0x0,0x70,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,
- 0x75,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x2e,0x0,0x20,0x0,
- 0x57,0x0,0x79,0x1,0x5b,0x0,0x6c,0x0,0x69,0x0,0x6a,0x0,0x20,0x0,0x2f,0x0,
- 0x70,0x0,0x6c,0x0,0x61,0x0,0x79,0x0,0x20,0x0,0x6c,0x0,0x75,0x0,0x62,0x0,
- 0x20,0x0,0x3e,0x0,0x20,0x0,0x77,0x0,0x20,0x0,0x63,0x0,0x7a,0x0,0x61,0x0,
- 0x63,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x4f,0x0,0x4f,0x0,0x43,0x0,0x2c,0x0,
- 0x20,0x0,0x61,0x0,0x62,0x0,0x79,0x0,0x20,0x0,0x7a,0x0,0x72,0x0,0x65,0x0,
- 0x73,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x6f,0x0,0x77,0x0,0x61,0x1,
- 0x7,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,0x6c,0x0,
- 0x75,0x0,0x62,0x0,0x20,0x0,0x2f,0x0,0x6c,0x0,0x6f,0x0,0x61,0x0,0x64,0x0,
- 0x2c,0x0,0x20,0x0,0x61,0x0,0x62,0x0,0x79,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,
- 0x77,0x0,0x6f,0x0,0x72,0x0,0x7a,0x0,0x79,0x1,0x7,0x0,0x20,0x0,0x6e,0x0,
- 0x6f,0x0,0x77,0x0,0x79,0x0,0x20,0x0,0x70,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,
- 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x61,0x52,0x65,0x61,0x63,0x68,
- 0x65,0x64,0x20,0x74,0x68,0x65,0x20,0x65,0x6e,0x64,0x20,0x6f,0x66,0x20,0x74,0x68,
- 0x65,0x20,0x64,0x65,0x6d,0x6f,0x20,0x66,0x69,0x6c,0x65,0x2e,0x20,0x53,0x65,0x6e,
- 0x64,0x20,0x2f,0x70,0x6c,0x61,0x79,0x20,0x6f,0x72,0x20,0x3e,0x20,0x69,0x6e,0x20,
- 0x4f,0x4f,0x43,0x20,0x74,0x6f,0x20,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x2c,0x20,
- 0x6f,0x72,0x20,0x2f,0x6c,0x6f,0x61,0x64,0x20,0x74,0x6f,0x20,0x6f,0x70,0x65,0x6e,
- 0x20,0x61,0x20,0x6e,0x65,0x77,0x20,0x66,0x69,0x6c,0x65,0x2e,0x7,0x0,0x0,0x0,
- 0xa,0x44,0x65,0x6d,0x6f,0x53,0x65,0x72,0x76,0x65,0x72,0x1,0x3,0x0,0x0,0x0,
- 0x2e,0x0,0x57,0x0,0x7a,0x0,0x6e,0x0,0x61,0x0,0x77,0x0,0x69,0x0,0x61,0x0,
- 0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x64,0x0,0x74,0x0,0x77,0x0,
- 0x61,0x0,0x72,0x0,0x7a,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x2e,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x52,0x65,0x73,0x75,0x6d,0x69,0x6e,
- 0x67,0x20,0x70,0x6c,0x61,0x79,0x62,0x61,0x63,0x6b,0x2e,0x7,0x0,0x0,0x0,0xa,
- 0x44,0x65,0x6d,0x6f,0x53,0x65,0x72,0x76,0x65,0x72,0x1,0x3,0x0,0x0,0x0,0x2c,
- 0x0,0x55,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x77,0x0,0x69,0x0,0x61,0x0,0x6e,
- 0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x78,0x0,0x5f,0x0,0x77,
- 0x0,0x61,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x6f,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x13,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x20,0x6d,0x61,
- 0x78,0x5f,0x77,0x61,0x69,0x74,0x20,0x74,0x6f,0x7,0x0,0x0,0x0,0xa,0x44,0x65,
- 0x6d,0x6f,0x53,0x65,0x72,0x76,0x65,0x72,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x6d,
- 0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x6b,0x0,0x75,0x0,0x6e,
- 0x0,0x64,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x6d,0x69,
- 0x6c,0x6c,0x69,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x2e,0x7,0x0,0x0,0x0,0xa,
- 0x44,0x65,0x6d,0x6f,0x53,0x65,0x72,0x76,0x65,0x72,0x1,0x3,0x0,0x0,0x0,0xb2,
- 0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x5f,0x0,0x77,0x0,0x61,0x0,0x69,0x0,0x74,
- 0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x73,
- 0x0,0x74,0x0,0x20,0x0,0x6a,0x0,0x75,0x1,0x7c,0x0,0x20,0x0,0x75,0x1,0x7c,
- 0x0,0x79,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x79,0x0,0x2e,0x0,0x20,0x0,0x55,
- 0x1,0x7c,0x0,0x79,0x0,0x6a,0x0,0x20,0x0,0x55,0x0,0x73,0x0,0x74,0x0,0x61,
- 0x0,0x77,0x0,0x69,0x0,0x65,0x1,0x44,0x0,0x20,0x0,0x41,0x0,0x4f,0x0,0x32,
- 0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x62,0x0,0x79,0x0,0x20,0x0,0x7a,0x0,0x6d,
- 0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x69,0x1,0x7,0x0,0x20,0x0,0x6d,0x0,0x69,
- 0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6c,0x0,0x6e,0x1,0x5,0x0,0x20,
- 0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x6f,0x1,0x5b,0x1,0x7,0x0,0x20,
- 0x0,0x63,0x0,0x7a,0x0,0x65,0x0,0x6b,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x61,
- 0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x49,0x6d,0x69,0x6e,0x5f,
- 0x77,0x61,0x69,0x74,0x20,0x69,0x73,0x20,0x64,0x65,0x70,0x72,0x65,0x63,0x61,0x74,
- 0x65,0x64,0x2e,0x20,0x55,0x73,0x65,0x20,0x74,0x68,0x65,0x20,0x63,0x6c,0x69,0x65,
- 0x6e,0x74,0x20,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x20,0x66,0x6f,0x72,0x20,
- 0x6d,0x69,0x6e,0x69,0x6d,0x75,0x6d,0x20,0x77,0x61,0x69,0x74,0x20,0x69,0x6e,0x73,
- 0x74,0x65,0x61,0x64,0x21,0x7,0x0,0x0,0x0,0xa,0x44,0x65,0x6d,0x6f,0x53,0x65,
- 0x72,0x76,0x65,0x72,0x1,0x3,0x0,0x0,0xb,0x26,0x0,0x3c,0x0,0x68,0x0,0x32,
- 0x0,0x3e,0x0,0x41,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6e,0x0,0x65,
- 0x0,0x79,0x0,0x20,0x0,0x4f,0x0,0x6e,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x65,
- 0x0,0x20,0x0,0x25,0x0,0x31,0x0,0x3c,0x0,0x2f,0x0,0x68,0x0,0x32,0x0,0x3e,
- 0x0,0x53,0x0,0x79,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x6f,
- 0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x79,0x0,0x20,
- 0x0,0x73,0x1,0x5,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x65,0x0,0x6a,0x0,0x3c,
- 0x0,0x70,0x0,0x3e,0x0,0x3c,0x0,0x62,0x0,0x3e,0x0,0x4b,0x0,0x6f,0x0,0x64,
- 0x0,0x20,0x1,0x7a,0x0,0x72,0x0,0xf3,0x0,0x64,0x1,0x42,0x0,0x6f,0x0,0x77,
- 0x0,0x79,0x0,0x3a,0x0,0x3c,0x0,0x2f,0x0,0x62,0x0,0x3e,0x0,0x20,0x0,0x3c,
- 0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x3d,0x0,0x27,
- 0x0,0x68,0x0,0x74,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x3a,0x0,0x2f,0x0,0x2f,
- 0x0,0x67,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x75,0x0,0x62,0x0,0x2e,0x0,0x63,
- 0x0,0x6f,0x0,0x6d,0x0,0x2f,0x0,0x41,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x72,
- 0x0,0x6e,0x0,0x65,0x0,0x79,0x0,0x4f,0x0,0x6e,0x0,0x6c,0x0,0x69,0x0,0x6e,
- 0x0,0x65,0x0,0x2f,0x0,0x41,0x0,0x4f,0x0,0x32,0x0,0x2d,0x0,0x43,0x0,0x6c,
- 0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x27,0x0,0x3e,0x0,0x68,0x0,0x74,
- 0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x3a,0x0,0x2f,0x0,0x2f,0x0,0x67,0x0,0x69,
- 0x0,0x74,0x0,0x68,0x0,0x75,0x0,0x62,0x0,0x2e,0x0,0x63,0x0,0x6f,0x0,0x6d,
- 0x0,0x2f,0x0,0x41,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6e,0x0,0x65,
- 0x0,0x79,0x0,0x4f,0x0,0x6e,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x2f,
- 0x0,0x41,0x0,0x4f,0x0,0x32,0x0,0x2d,0x0,0x43,0x0,0x6c,0x0,0x69,0x0,0x65,
- 0x0,0x6e,0x0,0x74,0x0,0x3c,0x0,0x2f,0x0,0x61,0x0,0x3e,0x0,0x3c,0x0,0x70,
- 0x0,0x3e,0x0,0x3c,0x0,0x62,0x0,0x3e,0x0,0x47,0x1,0x42,0x0,0xf3,0x0,0x77,
- 0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x77,0x0,0xf3,
- 0x0,0x6a,0x0,0x3a,0x0,0x3c,0x0,0x2f,0x0,0x62,0x0,0x3e,0x0,0x3c,0x0,0x62,
- 0x0,0x72,0x0,0x3e,0x0,0x4f,0x0,0x6d,0x0,0x6e,0x0,0x69,0x0,0x54,0x0,0x72,
- 0x0,0x6f,0x0,0x69,0x0,0x64,0x0,0x2c,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x6f,
- 0x0,0x6e,0x0,0x65,0x0,0x64,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,
- 0x0,0x72,0x0,0x64,0x0,0x2c,0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x0,0x67,
- 0x0,0x62,0x0,0x79,0x0,0x74,0x0,0x65,0x0,0x31,0x0,0x2c,0x0,0x20,0x0,0x67,
- 0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x62,0x0,0x6f,0x0,0x79,0x0,0x70,0x0,0x72,
- 0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x2c,0x0,0x20,0x0,0x43,
- 0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x70,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x2c,
- 0x0,0x20,0x0,0x43,0x0,0x72,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6c,
- 0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x72,0x0,0x2c,
- 0x0,0x20,0x0,0x49,0x0,0x61,0x0,0x6d,0x0,0x67,0x0,0x6f,0x0,0x6f,0x0,0x66,
- 0x0,0x62,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x2c,0x0,0x20,0x0,0x69,0x0,0x6e,
- 0x0,0x31,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x3c,0x0,0x70,
- 0x0,0x3e,0x0,0x3c,0x0,0x62,0x0,0x3e,0x0,0x52,0x0,0x6f,0x0,0x7a,0x0,0x77,
- 0x0,0xf3,0x0,0x6a,0x0,0x20,0x0,0x4b,0x0,0x6c,0x0,0x69,0x0,0x65,0x0,0x6e,
- 0x0,0x74,0x0,0x61,0x0,0x3a,0x0,0x3c,0x0,0x2f,0x0,0x62,0x0,0x3e,0x0,0x3c,
- 0x0,0x62,0x0,0x72,0x0,0x3e,0x0,0x43,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x73,
- 0x0,0x30,0x0,0x32,0x0,0x2c,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x6e,0x0,0x64,
- 0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x6d,0x0,0x65,0x0,0x72,0x0,0x2c,0x0,0x20,
- 0x0,0x73,0x0,0x6b,0x0,0x79,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x76,0x0,0x69,
- 0x0,0x6e,0x0,0x67,0x0,0x3c,0x0,0x70,0x0,0x3e,0x0,0x3c,0x0,0x62,0x0,0x3e,
- 0x0,0x54,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x6e,
- 0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x51,0x0,0x41,0x0,0x3a,0x0,0x3c,0x0,0x2f,
- 0x0,0x62,0x0,0x3e,0x0,0x3c,0x0,0x62,0x0,0x72,0x0,0x3e,0x0,0x43,0x0,0x61,
- 0x0,0x73,0x0,0x65,0x0,0x79,0x0,0x43,0x0,0x61,0x0,0x7a,0x0,0x79,0x0,0x2c,
- 0x0,0x20,0x0,0x43,0x0,0x65,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x44,
- 0x0,0x65,0x0,0x77,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x2c,0x0,0x20,0x0,0x43,
- 0x0,0x68,0x0,0x65,0x0,0x77,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,
- 0x0,0x54,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x73,0x0,0x2c,
- 0x0,0x20,0x0,0x43,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x79,0x0,0x4a,0x0,0x43,
- 0x0,0x2c,0x0,0x20,0x0,0x46,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x73,
- 0x0,0x2c,0x0,0x20,0x0,0x46,0x0,0x75,0x0,0x72,0x0,0x79,0x0,0x20,0x0,0x4d,
- 0x0,0x63,0x0,0x46,0x0,0x6c,0x0,0x75,0x0,0x72,0x0,0x72,0x0,0x79,0x0,0x2c,
- 0x0,0x20,0x0,0x47,0x0,0x65,0x0,0x63,0x0,0x6b,0x0,0x2c,0x0,0x20,0x0,0x47,
- 0x0,0x69,0x0,0x6e,0x0,0x2d,0x0,0x47,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x4a,
- 0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x2c,0x0,0x20,
- 0x0,0x4d,0x0,0x69,0x0,0x6e,0x0,0x78,0x0,0x2c,0x0,0x20,0x0,0x50,0x0,0x61,
- 0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x52,0x0,0x6f,
- 0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x20,0x0,0x4f,0x0,0x76,
- 0x0,0x65,0x0,0x72,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x64,0x0,0x2c,0x0,0x20,
- 0x0,0x53,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x6c,0x0,0x69,
- 0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x69,0x0,0x6e,0x0,0x61,
- 0x0,0x63,0x0,0x7a,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x53,0x0,0x68,0x0,0x61,
- 0x0,0x6c,0x0,0x69,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x53,0x0,0x69,0x0,0x65,
- 0x0,0x72,0x0,0x72,0x0,0x61,0x0,0x2c,0x0,0x20,0x0,0x53,0x0,0x6f,0x0,0x6d,
- 0x0,0x65,0x0,0x47,0x0,0x75,0x0,0x79,0x0,0x2c,0x0,0x20,0x0,0x56,0x0,0x65,
- 0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x73,0x0,0x2c,0x0,0x20,0x0,0x57,
- 0x0,0x69,0x0,0x73,0x0,0x6f,0x0,0x3c,0x0,0x70,0x0,0x3e,0x0,0x3c,0x0,0x62,
- 0x0,0x3e,0x0,0x54,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x73,0x0,0x6c,0x0,0x61,
- 0x0,0x63,0x0,0x6a,0x0,0x65,0x0,0x3a,0x0,0x3c,0x0,0x2f,0x0,0x62,0x0,0x3e,
- 0x0,0x3c,0x0,0x62,0x0,0x72,0x0,0x3e,0x0,0x6b,0x0,0x2d,0x0,0x65,0x0,0x6d,
- 0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x28,0x4,0x20,0x4,0x43,0x4,0x41,
- 0x4,0x41,0x4,0x3a,0x4,0x38,0x4,0x39,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x50,
- 0x0,0x79,0x0,0x72,0x0,0x61,0x0,0x71,0x0,0x20,0x0,0x28,0x0,0x50,0x0,0x6f,
- 0x0,0x6c,0x0,0x73,0x0,0x6b,0x0,0x69,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x73,
- 0x0,0x63,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0x6c,
- 0x0,0x6f,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x28,0x65,0xe5,0x67,0x2c,
- 0x8a,0x9e,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x6e,0x0,0x74,
- 0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x28,0x4,0x20,0x4,0x43,
- 0x4,0x41,0x4,0x41,0x4,0x3a,0x4,0x38,0x4,0x39,0x0,0x29,0x0,0x2c,0x0,0x20,
- 0x0,0x77,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x6d,
- 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x28,0x0,0x45,0x0,0x73,0x0,0x70,0x0,0x61,
- 0x0,0xf1,0x0,0x6f,0x0,0x6c,0x0,0x2c,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x72,
- 0x0,0x74,0x0,0x75,0x0,0x67,0x0,0x75,0x0,0xea,0x0,0x73,0x0,0x29,0x0,0x3c,
- 0x0,0x70,0x0,0x3e,0x0,0x3c,0x0,0x62,0x0,0x3e,0x0,0x53,0x0,0x7a,0x0,0x63,
- 0x0,0x7a,0x0,0x65,0x0,0x67,0x0,0xf3,0x0,0x6c,0x0,0x6e,0x0,0x65,0x0,0x20,
- 0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x7a,0x0,0x69,0x1,0x19,0x0,0x6b,0x0,0x6f,
- 0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x3a,0x0,0x3c,0x0,0x2f,
- 0x0,0x62,0x0,0x3e,0x0,0x3c,0x0,0x62,0x0,0x72,0x0,0x3e,0x0,0x43,0x0,0x72,
- 0x0,0x61,0x0,0x7a,0x0,0x79,0x0,0x4a,0x0,0x43,0x0,0x20,0x0,0x28,0x0,0x64,
- 0x0,0x79,0x0,0x72,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,
- 0x0,0x77,0x0,0x79,0x0,0x64,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x20,
- 0x0,0x32,0x0,0x2e,0x0,0x38,0x0,0x29,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x4d,
- 0x0,0x61,0x0,0x78,0x0,0x69,0x0,0x6d,0x0,0x75,0x0,0x6d,0x0,0x56,0x0,0x6f,
- 0x0,0x6c,0x0,0x74,0x0,0x79,0x0,0x20,0x0,0x28,0x0,0x70,0x0,0x72,0x0,0x6f,
- 0x0,0x6d,0x0,0x6f,0x0,0x63,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x77,0x0,0x79,
- 0x0,0x64,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x32,0x0,0x2e,
- 0x0,0x38,0x0,0x29,0x0,0x3b,0x0,0x20,0x0,0x52,0x0,0x65,0x0,0x6d,0x0,0x79,
- 0x0,0x2c,0x0,0x20,0x0,0x48,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6b,0x0,0x69,
- 0x0,0x2c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x75,0x0,0x72,0x0,0x74,0x0,0x2d,
- 0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x0,0x73,0x0,0x2e,
- 0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x73,0x0,0x70,0x0,0x72,
- 0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x27,0x0,0x79,0x0,0x29,0x0,0x3b,0x0,0x20,
- 0x0,0x51,0x0,0x75,0x0,0x62,0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,
- 0x0,0x28,0x0,0x77,0x0,0x65,0x0,0x62,0x0,0x41,0x0,0x4f,0x0,0x29,0x0,0x3b,
- 0x0,0x20,0x0,0x52,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x73,0x0,0x74,
- 0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,
- 0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x77,0x0,0x61,
- 0x0,0x29,0x0,0x3b,0x0,0x20,0x0,0x44,0x0,0x72,0x0,0x61,0x0,0x78,0x0,0x69,
- 0x0,0x72,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x28,0x0,0x64,0x0,0x65,0x0,0x73,
- 0x0,0x69,0x0,0x67,0x0,0x6e,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,
- 0x0,0x72,0x0,0x66,0x0,0x65,0x0,0x6a,0x0,0x73,0x0,0x75,0x0,0x29,0x0,0x3b,
- 0x0,0x20,0x0,0x4c,0x0,0x65,0x0,0x77,0x0,0x64,0x0,0x74,0x0,0x6f,0x0,0x6e,
- 0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x41,0x0,0x72,0x0,0x67,0x0,0x6f,0x0,0x6e,
- 0x0,0x65,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x74,0x0,0x73,0x0,0x75,
- 0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x29,0x0,0x3b,
- 0x0,0x20,0x0,0x46,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x63,0x0,0x79,0x0,0x2c,
- 0x0,0x20,0x0,0x4e,0x0,0x6f,0x0,0x65,0x0,0x76,0x0,0x61,0x0,0x69,0x0,0x6e,
- 0x0,0x2c,0x0,0x20,0x0,0x43,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0,0x69,
- 0x0,0x63,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0x79,0x0,0x20,0x0,0x6f,0x0,0x72,
- 0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x46,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x74,
- 0x0,0x53,0x0,0x6f,0x0,0x72,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x41,0x0,0x4f,
- 0x0,0x31,0x0,0x29,0x0,0x3b,0x0,0x20,0x0,0x68,0x0,0x6f,0x0,0x73,0x0,0x74,
- 0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x77,0x0,0x65,
- 0x0,0x72,0x0,0xf3,0x0,0x77,0x0,0x2c,0x0,0x20,0x0,0x6d,0x0,0x69,0x0,0x73,
- 0x0,0x74,0x0,0x72,0x0,0x7a,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x67,0x0,0x69,
- 0x0,0x65,0x0,0x72,0x0,0x2c,0x0,0x20,0x0,0x74,0x0,0x77,0x0,0xf3,0x0,0x72,
- 0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x70,
- 0x0,0x72,0x0,0x61,0x0,0x77,0x0,0x2c,0x0,0x20,0x0,0x74,0x0,0x77,0x0,0xf3,
- 0x0,0x72,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,
- 0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x75,0x0,0x2c,0x0,0x20,0x0,0x69,
- 0x0,0x20,0x0,0x64,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x61,0x1,0x42,
- 0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x73,0x0,0x70,0x0,0x6f,0x1,0x42,0x0,0x65,
- 0x0,0x63,0x0,0x7a,0x0,0x6e,0x0,0x6f,0x1,0x5b,0x0,0x63,0x0,0x69,0x0,0x20,
- 0x0,0x41,0x0,0x4f,0x0,0x32,0x0,0x21,0x0,0x3c,0x0,0x70,0x0,0x3e,0x0,0x41,
- 0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6e,0x0,0x65,0x0,0x79,0x0,0x20,
- 0x0,0x4f,0x0,0x6e,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x73,
- 0x0,0x69,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x77,0x0,0x79,0x0,0x20,
- 0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x6a,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x20,
- 0x0,0x77,0x0,0x69,0x0,0x7a,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x65,
- 0x0,0x6a,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x77,0x0,0x69,0x0,0x65,0x1,0x5b,
- 0x0,0x63,0x0,0x69,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,
- 0x0,0x61,0x0,0x77,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x6f,
- 0x0,0x72,0x0,0x73,0x0,0x6b,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x63,
- 0x0,0x29,0x0,0x20,0x0,0x32,0x0,0x30,0x0,0x31,0x0,0x36,0x0,0x2d,0x0,0x32,
- 0x0,0x30,0x0,0x32,0x0,0x31,0x0,0x20,0x0,0x41,0x0,0x74,0x0,0x74,0x0,0x6f,
- 0x0,0x72,0x0,0x6e,0x0,0x65,0x0,0x79,0x0,0x20,0x0,0x4f,0x0,0x6e,0x0,0x6c,
- 0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x76,0x0,0x65,
- 0x0,0x6c,0x0,0x6f,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x7a,0x0,0x79,0x0,0x2e,
- 0x0,0x20,0x0,0x44,0x0,0x6f,0x0,0x74,0x0,0x79,0x0,0x63,0x0,0x7a,0x0,0x79,
- 0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x6a,
- 0x0,0x69,0x0,0x20,0x0,0x6f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x2d,0x0,0x73,
- 0x0,0x6f,0x0,0x75,0x0,0x72,0x0,0x63,0x0,0x65,0x0,0x2e,0x0,0x20,0x0,0x57,
- 0x0,0x73,0x0,0x7a,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x6b,0x0,0x69,0x0,0x65,
- 0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x77,0x1,0x42,
- 0x0,0x61,0x0,0x73,0x0,0x6e,0x0,0x6f,0x1,0x5b,0x0,0x63,0x0,0x69,0x0,0x20,
- 0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x65,0x1,0x7c,0x1,0x5,0x0,0x20,0x0,0x64,
- 0x0,0x6f,0x0,0x20,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x6f,0x0,0x64,
- 0x0,0x70,0x0,0x6f,0x0,0x77,0x0,0x69,0x0,0x65,0x0,0x64,0x0,0x6e,0x0,0x69,
- 0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x77,0x1,0x42,0x0,0x61,0x1,0x5b,0x0,0x63,
- 0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x2e,0x0,0x3c,
- 0x0,0x70,0x0,0x3e,0x0,0x44,0x0,0x7a,0x0,0x69,0x0,0x61,0x1,0x42,0x0,0x61,
- 0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x73,
- 0x0,0x6a,0x0,0x69,0x0,0x20,0x0,0x51,0x0,0x74,0x0,0x20,0x0,0x25,0x0,0x32,
- 0x0,0x20,0x0,0x7a,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0x69,
- 0x0,0x6b,0x0,0x69,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x64,
- 0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x42,0x0,0x41,0x0,0x53,0x0,0x53,0x0,0x2e,
- 0x0,0x3c,0x0,0x62,0x0,0x72,0x0,0x3e,0x0,0x50,0x0,0x6c,0x0,0x75,0x0,0x67,
- 0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x41,0x0,0x50,0x0,0x4e,0x0,0x47,0x0,0x20,
- 0x0,0x7a,0x0,0x61,0x1,0x42,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x61,
- 0x0,0x6e,0x0,0x79,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x33,0x0,0x3c,0x0,0x70,
- 0x0,0x3e,0x0,0x5a,0x0,0x62,0x0,0x75,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x61,
- 0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x25,0x0,0x34,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x5,0x81,0x3c,0x68,0x32,0x3e,0x41,0x74,
- 0x74,0x6f,0x72,0x6e,0x65,0x79,0x20,0x4f,0x6e,0x6c,0x69,0x6e,0x65,0x20,0x25,0x31,
- 0x3c,0x2f,0x68,0x32,0x3e,0x54,0x68,0x65,0x20,0x63,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x20,0x64,0x72,0x61,0x6d,0x61,0x20,0x73,0x69,0x6d,0x75,0x6c,0x61,0x74,
- 0x6f,0x72,0x2e,0x3c,0x70,0x3e,0x3c,0x62,0x3e,0x53,0x6f,0x75,0x72,0x63,0x65,0x20,
- 0x63,0x6f,0x64,0x65,0x3a,0x3c,0x2f,0x62,0x3e,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,
- 0x66,0x3d,0x27,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75,
- 0x62,0x2e,0x63,0x6f,0x6d,0x2f,0x41,0x74,0x74,0x6f,0x72,0x6e,0x65,0x79,0x4f,0x6e,
- 0x6c,0x69,0x6e,0x65,0x2f,0x41,0x4f,0x32,0x2d,0x43,0x6c,0x69,0x65,0x6e,0x74,0x27,
- 0x3e,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e,
- 0x63,0x6f,0x6d,0x2f,0x41,0x74,0x74,0x6f,0x72,0x6e,0x65,0x79,0x4f,0x6e,0x6c,0x69,
- 0x6e,0x65,0x2f,0x41,0x4f,0x32,0x2d,0x43,0x6c,0x69,0x65,0x6e,0x74,0x3c,0x2f,0x61,
- 0x3e,0x3c,0x70,0x3e,0x3c,0x62,0x3e,0x4d,0x61,0x6a,0x6f,0x72,0x20,0x64,0x65,0x76,
- 0x65,0x6c,0x6f,0x70,0x6d,0x65,0x6e,0x74,0x3a,0x3c,0x2f,0x62,0x3e,0x3c,0x62,0x72,
- 0x3e,0x4f,0x6d,0x6e,0x69,0x54,0x72,0x6f,0x69,0x64,0x2c,0x20,0x73,0x74,0x6f,0x6e,
- 0x65,0x64,0x44,0x69,0x73,0x63,0x6f,0x72,0x64,0x2c,0x20,0x6c,0x6f,0x6e,0x67,0x62,
- 0x79,0x74,0x65,0x31,0x2c,0x20,0x67,0x61,0x6d,0x65,0x62,0x6f,0x79,0x70,0x72,0x69,
- 0x6e,0x74,0x65,0x72,0x2c,0x20,0x43,0x65,0x72,0x61,0x70,0x74,0x65,0x72,0x2c,0x20,
- 0x43,0x72,0x79,0x73,0x74,0x61,0x6c,0x77,0x61,0x72,0x72,0x69,0x6f,0x72,0x2c,0x20,
- 0x49,0x61,0x6d,0x67,0x6f,0x6f,0x66,0x62,0x61,0x6c,0x6c,0x2c,0x20,0x69,0x6e,0x31,
- 0x74,0x69,0x61,0x74,0x65,0x3c,0x70,0x3e,0x3c,0x62,0x3e,0x43,0x6c,0x69,0x65,0x6e,
- 0x74,0x20,0x64,0x65,0x76,0x65,0x6c,0x6f,0x70,0x6d,0x65,0x6e,0x74,0x3a,0x3c,0x2f,
- 0x62,0x3e,0x3c,0x62,0x72,0x3e,0x43,0x65,0x6e,0x74,0x73,0x30,0x32,0x2c,0x20,0x77,
- 0x69,0x6e,0x64,0x72,0x61,0x6d,0x6d,0x65,0x72,0x2c,0x20,0x73,0x6b,0x79,0x65,0x64,
- 0x65,0x76,0x69,0x6e,0x67,0x3c,0x70,0x3e,0x3c,0x62,0x3e,0x51,0x41,0x20,0x74,0x65,
- 0x73,0x74,0x69,0x6e,0x67,0x3a,0x3c,0x2f,0x62,0x3e,0x3c,0x62,0x72,0x3e,0x43,0x61,
- 0x73,0x65,0x79,0x43,0x61,0x7a,0x79,0x2c,0x20,0x43,0x65,0x64,0x72,0x69,0x63,0x44,
- 0x65,0x77,0x69,0x74,0x74,0x2c,0x20,0x43,0x68,0x65,0x77,0x61,0x62,0x6c,0x65,0x20,
- 0x54,0x61,0x62,0x6c,0x65,0x74,0x73,0x2c,0x20,0x43,0x72,0x61,0x7a,0x79,0x4a,0x43,
- 0x2c,0x20,0x46,0x61,0x6e,0x74,0x6f,0x73,0x2c,0x20,0x46,0x75,0x72,0x79,0x20,0x4d,
- 0x63,0x46,0x6c,0x75,0x72,0x72,0x79,0x2c,0x20,0x47,0x65,0x63,0x6b,0x2c,0x20,0x47,
- 0x69,0x6e,0x2d,0x47,0x69,0x2c,0x20,0x4a,0x61,0x6d,0x61,0x6e,0x69,0x61,0x2c,0x20,
- 0x4d,0x69,0x6e,0x78,0x2c,0x20,0x50,0x61,0x6e,0x64,0x61,0x65,0x2c,0x20,0x52,0x6f,
- 0x62,0x6f,0x74,0x69,0x63,0x20,0x4f,0x76,0x65,0x72,0x6c,0x6f,0x72,0x64,0x2c,0x20,
- 0x53,0x68,0x61,0x64,0x6f,0x77,0x6c,0x69,0x6f,0x6e,0x73,0x20,0x28,0x61,0x6b,0x61,
- 0x20,0x53,0x68,0x61,0x6c,0x69,0x29,0x2c,0x20,0x53,0x69,0x65,0x72,0x72,0x61,0x2c,
- 0x20,0x53,0x6f,0x6d,0x65,0x47,0x75,0x79,0x2c,0x20,0x56,0x65,0x72,0x69,0x74,0x61,
- 0x73,0x2c,0x20,0x57,0x69,0x73,0x6f,0x3c,0x70,0x3e,0x3c,0x62,0x3e,0x54,0x72,0x61,
- 0x6e,0x73,0x6c,0x61,0x74,0x69,0x6f,0x6e,0x73,0x3a,0x3c,0x2f,0x62,0x3e,0x3c,0x62,
- 0x72,0x3e,0x6b,0x2d,0x65,0x6d,0x69,0x6b,0x6f,0x20,0x28,0xd0,0xa0,0xd1,0x83,0xd1,
- 0x81,0xd1,0x81,0xd0,0xba,0xd0,0xb8,0xd0,0xb9,0x29,0x2c,0x20,0x50,0x79,0x72,0x61,
- 0x71,0x20,0x28,0x50,0x6f,0x6c,0x73,0x6b,0x69,0x29,0x2c,0x20,0x73,0x63,0x61,0x74,
- 0x74,0x65,0x72,0x66,0x6c,0x6f,0x77,0x65,0x72,0x20,0x28,0xe6,0x97,0xa5,0xe6,0x9c,
- 0xac,0xe8,0xaa,0x9e,0x29,0x2c,0x20,0x76,0x69,0x6e,0x74,0x70,0x72,0x6f,0x78,0x20,
- 0x28,0xd0,0xa0,0xd1,0x83,0xd1,0x81,0xd1,0x81,0xd0,0xba,0xd0,0xb8,0xd0,0xb9,0x29,
- 0x2c,0x20,0x77,0x69,0x6e,0x64,0x72,0x61,0x6d,0x6d,0x65,0x72,0x20,0x28,0x45,0x73,
- 0x70,0x61,0xc3,0xb1,0x6f,0x6c,0x2c,0x20,0x50,0x6f,0x72,0x74,0x75,0x67,0x75,0xc3,
- 0xaa,0x73,0x29,0x3c,0x70,0x3e,0x3c,0x62,0x3e,0x53,0x70,0x65,0x63,0x69,0x61,0x6c,
- 0x20,0x74,0x68,0x61,0x6e,0x6b,0x73,0x3a,0x3c,0x2f,0x62,0x3e,0x3c,0x62,0x72,0x3e,
- 0x43,0x72,0x61,0x7a,0x79,0x4a,0x43,0x20,0x28,0x32,0x2e,0x38,0x20,0x72,0x65,0x6c,
- 0x65,0x61,0x73,0x65,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x29,0x20,0x61,
- 0x6e,0x64,0x20,0x4d,0x61,0x78,0x69,0x6d,0x75,0x6d,0x56,0x6f,0x6c,0x74,0x79,0x20,
- 0x28,0x32,0x2e,0x38,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20,0x70,0x72,0x6f,
- 0x6d,0x6f,0x74,0x69,0x6f,0x6e,0x29,0x3b,0x20,0x52,0x65,0x6d,0x79,0x2c,0x20,0x48,
- 0x69,0x62,0x69,0x6b,0x69,0x2c,0x20,0x63,0x6f,0x75,0x72,0x74,0x2d,0x72,0x65,0x63,
- 0x6f,0x72,0x64,0x73,0x2e,0x6e,0x65,0x74,0x20,0x28,0x73,0x70,0x72,0x69,0x74,0x65,
- 0x73,0x29,0x3b,0x20,0x51,0x75,0x62,0x72,0x69,0x63,0x6b,0x20,0x28,0x77,0x65,0x62,
- 0x41,0x4f,0x29,0x3b,0x20,0x52,0x75,0x65,0x20,0x28,0x77,0x65,0x62,0x73,0x69,0x74,
- 0x65,0x29,0x3b,0x20,0x44,0x72,0x61,0x78,0x69,0x72,0x63,0x68,0x20,0x28,0x55,0x49,
- 0x20,0x64,0x65,0x73,0x69,0x67,0x6e,0x29,0x3b,0x20,0x4c,0x65,0x77,0x64,0x74,0x6f,
- 0x6e,0x20,0x61,0x6e,0x64,0x20,0x41,0x72,0x67,0x6f,0x6e,0x65,0x75,0x73,0x20,0x28,
- 0x74,0x73,0x75,0x73,0x65,0x72,0x76,0x65,0x72,0x29,0x3b,0x20,0x46,0x69,0x65,0x72,
- 0x63,0x79,0x2c,0x20,0x4e,0x6f,0x65,0x76,0x61,0x69,0x6e,0x2c,0x20,0x43,0x72,0x6f,
- 0x6e,0x6e,0x69,0x63,0x6f,0x73,0x73,0x79,0x2c,0x20,0x61,0x6e,0x64,0x20,0x46,0x61,
- 0x6e,0x61,0x74,0x53,0x6f,0x72,0x73,0x20,0x28,0x41,0x4f,0x31,0x29,0x3b,0x20,0x73,
- 0x65,0x72,0x76,0x65,0x72,0x20,0x68,0x6f,0x73,0x74,0x73,0x2c,0x20,0x67,0x61,0x6d,
- 0x65,0x20,0x6d,0x61,0x73,0x74,0x65,0x72,0x73,0x2c,0x20,0x63,0x61,0x73,0x65,0x20,
- 0x6d,0x61,0x6b,0x65,0x72,0x73,0x2c,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,
- 0x63,0x72,0x65,0x61,0x74,0x6f,0x72,0x73,0x2c,0x20,0x61,0x6e,0x64,0x20,0x74,0x68,
- 0x65,0x20,0x77,0x68,0x6f,0x6c,0x65,0x20,0x41,0x4f,0x32,0x20,0x63,0x6f,0x6d,0x6d,
- 0x75,0x6e,0x69,0x74,0x79,0x21,0x3c,0x70,0x3e,0x54,0x68,0x65,0x20,0x41,0x74,0x74,
- 0x6f,0x72,0x6e,0x65,0x79,0x20,0x4f,0x6e,0x6c,0x69,0x6e,0x65,0x20,0x6e,0x65,0x74,
- 0x77,0x6f,0x72,0x6b,0x65,0x64,0x20,0x76,0x69,0x73,0x75,0x61,0x6c,0x20,0x6e,0x6f,
- 0x76,0x65,0x6c,0x20,0x70,0x72,0x6f,0x6a,0x65,0x63,0x74,0x20,0x69,0x73,0x20,0x63,
- 0x6f,0x70,0x79,0x72,0x69,0x67,0x68,0x74,0x20,0x28,0x63,0x29,0x20,0x32,0x30,0x31,
- 0x36,0x2d,0x32,0x30,0x32,0x31,0x20,0x41,0x74,0x74,0x6f,0x72,0x6e,0x65,0x79,0x20,
- 0x4f,0x6e,0x6c,0x69,0x6e,0x65,0x20,0x64,0x65,0x76,0x65,0x6c,0x6f,0x70,0x65,0x72,
- 0x73,0x2e,0x20,0x4f,0x70,0x65,0x6e,0x2d,0x73,0x6f,0x75,0x72,0x63,0x65,0x20,0x6c,
- 0x69,0x63,0x65,0x6e,0x73,0x65,0x73,0x20,0x61,0x70,0x70,0x6c,0x79,0x2e,0x20,0x41,
- 0x6c,0x6c,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x61,0x73,0x73,0x65,0x74,0x73,0x20,
- 0x61,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x70,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,
- 0x20,0x6f,0x66,0x20,0x74,0x68,0x65,0x69,0x72,0x20,0x72,0x65,0x73,0x70,0x65,0x63,
- 0x74,0x69,0x76,0x65,0x20,0x6f,0x77,0x6e,0x65,0x72,0x73,0x2e,0x3c,0x70,0x3e,0x52,
- 0x75,0x6e,0x6e,0x69,0x6e,0x67,0x20,0x6f,0x6e,0x20,0x51,0x74,0x20,0x76,0x65,0x72,
- 0x73,0x69,0x6f,0x6e,0x20,0x25,0x32,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,
- 0x20,0x42,0x41,0x53,0x53,0x20,0x61,0x75,0x64,0x69,0x6f,0x20,0x65,0x6e,0x67,0x69,
- 0x6e,0x65,0x2e,0x3c,0x62,0x72,0x3e,0x41,0x50,0x4e,0x47,0x20,0x70,0x6c,0x75,0x67,
- 0x69,0x6e,0x20,0x6c,0x6f,0x61,0x64,0x65,0x64,0x3a,0x20,0x25,0x33,0x3c,0x70,0x3e,
- 0x42,0x75,0x69,0x6c,0x74,0x20,0x6f,0x6e,0x20,0x25,0x34,0x7,0x0,0x0,0x0,0x5,
- 0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x4f,0x0,0x70,0x0,
- 0x69,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x41,0x62,0x6f,
- 0x75,0x74,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,0x0,
- 0x0,0x54,0x0,0x55,0x0,0x6d,0x0,0x6f,0x1,0x7c,0x0,0x6c,0x0,0x69,0x0,0x77,
- 0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x7a,0x0,0x6d,0x0,0x69,0x0,0x61,0x0,0x6e,
- 0x1,0x19,0x0,0x20,0x0,0x72,0x0,0xf3,0x1,0x7c,0x0,0x6e,0x0,0x79,0x0,0x63,
- 0x0,0x68,0x0,0x20,0x0,0x61,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x6b,0x0,0x74,
- 0x0,0xf3,0x0,0x77,0x0,0x20,0x0,0x6b,0x0,0x6c,0x0,0x69,0x0,0x65,0x0,0x6e,
- 0x0,0x74,0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x33,
- 0x41,0x6c,0x6c,0x6f,0x77,0x73,0x20,0x79,0x6f,0x75,0x20,0x74,0x6f,0x20,0x63,0x68,
- 0x61,0x6e,0x67,0x65,0x20,0x76,0x61,0x72,0x69,0x6f,0x75,0x73,0x20,0x61,0x73,0x70,
- 0x65,0x63,0x74,0x73,0x20,0x6f,0x66,0x20,0x74,0x68,0x65,0x20,0x63,0x6c,0x69,0x65,
- 0x6e,0x74,0x2e,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,
- 0x0,0x0,0x24,0x0,0x41,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6e,0x0,
- 0x65,0x0,0x79,0x0,0x20,0x0,0x4f,0x0,0x6e,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,
- 0x65,0x0,0x20,0x0,0x25,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x12,0x41,0x74,0x74,0x6f,0x72,0x6e,0x65,0x79,0x20,0x4f,0x6e,0x6c,0x69,0x6e,0x65,
- 0x20,0x25,0x31,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,
- 0x0,0x0,0xc,0x0,0x41,0x0,0x6e,0x0,0x75,0x0,0x6c,0x0,0x75,0x0,0x6a,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c,0x7,
- 0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,0x0,0x1,0x24,0x0,
- 0x57,0x0,0x79,0x0,0x67,0x1,0x42,0x1,0x5,0x0,0x64,0x0,0x61,0x0,0x20,0x0,
- 0x6e,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x2c,0x0,0x20,0x1,0x7c,0x0,
- 0x65,0x0,0x20,0x0,0x74,0x0,0x77,0x0,0xf3,0x0,0x6a,0x0,0x20,0x0,0x6b,0x0,
- 0x6c,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,
- 0x65,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x75,0x0,
- 0x73,0x0,0x74,0x0,0x61,0x0,0x77,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x79,0x0,
- 0x20,0x0,0x70,0x0,0x6f,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x77,0x0,0x6e,0x0,
- 0x69,0x0,0x65,0x0,0x2e,0x0,0xa,0x0,0x43,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,
- 0x70,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x1,0x42,0x0,0x65,0x1,0x5b,0x0,
- 0x20,0x0,0x77,0x0,0x73,0x0,0x7a,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x6b,0x0,
- 0x69,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x62,0x0,
- 0x79,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x77,0x0,
- 0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x20,0x0,0x74,0x0,0x69,0x0,
- 0x6e,0x0,0x79,0x0,0x2e,0x0,0x63,0x0,0x63,0x0,0x2f,0x0,0x67,0x0,0x65,0x0,
- 0x74,0x0,0x61,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x77,0x1,0x42,0x1,0x5,0x0,
- 0x63,0x0,0x7a,0x0,0x61,0x0,0x6a,0x1,0x5,0x0,0x63,0x0,0x20,0x0,0x64,0x0,
- 0x75,0x1,0x7c,0x0,0x79,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,
- 0x65,0x0,0x72,0x0,0x20,0x0,0x27,0x0,0x62,0x0,0x61,0x0,0x73,0x0,0x65,0x0,
- 0x27,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x95,0x49,0x74,0x20,
- 0x64,0x6f,0x65,0x73,0x6e,0x27,0x74,0x20,0x6c,0x6f,0x6f,0x6b,0x20,0x6c,0x69,0x6b,
- 0x65,0x20,0x79,0x6f,0x75,0x72,0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,0x20,0x69,0x73,
- 0x20,0x73,0x65,0x74,0x20,0x75,0x70,0x20,0x63,0x6f,0x72,0x72,0x65,0x63,0x74,0x6c,
- 0x79,0x2e,0xa,0x44,0x69,0x64,0x20,0x79,0x6f,0x75,0x20,0x64,0x6f,0x77,0x6e,0x6c,
- 0x6f,0x61,0x64,0x20,0x61,0x6c,0x6c,0x20,0x72,0x65,0x73,0x6f,0x75,0x72,0x63,0x65,
- 0x73,0x20,0x63,0x6f,0x72,0x72,0x65,0x63,0x74,0x6c,0x79,0x20,0x66,0x72,0x6f,0x6d,
- 0x20,0x74,0x69,0x6e,0x79,0x2e,0x63,0x63,0x2f,0x67,0x65,0x74,0x61,0x6f,0x2c,0x20,
- 0x69,0x6e,0x63,0x6c,0x75,0x64,0x69,0x6e,0x67,0x20,0x74,0x68,0x65,0x20,0x6c,0x61,
- 0x72,0x67,0x65,0x20,0x27,0x62,0x61,0x73,0x65,0x27,0x20,0x66,0x6f,0x6c,0x64,0x65,
- 0x72,0x3f,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,0x0,
- 0x0,0x12,0x1,0x41,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x6e,
- 0x0,0x69,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4c,0x6f,
- 0x61,0x64,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,
- 0x3,0x0,0x0,0x0,0xa,0x0,0x4e,0x0,0x61,0x0,0x7a,0x0,0x77,0x0,0x61,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e,0x61,0x6d,0x65,0x7,0x0,0x0,
- 0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x4e,0x0,
- 0x69,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4e,0x6f,0x7,
- 0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0xff,0xff,0xff,0xff,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4f,0x66,0x66,0x6c,0x69,0x6e,0x65,
- 0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0xff,0xff,0xff,0xff,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4f,0x6e,0x6c,0x69,0x6e,0x65,
- 0x3a,0x20,0x25,0x31,0x2f,0x25,0x32,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,
- 0x79,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x53,0x0,0x7a,0x0,0x75,0x0,0x6b,0x0,
- 0x61,0x0,0x6a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53,0x65,0x61,
- 0x72,0x63,0x68,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,
- 0x0,0x0,0x14,0x0,0x55,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x77,0x0,0x69,0x0,
- 0x65,0x0,0x6e,0x0,0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x8,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,
- 0x62,0x62,0x79,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x57,0x0,0x65,0x0,0x72,0x0,
- 0x73,0x0,0x6a,0x0,0x61,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x31,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x56,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3a,0x20,
- 0x25,0x31,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,0x0,
- 0x0,0x6,0x0,0x54,0x0,0x61,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x3,0x59,0x65,0x73,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,
- 0x3,0x0,0x0,0x0,0x10,0x0,0x4e,0x0,0x49,0x0,0x45,0x0,0x5a,0x0,0x4e,0x0,
- 0x41,0x0,0x4e,0x0,0x45,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x55,
- 0x4e,0x4b,0x4e,0x4f,0x57,0x4e,0x7,0x0,0x0,0x0,0xc,0x63,0x68,0x61,0x74,0x6c,
- 0x6f,0x67,0x70,0x69,0x65,0x63,0x65,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x42,0x1,
- 0x42,0x1,0x5,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x45,
- 0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0xf,0x64,0x65,0x62,0x75,0x67,0x5f,0x66,
- 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x73,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x42,
- 0x1,0x42,0x1,0x5,0x0,0x64,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x31,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x45,0x72,0x72,0x6f,0x72,0x3a,0x20,0x25,
- 0x31,0x7,0x0,0x0,0x0,0xf,0x64,0x65,0x62,0x75,0x67,0x5f,0x66,0x75,0x6e,0x63,
- 0x74,0x69,0x6f,0x6e,0x73,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4f,0x0,0x67,0x1,
- 0x42,0x0,0x6f,0x0,0x73,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4e,0x6f,0x74,0x69,0x63,0x65,0x7,
- 0x0,0x0,0x0,0xf,0x64,0x65,0x62,0x75,0x67,0x5f,0x66,0x75,0x6e,0x63,0x74,0x69,
- 0x6f,0x6e,0x73,0x1,0x88,0x0,0x0,0x0,0xa,0x1,0x1,0xff,0x14,0x2,0x4,0xfd,
- 0x2c,0xa,0x13,
- // /media/stoned/SHARED/Git/AO2-Client/resource/translations/ao_jp.qm
- 0x0,0x0,0xf,0x6b,
- 0x3c,
- 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0xa7,
- 0x0,0x0,0x0,0x5,0x6a,0x61,0x5f,0x4a,0x50,0x42,0x0,0x0,0x1,0xd8,0x0,0x0,
- 0x57,0x85,0x0,0x0,0x7,0xb9,0x0,0x0,0x59,0xd8,0x0,0x0,0x8,0xab,0x0,0x4,
- 0xd3,0x0,0x0,0x0,0x5,0xc8,0x0,0x5,0x48,0x35,0x0,0x0,0x7,0xb,0x0,0x5,
- 0x48,0x35,0x0,0x0,0xb,0x9e,0x0,0x5,0x56,0x45,0x0,0x0,0x7,0x31,0x0,0x5,
- 0x7b,0xba,0x0,0x0,0x3,0x40,0x0,0x1d,0xb,0x21,0x0,0x0,0xc,0x74,0x0,0x47,
- 0x96,0xc4,0x0,0x0,0x9,0x56,0x0,0x49,0x30,0x73,0x0,0x0,0x4,0xc6,0x0,0x4c,
- 0x99,0x62,0x0,0x0,0x5,0x9f,0x0,0x4c,0x99,0x62,0x0,0x0,0xc,0xd7,0x0,0x4e,
- 0xb8,0x84,0x0,0x0,0x5,0xf2,0x0,0x54,0xc9,0xf3,0x0,0x0,0x6,0xe4,0x0,0xa5,
- 0x9e,0x4e,0x0,0x0,0x0,0x4c,0x1,0x90,0x8a,0xff,0x0,0x0,0xa,0x52,0x2,0x2a,
- 0xb9,0xea,0x0,0x0,0x3,0xa0,0x2,0xc5,0x76,0x61,0x0,0x0,0x0,0x0,0x2,0xc5,
- 0x76,0x61,0x0,0x0,0x9,0xe4,0x2,0xe6,0xd3,0xa2,0x0,0x0,0x5,0x21,0x3,0x57,
- 0xb0,0x17,0x0,0x0,0x1,0x3f,0x3,0x57,0xb0,0x17,0x0,0x0,0xb,0x75,0x4,0x80,
- 0xda,0x34,0x0,0x0,0x4,0xf1,0x4,0x93,0x7,0x6a,0x0,0x0,0x2,0x16,0x4,0x98,
- 0x49,0xbc,0x0,0x0,0xa,0x28,0x5,0x1b,0xad,0x8a,0x0,0x0,0x2,0x7c,0x5,0x1c,
- 0x96,0x5a,0x0,0x0,0x2,0xac,0x5,0x38,0xaa,0xc2,0x0,0x0,0x6,0xb8,0x5,0x4c,
- 0x9f,0x6a,0x0,0x0,0x2,0xdc,0x5,0x56,0xaf,0x95,0x0,0x0,0xd,0x41,0x5,0x9b,
- 0x88,0x98,0x0,0x0,0x8,0x2d,0x5,0x9b,0x88,0x98,0x0,0x0,0xc,0x2a,0x5,0x9c,
- 0x9c,0xc2,0x0,0x0,0x8,0x55,0x5,0xcd,0x30,0x15,0x0,0x0,0xb,0xc0,0x6,0x26,
- 0x54,0x91,0x0,0x0,0x6,0x46,0x6,0x83,0xdc,0x2e,0x0,0x0,0x3,0xd7,0x6,0xb6,
- 0x6c,0xfe,0x0,0x0,0x7,0xdc,0x7,0x5f,0x40,0x71,0x0,0x0,0x8,0xfd,0x8,0xaa,
- 0xe3,0xe4,0x0,0x0,0x7,0x87,0x9,0x2d,0xc9,0x42,0x0,0x0,0x1,0x70,0x9,0x4c,
- 0x8f,0x69,0x0,0x0,0x4,0x8f,0x9,0x65,0x8e,0x11,0x0,0x0,0xd,0x6,0x9,0xc8,
- 0xb4,0xb9,0x0,0x0,0x6,0x74,0xa,0x30,0x34,0xee,0x0,0x0,0x9,0x2d,0xa,0x30,
- 0x34,0xee,0x0,0x0,0xc,0xab,0xa,0x7b,0x45,0x52,0x0,0x0,0xb,0xeb,0xb,0xaa,
- 0xd1,0x2,0x0,0x0,0x8,0xd2,0xb,0xaf,0xbd,0x1,0x0,0x0,0x7,0x55,0xb,0xcc,
- 0x5d,0x2a,0x0,0x0,0x2,0x4a,0xb,0xd2,0xf0,0x2e,0x0,0x0,0x0,0xa7,0xc,0x54,
- 0x5d,0xa2,0x0,0x0,0x5,0x5f,0xc,0xbb,0x1,0x73,0x0,0x0,0x3,0x70,0xc,0xbb,
- 0x1,0x73,0x0,0x0,0x8,0x81,0xc,0xbb,0x1,0x73,0x0,0x0,0xc,0x4e,0xe,0x9f,
- 0x90,0x9e,0x0,0x0,0x4,0x24,0xe,0x9f,0x90,0x9e,0x0,0x0,0x9,0x7d,0xe,0xc0,
- 0x3b,0xf1,0x0,0x0,0x6,0x1b,0xe,0xff,0xbf,0x42,0x0,0x0,0x1,0xc4,0xf,0xb3,
- 0xad,0xaa,0x0,0x0,0x3,0xc,0x69,0x0,0x0,0xd,0x6f,0x3,0x0,0x0,0x0,0x18,
- 0x90,0x6,0x8e,0xe2,0x88,0xc1,0x52,0x24,0x30,0xaa,0x30,0xf3,0x30,0xe9,0x30,0xa4,
- 0x30,0xf3,0x0,0x20,0x0,0x25,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x12,0x41,0x74,0x74,0x6f,0x72,0x6e,0x65,0x79,0x20,0x4f,0x6e,0x6c,0x69,0x6e,
- 0x65,0x20,0x25,0x31,0x7,0x0,0x0,0x0,0xd,0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,
- 0x63,0x61,0x74,0x69,0x6f,0x6e,0x1,0x3,0x0,0x0,0x0,0x20,0x30,0xb5,0x30,0xfc,
- 0x30,0xd0,0x30,0xfc,0x30,0x4c,0x30,0x64,0x30,0x6a,0x30,0x4c,0x30,0x89,0x30,0x6a,
- 0x30,0x4f,0x30,0x6a,0x30,0x8a,0x30,0x7e,0x30,0x57,0x30,0x5f,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x19,0x44,0x69,0x73,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,
- 0x65,0x64,0x20,0x66,0x72,0x6f,0x6d,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x2e,0x7,
- 0x0,0x0,0x0,0xd,0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,
- 0x6e,0x1,0x3,0x0,0x0,0x0,0x36,0x30,0xde,0x30,0xb9,0x30,0xbf,0x30,0xfc,0x30,
- 0xb5,0x30,0xfc,0x30,0xd0,0x30,0xfc,0x30,0x6b,0x30,0x64,0x30,0x6a,0x30,0x4c,0x30,
- 0x8a,0x30,0x7e,0x30,0x5b,0x30,0x93,0x30,0x2,0x0,0x25,0x0,0x31,0x79,0xd2,0x30,
- 0x6e,0x5f,0x8c,0x30,0x67,0x30,0x82,0x30,0x46,0x4e,0x0,0x56,0xde,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x40,0x45,0x72,0x72,0x6f,0x72,0x20,0x63,0x6f,0x6e,
- 0x6e,0x65,0x63,0x74,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x6d,0x61,0x73,0x74,0x65,
- 0x72,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x2e,0x20,0x57,0x69,0x6c,0x6c,0x20,0x74,
- 0x72,0x79,0x20,0x61,0x67,0x61,0x69,0x6e,0x20,0x69,0x6e,0x20,0x25,0x31,0x20,0x73,
- 0x65,0x63,0x6f,0x6e,0x64,0x73,0x2e,0x7,0x0,0x0,0x0,0xd,0x41,0x4f,0x41,0x70,
- 0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x1,0x3,0x0,0x0,0x0,0x8,0x30,
- 0xed,0x30,0xfc,0x30,0xc9,0x4e,0x2d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x7,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0xd,0x41,0x4f,0x41,
- 0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x1,0x3,0x0,0x0,0x0,0x1e,
- 0x30,0xad,0x30,0xe3,0x30,0xe9,0x30,0x4c,0x30,0xed,0x30,0xfc,0x30,0xc9,0x4e,0x2d,
- 0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x31,0x0,0x2f,0x0,0x25,0x0,0x32,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,
- 0x63,0x68,0x61,0x72,0x73,0x3a,0xa,0x25,0x31,0x2f,0x25,0x32,0x7,0x0,0x0,0x0,
- 0xd,0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x1,0x3,
- 0x0,0x0,0x0,0x1c,0x97,0xf3,0x69,0x7d,0x30,0x4c,0x30,0xed,0x30,0xfc,0x30,0xc9,
- 0x4e,0x2d,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x31,0x0,0x2f,0x0,0x25,0x0,0x32,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x4c,0x6f,0x61,0x64,0x69,0x6e,
- 0x67,0x20,0x6d,0x75,0x73,0x69,0x63,0x3a,0xa,0x25,0x31,0x2f,0x25,0x32,0x7,0x0,
- 0x0,0x0,0xd,0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,
- 0x1,0x3,0x0,0x0,0x0,0xa,0x30,0xd6,0x30,0xea,0x30,0xc3,0x30,0xd7,0x0,0x3a,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x42,0x6c,0x69,0x70,0x73,0x3a,
- 0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,
- 0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x6,0x5f,0x1,0x8b,0x77,0x58,0xeb,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x44,0x65,0x66,0x65,0x6e,0x73,
- 0x65,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,
- 0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x6,0x88,0xc1,0x52,0x24,
- 0x5b,0x98,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4a,0x75,0x64,0x67,
- 0x65,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,
- 0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x6,0x96,0x6a,0x5b,0xe9,
- 0x54,0xe1,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4a,0x75,0x72,0x6f,
- 0x72,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,
- 0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x6,0x97,0xf3,0x69,0x7d,
- 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4d,0x75,0x73,0x69,
- 0x63,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,
- 0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x4,0x69,0x1c,0x4e,0x8b,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x50,0x72,0x6f,0x73,0x65,0x63,
- 0x75,0x74,0x69,0x6f,0x6e,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,
- 0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x8,
- 0x52,0xb9,0x67,0x9c,0x97,0xf3,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x4,0x53,0x46,0x58,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,
- 0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x4,
- 0x8a,0x2d,0x5b,0x9a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x65,
- 0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,
- 0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x6,
- 0x8a,0x18,0x93,0x32,0x5b,0x98,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,
- 0x53,0x74,0x65,0x6e,0x6f,0x67,0x72,0x61,0x70,0x68,0x65,0x72,0x3a,0x7,0x0,0x0,
- 0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0x0,0x0,0x0,0x1c,0x65,0xb0,0x30,0x57,0x30,0x44,0x8a,0x3c,0x62,
- 0xe0,0x30,0x92,0x4e,0xd8,0x30,0x51,0x52,0xa0,0x30,0x48,0x30,0x8b,0x0,0x2e,0x0,
- 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x41,0x64,0x64,
- 0x20,0x6e,0x65,0x77,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x2e,0x2e,0x2e,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0x1a,0x30,0xaf,0x30,0xe9,0x30,0xa4,0x30,0xa2,0x30,0xf3,0x30,0xc8,
- 0x30,0x67,0x59,0x9,0x66,0xf4,0x30,0x67,0x30,0x4d,0x30,0x7e,0x30,0x59,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x33,0x41,0x6c,0x6c,0x6f,0x77,0x73,0x20,0x79,
- 0x6f,0x75,0x20,0x74,0x6f,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x20,0x76,0x61,0x72,
- 0x69,0x6f,0x75,0x73,0x20,0x61,0x73,0x70,0x65,0x63,0x74,0x73,0x20,0x6f,0x66,0x20,
- 0x74,0x68,0x65,0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,0x2e,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xc,0x30,
- 0xed,0x30,0xd3,0x30,0xfc,0x30,0x6b,0x62,0x3b,0x30,0x8b,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0xd,0x42,0x61,0x63,0x6b,0x20,0x74,0x6f,0x20,0x4c,0x6f,0x62,
- 0x62,0x79,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,
- 0x1,0x3,0x0,0x0,0x0,0x8,0x30,0xd6,0x30,0xea,0x30,0xc3,0x30,0xd7,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x42,0x6c,0x69,0x70,0x73,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0xc,0x30,0xaf,0x30,0xe9,0x30,0xa4,0x30,0xa2,0x30,0xf3,0x30,0xc8,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x4c,0x49,0x45,0x4e,0x54,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0x12,0x30,0xe2,0x30,0xc7,0x30,0xec,0x30,0xfc,0x30,0xbf,0x30,0xfc,0x30,0x92,0x54,
- 0x7c,0x30,0x76,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x43,0x61,0x6c,
- 0x6c,0x20,0x4d,0x6f,0x64,0x65,0x72,0x61,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x12,0x30,
- 0xad,0x30,0xe3,0x30,0xe9,0x30,0x92,0x59,0x9,0x66,0xf4,0x30,0x57,0x30,0x7e,0x30,
- 0x59,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x43,0x68,0x61,0x6e,0x67,
- 0x65,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x6,0x30,
- 0xa8,0x30,0xe9,0x30,0xfc,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x45,
- 0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x8,0x30,0xd5,0x30,0xea,0x30,0xc3,0x30,0xd7,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x6c,0x69,0x70,0x7,0x0,
- 0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,
- 0x0,0x6,0x30,0xac,0x30,0xfc,0x30,0xc9,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x5,0x47,0x75,0x61,0x72,0x64,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x6,0x67,0x9,0x7f,0x6a,0xff,
- 0x1,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x47,0x75,0x69,0x6c,0x74,
- 0x79,0x21,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,
- 0x1,0x3,0x0,0x0,0x0,0x8,0x5f,0x85,0x30,0x63,0x30,0x5f,0xff,0x1,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x48,0x6f,0x6c,0x64,0x20,0x49,0x74,0x21,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0x18,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x0,0x20,0x0,0x28,
- 0x0,0x2a,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,0x0,0x29,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0xe,0x49,0x6d,0x61,0x67,0x65,0x73,0x20,0x28,0x2a,0x2e,
- 0x70,0x6e,0x67,0x29,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x8,0x30,0xde,0x30,0xb9,0x30,0xbf,0x30,0xfc,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4d,0x61,0x73,0x74,0x65,0x72,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0x4,0x97,0xf3,0x69,0x7d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x5,0x4d,0x75,0x73,0x69,0x63,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x4,0x54,0xd,0x52,0x4d,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e,0x61,0x6d,0x65,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0x2,0x71,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e,0x6f,0x6e,
- 0x65,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,
- 0x3,0x0,0x0,0x0,0xa,0x61,0xf,0x7f,0xa9,0x30,0x42,0x30,0x8a,0x0,0x21,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x4f,0x62,0x6a,0x65,0x63,0x74,0x69,
- 0x6f,0x6e,0x21,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0xc,0x30,0xd1,0x30,0xfc,0x30,0xb9,0x30,0xef,0x30,
- 0xfc,0x30,0xc9,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x50,0x61,0x73,
- 0x73,0x77,0x6f,0x72,0x64,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,
- 0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x2,0x52,0x4d,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x3,0x50,0x72,0x65,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,
- 0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x14,0x30,0xb5,0x30,0xfc,
- 0x30,0xd0,0x30,0xfc,0x30,0xea,0x30,0xb9,0x30,0xc8,0x30,0x6b,0x62,0x3b,0x30,0x8b,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1f,0x52,0x65,0x74,0x75,0x72,0x6e,
- 0x20,0x62,0x61,0x63,0x6b,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x72,
- 0x76,0x65,0x72,0x20,0x6c,0x69,0x73,0x74,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,
- 0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x4,0x69,0x1c,0x7d,
- 0x22,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53,0x65,0x61,0x72,0x63,
- 0x68,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,
- 0x3,0x0,0x0,0x0,0x8,0x30,0xb5,0x30,0xfc,0x30,0xd0,0x30,0xfc,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53,0x65,0x72,0x76,0x65,0x72,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0x4,0x8a,0x2d,0x5b,0x9a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,
- 0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x6,0x52,0xb9,0x67,0x9c,0x97,
- 0xf3,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x53,0x66,0x78,0x7,0x0,
- 0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,
- 0x0,0x4,0x89,0xb3,0x5b,0xa2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,
- 0x53,0x70,0x65,0x63,0x74,0x61,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,
- 0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x8,0x30,0x4f,0x30,
- 0x89,0x30,0x48,0xff,0x1,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x54,
- 0x61,0x6b,0x65,0x20,0x54,0x68,0x61,0x74,0x21,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,
- 0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x4,0x67,0x2a,0x77,
- 0xe5,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x55,0x4e,0x4b,0x4e,0x4f,
- 0x57,0x4e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,
- 0x1,0x3,0x0,0x0,0x0,0x8,0x30,0x6b,0x30,0x64,0x30,0x44,0x30,0x66,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x41,0x62,0x6f,0x75,0x74,0x7,0x0,0x0,
- 0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,0x0,0x0,0x1a,0x30,0xaf,0x30,
- 0xe9,0x30,0xa4,0x30,0xa2,0x30,0xf3,0x30,0xc8,0x30,0x67,0x59,0x9,0x66,0xf4,0x30,
- 0x67,0x30,0x4d,0x30,0x7e,0x30,0x59,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x33,0x41,0x6c,0x6c,0x6f,0x77,0x73,0x20,0x79,0x6f,0x75,0x20,0x74,0x6f,0x20,0x63,
- 0x68,0x61,0x6e,0x67,0x65,0x20,0x76,0x61,0x72,0x69,0x6f,0x75,0x73,0x20,0x61,0x73,
- 0x70,0x65,0x63,0x74,0x73,0x20,0x6f,0x66,0x20,0x74,0x68,0x65,0x20,0x63,0x6c,0x69,
- 0x65,0x6e,0x74,0x2e,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,
- 0x0,0x0,0x0,0x18,0x90,0x6,0x8e,0xe2,0x88,0xc1,0x52,0x24,0x30,0xaa,0x30,0xf3,
- 0x30,0xe9,0x30,0xa4,0x30,0xf3,0x0,0x20,0x0,0x25,0x0,0x31,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x12,0x41,0x74,0x74,0x6f,0x72,0x6e,0x65,0x79,0x20,0x4f,
- 0x6e,0x6c,0x69,0x6e,0x65,0x20,0x25,0x31,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,
- 0x62,0x79,0x1,0x3,0x0,0x0,0x0,0xa,0x30,0xad,0x30,0xe3,0x30,0xf3,0x30,0xbb,
- 0x30,0xeb,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x61,0x6e,0x63,
- 0x65,0x6c,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,0x0,
- 0x0,0x74,0x30,0xaf,0x30,0xe9,0x30,0xa4,0x30,0xa2,0x30,0xf3,0x30,0xc8,0x30,0x6e,
- 0x8a,0x2d,0x5b,0x9a,0x30,0x4c,0x6b,0x63,0x30,0x57,0x30,0x4f,0x30,0x6a,0x30,0x44,
- 0x30,0x4b,0x30,0x82,0x30,0x57,0x30,0x8c,0x30,0x7e,0x30,0x5b,0x30,0x93,0x30,0x2,
- 0x30,0xc,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x79,0x0,0x2e,0x0,0x63,0x0,0x63,
- 0x0,0x2f,0x0,0x67,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x6f,0x30,0xd,0x30,0x4b,
- 0x30,0x89,0x30,0x6e,0x30,0xd5,0x30,0xa1,0x30,0xa4,0x30,0xeb,0x30,0x92,0x30,0xc0,
- 0x30,0xa6,0x30,0xf3,0x30,0xed,0x30,0xfc,0x30,0xc9,0x30,0x57,0x30,0x7e,0x30,0x57,
- 0x30,0x5f,0x30,0x4b,0xff,0x1f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x95,
- 0x49,0x74,0x20,0x64,0x6f,0x65,0x73,0x6e,0x27,0x74,0x20,0x6c,0x6f,0x6f,0x6b,0x20,
- 0x6c,0x69,0x6b,0x65,0x20,0x79,0x6f,0x75,0x72,0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,
- 0x20,0x69,0x73,0x20,0x73,0x65,0x74,0x20,0x75,0x70,0x20,0x63,0x6f,0x72,0x72,0x65,
- 0x63,0x74,0x6c,0x79,0x2e,0xa,0x44,0x69,0x64,0x20,0x79,0x6f,0x75,0x20,0x64,0x6f,
- 0x77,0x6e,0x6c,0x6f,0x61,0x64,0x20,0x61,0x6c,0x6c,0x20,0x72,0x65,0x73,0x6f,0x75,
- 0x72,0x63,0x65,0x73,0x20,0x63,0x6f,0x72,0x72,0x65,0x63,0x74,0x6c,0x79,0x20,0x66,
- 0x72,0x6f,0x6d,0x20,0x74,0x69,0x6e,0x79,0x2e,0x63,0x63,0x2f,0x67,0x65,0x74,0x61,
- 0x6f,0x2c,0x20,0x69,0x6e,0x63,0x6c,0x75,0x64,0x69,0x6e,0x67,0x20,0x74,0x68,0x65,
- 0x20,0x6c,0x61,0x72,0x67,0x65,0x20,0x27,0x62,0x61,0x73,0x65,0x27,0x20,0x66,0x6f,
- 0x6c,0x64,0x65,0x72,0x3f,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,
- 0x3,0x0,0x0,0x0,0x8,0x30,0xed,0x30,0xfc,0x30,0xc9,0x4e,0x2d,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x7,0x0,
- 0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,0x0,0x0,0x4,0x54,0xd,
- 0x52,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e,0x61,0x6d,0x65,
- 0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,0x0,0x0,0xa,
- 0x30,0xaa,0x30,0xd5,0x30,0xe9,0x30,0xa4,0x30,0xf3,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x7,0x4f,0x66,0x66,0x6c,0x69,0x6e,0x65,0x7,0x0,0x0,0x0,0x5,
- 0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,0x0,0x0,0x18,0x30,0xaa,0x30,0xf3,0x30,
- 0xe9,0x30,0xa4,0x30,0xf3,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x31,0x0,0x2f,0x0,
- 0x25,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4f,0x6e,0x6c,
- 0x69,0x6e,0x65,0x3a,0x20,0x25,0x31,0x2f,0x25,0x32,0x7,0x0,0x0,0x0,0x5,0x4c,
- 0x6f,0x62,0x62,0x79,0x1,0x3,0x0,0x0,0x0,0x4,0x69,0x1c,0x7d,0x22,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53,0x65,0x61,0x72,0x63,0x68,0x7,0x0,
- 0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,0x0,0x0,0x4,0x8a,0x2d,
- 0x5b,0x9a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x74,0x74,
- 0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,
- 0x0,0x0,0x0,0x12,0x30,0xd0,0x30,0xfc,0x30,0xb8,0x30,0xe7,0x30,0xf3,0x0,0x3a,
- 0x0,0x20,0x0,0x25,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,
- 0x56,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3a,0x20,0x25,0x31,0x7,0x0,0x0,0x0,0x5,
- 0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,0x0,0x0,0x4,0x67,0x2a,0x77,0xe5,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x55,0x4e,0x4b,0x4e,0x4f,0x57,0x4e,
- 0x7,0x0,0x0,0x0,0xc,0x63,0x68,0x61,0x74,0x6c,0x6f,0x67,0x70,0x69,0x65,0x63,
- 0x65,0x1,0x3,0x0,0x0,0x0,0x6,0x30,0xa8,0x30,0xe9,0x30,0xfc,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x45,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,
- 0xf,0x64,0x65,0x62,0x75,0x67,0x5f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x73,
- 0x1,0x3,0x0,0x0,0x0,0xe,0x30,0xa8,0x30,0xe9,0x30,0xfc,0x0,0x3a,0x0,0x20,
- 0x0,0x25,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x45,0x72,
- 0x72,0x6f,0x72,0x3a,0x20,0x25,0x31,0x7,0x0,0x0,0x0,0xf,0x64,0x65,0x62,0x75,
- 0x67,0x5f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x73,0x1,0x3,0x0,0x0,0x0,
- 0x4,0x90,0x1a,0x77,0xe5,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4e,
- 0x6f,0x74,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0xf,0x64,0x65,0x62,0x75,0x67,0x5f,
- 0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x73,0x1,
- // /media/stoned/SHARED/Git/AO2-Client/resource/translations/ao_ru.qm
- 0x0,0x0,0xce,0xc,
- 0x3c,
- 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0xa7,
- 0x0,0x0,0x0,0x5,0x72,0x75,0x5f,0x52,0x55,0x42,0x0,0x0,0x8,0xe8,0x0,0x0,
- 0x5,0x4f,0x0,0x0,0xc2,0xbc,0x0,0x0,0x44,0x3d,0x0,0x0,0x5d,0xcb,0x0,0x0,
- 0x48,0xa,0x0,0x0,0x18,0x7b,0x0,0x0,0x57,0x85,0x0,0x0,0x85,0x24,0x0,0x0,
- 0x59,0xd8,0x0,0x0,0x96,0x9,0x0,0x0,0x5f,0xc3,0x0,0x0,0xc3,0xe9,0x0,0x4,
- 0xd3,0x0,0x0,0x0,0x78,0xe3,0x0,0x5,0x48,0x35,0x0,0x0,0x7f,0x70,0x0,0x5,
- 0x48,0x35,0x0,0x0,0xc2,0x90,0x0,0x5,0x56,0x45,0x0,0x0,0x80,0xc2,0x0,0x5,
- 0x7b,0xba,0x0,0x0,0x3f,0x8d,0x0,0x1d,0xb,0x21,0x0,0x0,0xc3,0xb0,0x0,0x30,
- 0x7f,0x4a,0x0,0x0,0x1b,0xea,0x0,0x33,0x9c,0xa,0x0,0x0,0x1e,0x9e,0x0,0x47,
- 0x96,0xc4,0x0,0x0,0xbf,0x7c,0x0,0x48,0xba,0xff,0x0,0x0,0x16,0x6f,0x0,0x49,
- 0x30,0x73,0x0,0x0,0x62,0x57,0x0,0x4c,0x99,0x62,0x0,0x0,0x77,0x1a,0x0,0x4c,
- 0x99,0x62,0x0,0x0,0xc4,0x38,0x0,0x4e,0xb8,0x84,0x0,0x0,0x79,0x80,0x0,0x54,
- 0xc9,0xf3,0x0,0x0,0x7f,0x41,0x0,0x5a,0x81,0xbe,0x0,0x0,0x9b,0x10,0x0,0x5b,
- 0xee,0x2e,0x0,0x0,0x7c,0x33,0x0,0x5c,0xcf,0x9e,0x0,0x0,0x7a,0x52,0x0,0x73,
- 0x9c,0x8e,0x0,0x0,0x54,0x24,0x0,0x74,0x22,0x2e,0x0,0x0,0x2e,0xb9,0x0,0x81,
- 0x97,0x4e,0x0,0x0,0x48,0x25,0x0,0x8b,0xa2,0x99,0x0,0x0,0x8e,0x24,0x0,0x9a,
- 0x6c,0xca,0x0,0x0,0x1c,0x56,0x0,0xa0,0x39,0x3e,0x0,0x0,0x6a,0xc,0x0,0xa5,
- 0x9e,0x4e,0x0,0x0,0x0,0x58,0x0,0xa9,0xc1,0x3e,0x0,0x0,0x5a,0x69,0x0,0xb7,
- 0xb7,0x3e,0x0,0x0,0x94,0x59,0x0,0xc6,0xda,0xde,0x0,0x0,0x33,0x87,0x0,0xd1,
- 0x29,0xfe,0x0,0x0,0x22,0x3a,0x0,0xf4,0x21,0x9e,0x0,0x0,0xa5,0x11,0x1,0x8,
- 0x6f,0x91,0x0,0x0,0x97,0xfe,0x1,0x8,0xc3,0x9a,0x0,0x0,0x1b,0x51,0x1,0xb,
- 0xd3,0x5e,0x0,0x0,0x7e,0xa1,0x1,0xe,0x4a,0x51,0x0,0x0,0x67,0x78,0x1,0x11,
- 0x0,0x3,0x0,0x0,0x6e,0xeb,0x1,0x36,0x85,0x9e,0x0,0x0,0x6f,0x4c,0x1,0x6a,
- 0x19,0x1a,0x0,0x0,0x4b,0x9f,0x1,0x6d,0x91,0xe4,0x0,0x0,0x9f,0xed,0x1,0x71,
- 0x35,0x8e,0x0,0x0,0x9b,0x3d,0x1,0x71,0xfc,0x57,0x0,0x0,0xad,0x3f,0x1,0x90,
- 0x8a,0xff,0x0,0x0,0xc0,0xc4,0x1,0x93,0xcc,0xe7,0x0,0x0,0x97,0x99,0x1,0xc6,
- 0x62,0xee,0x0,0x0,0x1d,0x29,0x1,0xd4,0x4c,0xee,0x0,0x0,0x28,0x18,0x1,0xec,
- 0xca,0xde,0x0,0x0,0x64,0xc7,0x1,0xf4,0xee,0x2e,0x0,0x0,0x71,0x61,0x1,0xf6,
- 0xca,0x3e,0x0,0x0,0x41,0xbb,0x2,0x21,0x83,0xba,0x0,0x0,0x17,0xa3,0x2,0x2a,
- 0xb9,0xea,0x0,0x0,0x4a,0xc0,0x2,0x48,0x6f,0xbe,0x0,0x0,0x87,0xe6,0x2,0x5b,
- 0x7c,0x2e,0x0,0x0,0x8d,0x49,0x2,0x61,0xf3,0x4e,0x0,0x0,0x4,0x12,0x2,0x77,
- 0xf8,0xaa,0x0,0x0,0x16,0xa2,0x2,0x7c,0x19,0x8a,0x0,0x0,0x17,0xf1,0x2,0x89,
- 0x29,0x7e,0x0,0x0,0x56,0xcd,0x2,0x89,0xc1,0x81,0x0,0x0,0xaa,0xb1,0x2,0x92,
- 0x1b,0xfe,0x0,0x0,0xa0,0x21,0x2,0xb5,0x2d,0xae,0x0,0x0,0x62,0x88,0x2,0xc5,
- 0x76,0x61,0x0,0x0,0x0,0x0,0x2,0xc5,0x76,0x61,0x0,0x0,0xc0,0x48,0x2,0xc6,
- 0xd5,0xca,0x0,0x0,0x17,0x5d,0x2,0xe6,0xd3,0xa2,0x0,0x0,0x64,0x31,0x2,0xf7,
- 0xb3,0xca,0x0,0x0,0x37,0x50,0x3,0x2a,0x59,0x7e,0x0,0x0,0x8a,0x53,0x3,0x32,
- 0x44,0x60,0x0,0x0,0x31,0x68,0x3,0x37,0x52,0xde,0x0,0x0,0x69,0xb,0x3,0x3e,
- 0x21,0x33,0x0,0x0,0x18,0xa8,0x3,0x4c,0x3,0x4e,0x0,0x0,0x70,0x29,0x3,0x4f,
- 0x76,0x7e,0x0,0x0,0x8c,0xa7,0x3,0x57,0xb0,0x17,0x0,0x0,0x1,0xd1,0x3,0x57,
- 0xb0,0x17,0x0,0x0,0xc2,0x5f,0x3,0x69,0x45,0x7a,0x0,0x0,0x4b,0x48,0x3,0x74,
- 0x34,0x8a,0x0,0x0,0x19,0x60,0x3,0xba,0xa8,0xe5,0x0,0x0,0x7b,0xf0,0x3,0xca,
- 0x97,0x85,0x0,0x0,0x7e,0x6a,0x3,0xd6,0xdf,0x45,0x0,0x0,0x3f,0x39,0x3,0xdb,
- 0x87,0x6a,0x0,0x0,0x37,0xb9,0x3,0xe3,0x60,0x4a,0x0,0x0,0x36,0xa6,0x3,0xf4,
- 0x58,0xee,0x0,0x0,0x32,0x63,0x3,0xf6,0xdf,0x45,0x0,0x0,0x87,0x98,0x4,0x6,
- 0x4a,0xb1,0x0,0x0,0x79,0xf2,0x4,0x8,0xf0,0xbe,0x0,0x0,0x8b,0xb7,0x4,0x3f,
- 0x13,0xca,0x0,0x0,0x4e,0xc7,0x4,0x49,0x96,0x8a,0x0,0x0,0x19,0xb6,0x4,0x50,
- 0x17,0xc4,0x0,0x0,0xa,0xbc,0x4,0x80,0xda,0x34,0x0,0x0,0x63,0xb8,0x4,0x82,
- 0xfd,0x59,0x0,0x0,0x8b,0x61,0x4,0x86,0xaf,0x2e,0x0,0x0,0xc,0x8f,0x4,0x87,
- 0xdc,0xba,0x0,0x0,0x10,0x89,0x4,0x92,0x8,0xb2,0x0,0x0,0x79,0x15,0x4,0x92,
- 0x65,0x9a,0x0,0x0,0x4c,0x5,0x4,0x93,0x7,0x6a,0x0,0x0,0x18,0x41,0x4,0x98,
- 0x49,0xbc,0x0,0x0,0xc0,0x98,0x4,0x98,0xa0,0x47,0x0,0x0,0x18,0xe5,0x4,0x98,
- 0xa0,0x47,0x0,0x0,0x65,0x13,0x4,0x9c,0x6,0xae,0x0,0x0,0x59,0xc4,0x4,0xb8,
- 0x6b,0xe3,0x0,0x0,0xad,0xf0,0x4,0xd2,0xef,0xfe,0x0,0x0,0x20,0x65,0x4,0xdd,
- 0x4a,0xde,0x0,0x0,0x2b,0x95,0x4,0xe0,0xf6,0x35,0x0,0x0,0x85,0xa2,0x4,0xeb,
- 0x2f,0xa,0x0,0x0,0x36,0x6f,0x4,0xf6,0x74,0xde,0x0,0x0,0x21,0x40,0x5,0x1b,
- 0xad,0x8a,0x0,0x0,0x35,0x97,0x5,0x1c,0x96,0x5a,0x0,0x0,0x35,0xcd,0x5,0x38,
- 0xaa,0xc2,0x0,0x0,0x7e,0x3a,0x5,0x4c,0x9f,0x6a,0x0,0x0,0x3c,0x59,0x5,0x56,
- 0xaf,0x95,0x0,0x0,0xc4,0xae,0x5,0x61,0x3,0x44,0x0,0x0,0xb,0xb7,0x5,0x96,
- 0x60,0xba,0x0,0x0,0x16,0x16,0x5,0x9b,0x88,0x98,0x0,0x0,0x8d,0x1b,0x5,0x9b,
- 0x88,0x98,0x0,0x0,0xc3,0x52,0x5,0x9c,0x9c,0xc2,0x0,0x0,0x8d,0xf4,0x5,0xae,
- 0xc3,0x8a,0x0,0x0,0x52,0xb4,0x5,0xcd,0x30,0x15,0x0,0x0,0xc2,0xde,0x5,0xf4,
- 0x15,0xa4,0x0,0x0,0xaf,0x21,0x6,0x26,0x54,0x91,0x0,0x0,0x7a,0x22,0x6,0x2d,
- 0x36,0x3e,0x0,0x0,0x5c,0xb5,0x6,0x60,0x3a,0x14,0x0,0x0,0x9d,0x4c,0x6,0x73,
- 0x98,0x7e,0x0,0x0,0xa2,0xd6,0x6,0x83,0xdc,0x2e,0x0,0x0,0x5d,0xf2,0x6,0x86,
- 0x8a,0xd9,0x0,0x0,0x7c,0x79,0x6,0x8b,0xb5,0x54,0x0,0x0,0x9f,0xbc,0x6,0xb6,
- 0x6c,0xfe,0x0,0x0,0x8a,0xec,0x6,0xc6,0x1c,0x9e,0x0,0x0,0x14,0xfb,0x6,0xd8,
- 0xf0,0x5e,0x0,0x0,0x38,0xaa,0x6,0xe4,0x3a,0x33,0x0,0x0,0x97,0x25,0x6,0xf2,
- 0x42,0x9a,0x0,0x0,0x4f,0x1a,0x6,0xf8,0x3f,0x1e,0x0,0x0,0x73,0xbf,0x7,0x1f,
- 0x3b,0x1e,0x0,0x0,0xa8,0x7,0x7,0x55,0xb3,0xce,0x0,0x0,0x13,0xa1,0x7,0x5d,
- 0x43,0x91,0x0,0x0,0x9a,0xb0,0x7,0x5e,0xae,0x64,0x0,0x0,0x5d,0x23,0x7,0x5e,
- 0xae,0x74,0x0,0x0,0x5d,0x79,0x7,0x5f,0x40,0x71,0x0,0x0,0x9a,0xe0,0x7,0x64,
- 0xf9,0x6f,0x0,0x0,0xae,0xdd,0x7,0x6a,0xd3,0xde,0x0,0x0,0x7d,0xc0,0x7,0x7e,
- 0x12,0xce,0x0,0x0,0x9b,0xa7,0x7,0x8b,0x84,0xad,0x0,0x0,0x85,0x61,0x7,0x92,
- 0x89,0x9,0x0,0x0,0x91,0xb9,0x7,0x93,0x1e,0x9e,0x0,0x0,0x95,0x3d,0x7,0x9f,
- 0x6c,0xb3,0x0,0x0,0xae,0x49,0x7,0xad,0x58,0x6e,0x0,0x0,0x63,0x3d,0x7,0xd3,
- 0x14,0x2e,0x0,0x0,0x49,0xc0,0x7,0xdc,0x3d,0xbe,0x0,0x0,0x23,0x41,0x7,0xe0,
- 0x1a,0x4f,0x0,0x0,0x76,0x8,0x7,0xf9,0x3b,0xfa,0x0,0x0,0xa,0x1b,0x8,0x2b,
- 0x9,0x3a,0x0,0x0,0x4c,0x57,0x8,0x2e,0x78,0xc4,0x0,0x0,0x64,0x7d,0x8,0x3c,
- 0x76,0x59,0x0,0x0,0x1c,0xf5,0x8,0x40,0xf,0xbe,0x0,0x0,0xa0,0xd6,0x8,0x48,
- 0x10,0x3e,0x0,0x0,0x4c,0xd4,0x8,0x49,0x6f,0x6e,0x0,0x0,0x89,0x26,0x8,0x66,
- 0x21,0xea,0x0,0x0,0x1a,0x15,0x8,0x72,0x3c,0xfe,0x0,0x0,0x72,0x50,0x8,0x82,
- 0xd3,0xb4,0x0,0x0,0xb,0x8,0x8,0x99,0x50,0xfe,0x0,0x0,0x10,0xdf,0x8,0xaa,
- 0xe3,0xe4,0x0,0x0,0x82,0x2f,0x8,0xb3,0x26,0x9e,0x0,0x0,0x29,0x8b,0x8,0xb8,
- 0xa6,0x4a,0x0,0x0,0x86,0x9c,0x8,0xcb,0x30,0x7e,0x0,0x0,0x6d,0xb1,0x8,0xdc,
- 0xf5,0x2e,0x0,0x0,0x5e,0x51,0x8,0xe0,0x7,0x3e,0x0,0x0,0x3e,0x6c,0x8,0xe0,
- 0x7,0x3e,0x0,0x0,0x86,0xd1,0x9,0x4,0x4f,0x11,0x0,0x0,0x7,0xce,0x9,0x13,
- 0x10,0xee,0x0,0x0,0x4f,0x69,0x9,0x25,0x56,0x7e,0x0,0x0,0x1e,0xee,0x9,0x2d,
- 0xc9,0x42,0x0,0x0,0x2,0xa,0x9,0x3c,0x6,0xae,0x0,0x0,0x66,0xa0,0x9,0x3d,
- 0xef,0x3a,0x0,0x0,0x38,0x5c,0x9,0x42,0x7b,0xe1,0x0,0x0,0xac,0xf8,0x9,0x45,
- 0x92,0xfe,0x0,0x0,0x3d,0xa0,0x9,0x4c,0x8f,0x69,0x0,0x0,0x61,0x11,0x9,0x5c,
- 0xb,0x5e,0x0,0x0,0x99,0x82,0x9,0x65,0x8e,0x11,0x0,0x0,0xc4,0x6d,0x9,0x8a,
- 0x4,0xea,0x0,0x0,0x19,0x21,0x9,0x8d,0xf6,0xe1,0x0,0x0,0x80,0xea,0x9,0xa2,
- 0x27,0x1e,0x0,0x0,0xa7,0xba,0x9,0xae,0xf9,0x3a,0x0,0x0,0x4e,0x8a,0x9,0xbb,
- 0x17,0xd1,0x0,0x0,0x9,0xb,0x9,0xc8,0xb4,0xb9,0x0,0x0,0x7b,0x9e,0x9,0xf7,
- 0x73,0xca,0x0,0x0,0x37,0xfa,0x9,0xf8,0xba,0xe,0x0,0x0,0x77,0x49,0x9,0xfb,
- 0x69,0xba,0x0,0x0,0x1a,0xee,0x9,0xfe,0x27,0x8a,0x0,0x0,0x16,0xf7,0xa,0x21,
- 0x3c,0x1e,0x0,0x0,0x5b,0xfc,0xa,0x25,0xf3,0x8e,0x0,0x0,0x12,0x3e,0xa,0x30,
- 0x34,0xee,0x0,0x0,0xa3,0xd9,0xa,0x30,0x34,0xee,0x0,0x0,0xc4,0xa,0xa,0x35,
- 0x5e,0x71,0x0,0x0,0x63,0xe8,0xa,0x50,0xfd,0xce,0x0,0x0,0x2,0xd6,0xa,0x7b,
- 0x45,0x52,0x0,0x0,0xc3,0x11,0xa,0x85,0xfd,0xa9,0x0,0x0,0x81,0xd9,0xa,0x95,
- 0x12,0xfe,0x0,0x0,0x3a,0xc2,0xa,0x9c,0x9,0x81,0x0,0x0,0xac,0x3c,0xa,0xb0,
- 0xb4,0xb5,0x0,0x0,0x5e,0xfd,0xa,0xbc,0x8c,0x74,0x0,0x0,0x71,0xad,0xa,0xd7,
- 0x53,0x8a,0x0,0x0,0x36,0xeb,0xa,0xe3,0xe2,0x14,0x0,0x0,0x82,0x61,0xa,0xe5,
- 0x47,0xba,0x0,0x0,0x3c,0x91,0xa,0xf8,0x17,0x4,0x0,0x0,0xb,0x5d,0xb,0x14,
- 0x21,0x9,0x0,0x0,0x5f,0xd0,0xb,0x2a,0x64,0x7e,0x0,0x0,0xa6,0x24,0xb,0x33,
- 0xc3,0x8e,0x0,0x0,0x74,0x7d,0xb,0xa3,0x6,0x39,0x0,0x0,0xae,0x85,0xb,0xa7,
- 0x67,0xe7,0x0,0x0,0xc,0x18,0xb,0xaa,0xd1,0x2,0x0,0x0,0x97,0x64,0xb,0xaf,
- 0xbd,0x1,0x0,0x0,0x81,0x26,0xb,0xb7,0xd2,0xfe,0x0,0x0,0x2a,0x80,0xb,0xc1,
- 0x4f,0x8e,0x0,0x0,0x54,0xf9,0xb,0xc8,0x17,0x9a,0x0,0x0,0x35,0x37,0xb,0xcc,
- 0x5d,0x2a,0x0,0x0,0x1b,0xb0,0xb,0xd2,0xf0,0x2e,0x0,0x0,0x0,0xd3,0xb,0xf8,
- 0x7e,0x2e,0x0,0x0,0x73,0xc,0xc,0x1b,0xfe,0x7e,0x0,0x0,0x57,0xc5,0xc,0x2d,
- 0x1a,0xf1,0x0,0x0,0xac,0xb0,0xc,0x38,0x78,0xde,0x0,0x0,0x45,0x1d,0xc,0x3a,
- 0x32,0x3e,0x0,0x0,0x52,0xe8,0xc,0x46,0x2c,0xc3,0x0,0x0,0x98,0xe4,0xc,0x54,
- 0x5d,0xa2,0x0,0x0,0x65,0x49,0xc,0x55,0xec,0x1e,0x0,0x0,0x3c,0xeb,0xc,0x65,
- 0x27,0x6e,0x0,0x0,0x51,0x88,0xc,0x78,0x8e,0x4e,0x0,0x0,0x83,0xf,0xc,0x7a,
- 0x74,0xbe,0x0,0x0,0x78,0xd,0xc,0x7f,0xf2,0x1e,0x0,0x0,0x61,0x56,0xc,0x86,
- 0x7,0x3e,0x0,0x0,0x65,0x99,0xc,0xbb,0x1,0x73,0x0,0x0,0x4a,0x82,0xc,0xbb,
- 0x1,0x73,0x0,0x0,0x95,0xd1,0xc,0xbb,0x1,0x73,0x0,0x0,0xc3,0x7c,0xc,0xbd,
- 0x72,0x9e,0x0,0x0,0xab,0x9f,0xc,0xe0,0xa9,0xbe,0x0,0x0,0x80,0x32,0xc,0xe2,
- 0xdf,0x55,0x0,0x0,0x71,0xea,0xc,0xf9,0x5e,0xae,0x0,0x0,0x9c,0x6f,0xc,0xfe,
- 0x9c,0x9e,0x0,0x0,0x30,0xa0,0xd,0x4,0x5f,0x59,0x0,0x0,0x7c,0xca,0xd,0xf,
- 0x4e,0x6e,0x0,0x0,0x46,0x9f,0xd,0x4c,0x1d,0x31,0x0,0x0,0x81,0x62,0xd,0x58,
- 0x98,0x6e,0x0,0x0,0xa3,0x58,0xd,0x9a,0x50,0xf3,0x0,0x0,0x7f,0xa0,0xd,0xd4,
- 0x95,0x41,0x0,0x0,0xa8,0x5f,0xd,0xd7,0xfc,0x1e,0x0,0x0,0x26,0x6a,0xd,0xe6,
- 0x8f,0x6a,0x0,0x0,0x1c,0x92,0xd,0xec,0xf9,0xc3,0x0,0x0,0x78,0x5e,0xd,0xfd,
- 0xd,0x22,0x0,0x0,0x9,0xa1,0xe,0x13,0x1f,0xfe,0x0,0x0,0x44,0x4,0xe,0x30,
- 0x3,0xa5,0x0,0x0,0xad,0x98,0xe,0x30,0x6d,0x3e,0x0,0x0,0x58,0xc8,0xe,0x44,
- 0x82,0x3a,0x0,0x0,0x36,0xb,0xe,0x7e,0xd9,0xce,0x0,0x0,0x45,0xda,0xe,0x87,
- 0xe7,0x64,0x0,0x0,0xa,0x6c,0xe,0x89,0xf0,0x4e,0x0,0x0,0x96,0x44,0xe,0x9f,
- 0x90,0x9e,0x0,0x0,0x5f,0x35,0xe,0x9f,0x90,0x9e,0x0,0x0,0xbf,0xb1,0xe,0xa8,
- 0x94,0x77,0x0,0x0,0x82,0xa7,0xe,0xb1,0x2b,0xce,0x0,0x0,0x53,0x8d,0xe,0xb2,
- 0x85,0xee,0x0,0x0,0x2d,0x52,0xe,0xb4,0x8c,0x1,0x0,0x0,0x8,0x69,0xe,0xc0,
- 0x3b,0xf1,0x0,0x0,0x79,0xbd,0xe,0xd0,0x9d,0x8e,0x0,0x0,0x84,0x7,0xe,0xdc,
- 0xdd,0xce,0x0,0x0,0x25,0x62,0xe,0xf1,0x38,0xce,0x0,0x0,0x89,0xb3,0xe,0xff,
- 0xbf,0x42,0x0,0x0,0x2,0x74,0xf,0x2,0x2,0x21,0x0,0x0,0xa1,0xbd,0xf,0x47,
- 0x35,0x8e,0x0,0x0,0x24,0x52,0xf,0x48,0xb8,0x5a,0x0,0x0,0x1a,0x85,0xf,0x55,
- 0xd9,0xd1,0x0,0x0,0x71,0x4,0xf,0x60,0xe2,0x5e,0x0,0x0,0x3f,0xd1,0xf,0x66,
- 0x94,0x9e,0x0,0x0,0x6d,0x77,0xf,0x6e,0x43,0xa5,0x0,0x0,0x96,0xf9,0xf,0xa1,
- 0x93,0xca,0x0,0x0,0x4b,0xb,0xf,0xaf,0x1f,0x4f,0x0,0x0,0x76,0x91,0xf,0xb3,
- 0xad,0xaa,0x0,0x0,0x3e,0x28,0xf,0xc6,0x3f,0xf3,0x0,0x0,0x77,0xaa,0xf,0xcb,
- 0x37,0xde,0x0,0x0,0x27,0x5f,0xf,0xd2,0xf,0x4e,0x0,0x0,0x34,0x42,0xf,0xd3,
- 0x69,0x3e,0x0,0x0,0x47,0xa5,0xf,0xe9,0x8a,0xbe,0x0,0x0,0x99,0xf4,0xf,0xef,
- 0x55,0x95,0x0,0x0,0x9a,0x67,0xf,0xf4,0x81,0xe1,0x0,0x0,0xa4,0x4,0xf,0xfd,
- 0x3b,0x5a,0x0,0x0,0x10,0x31,0x69,0x0,0x0,0xc4,0xee,0x3,0x0,0x0,0x0,0x24,
- 0x0,0x41,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6e,0x0,0x65,0x0,0x79,
- 0x0,0x20,0x0,0x4f,0x0,0x6e,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,
- 0x0,0x25,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x41,0x74,
- 0x74,0x6f,0x72,0x6e,0x65,0x79,0x20,0x4f,0x6e,0x6c,0x69,0x6e,0x65,0x20,0x25,0x31,
- 0x7,0x0,0x0,0x0,0xd,0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,
- 0x6f,0x6e,0x1,0x3,0x0,0x0,0x0,0x40,0x4,0x21,0x4,0x3e,0x4,0x35,0x4,0x34,
- 0x4,0x38,0x4,0x3d,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x35,0x0,0x20,0x4,0x41,
- 0x0,0x20,0x4,0x41,0x4,0x35,0x4,0x40,0x4,0x32,0x4,0x35,0x4,0x40,0x4,0x3e,
- 0x4,0x3c,0x0,0x20,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x3e,0x4,0x40,0x4,0x32,
- 0x4,0x30,0x4,0x3d,0x4,0x3e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x19,0x44,0x69,0x73,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x20,0x66,
- 0x72,0x6f,0x6d,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0xd,
- 0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x1,0x3,0x0,
- 0x0,0x0,0x9c,0x4,0x1e,0x4,0x48,0x4,0x38,0x4,0x31,0x4,0x3a,0x4,0x30,0x0,
- 0x20,0x4,0x41,0x4,0x3e,0x4,0x35,0x4,0x34,0x4,0x38,0x4,0x3d,0x4,0x35,0x4,
- 0x3d,0x4,0x38,0x4,0x4f,0x0,0x20,0x4,0x41,0x0,0x20,0x4,0x33,0x4,0x3b,0x4,
- 0x30,0x4,0x32,0x4,0x3d,0x4,0x4b,0x4,0x3c,0x0,0x20,0x4,0x41,0x4,0x35,0x4,
- 0x40,0x4,0x32,0x4,0x35,0x4,0x40,0x4,0x3e,0x4,0x3c,0x0,0x2e,0x0,0x20,0x4,
- 0x1f,0x4,0x3e,0x4,0x32,0x4,0x42,0x4,0x3e,0x4,0x40,0x4,0x3d,0x4,0x30,0x4,
- 0x4f,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x3f,0x4,0x4b,0x4,0x42,0x4,0x3a,0x4,
- 0x30,0x0,0x20,0x4,0x41,0x4,0x3e,0x4,0x35,0x4,0x34,0x4,0x38,0x4,0x3d,0x4,
- 0x35,0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,0x20,0x4,0x47,0x4,0x35,0x4,0x40,0x4,
- 0x35,0x4,0x37,0x0,0x20,0x0,0x25,0x0,0x31,0x0,0x20,0x4,0x41,0x0,0x2e,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x40,0x45,0x72,0x72,0x6f,0x72,0x20,0x63,
- 0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x6d,0x61,0x73,
- 0x74,0x65,0x72,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x2e,0x20,0x57,0x69,0x6c,0x6c,
- 0x20,0x74,0x72,0x79,0x20,0x61,0x67,0x61,0x69,0x6e,0x20,0x69,0x6e,0x20,0x25,0x31,
- 0x20,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x2e,0x7,0x0,0x0,0x0,0xd,0x41,0x4f,
- 0x41,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x1,0x3,0x0,0x0,0x0,
- 0x10,0x4,0x17,0x4,0x30,0x4,0x33,0x4,0x40,0x4,0x43,0x4,0x37,0x4,0x3a,0x4,
- 0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4c,0x6f,0x61,0x64,0x69,
- 0x6e,0x67,0x7,0x0,0x0,0x0,0xd,0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,0x63,0x61,
- 0x74,0x69,0x6f,0x6e,0x1,0x3,0x0,0x0,0x0,0x34,0x4,0x17,0x4,0x30,0x4,0x33,
- 0x4,0x40,0x4,0x43,0x4,0x37,0x4,0x3a,0x4,0x30,0x0,0x20,0x4,0x3f,0x4,0x35,
- 0x4,0x40,0x4,0x41,0x4,0x3e,0x4,0x3d,0x4,0x30,0x4,0x36,0x4,0x35,0x4,0x39,
- 0x0,0x3a,0x0,0xa,0x0,0x25,0x0,0x31,0x0,0x2f,0x0,0x25,0x0,0x32,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,
- 0x63,0x68,0x61,0x72,0x73,0x3a,0xa,0x25,0x31,0x2f,0x25,0x32,0x7,0x0,0x0,0x0,
- 0xd,0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x1,0x3,
- 0x0,0x0,0x0,0x2c,0x4,0x17,0x4,0x30,0x4,0x33,0x4,0x40,0x4,0x43,0x4,0x37,
- 0x4,0x3a,0x4,0x30,0x0,0x20,0x4,0x3c,0x4,0x43,0x4,0x37,0x4,0x4b,0x4,0x3a,
- 0x4,0x38,0x0,0x3a,0x0,0xa,0x0,0x25,0x0,0x31,0x0,0x2f,0x0,0x25,0x0,0x32,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x4c,0x6f,0x61,0x64,0x69,0x6e,
- 0x67,0x20,0x6d,0x75,0x73,0x69,0x63,0x3a,0xa,0x25,0x31,0x2f,0x25,0x32,0x7,0x0,
- 0x0,0x0,0xd,0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,
- 0x1,0x3,0x0,0x0,0x0,0xca,0x4,0x23,0x4,0x41,0x4,0x42,0x4,0x30,0x4,0x40,
- 0x4,0x35,0x4,0x32,0x4,0x48,0x4,0x30,0x4,0x4f,0x0,0x20,0x4,0x32,0x4,0x35,
- 0x4,0x40,0x4,0x41,0x4,0x38,0x4,0x4f,0x0,0x21,0x0,0x20,0x4,0x23,0x0,0x20,
- 0x4,0x32,0x4,0x30,0x4,0x41,0x0,0x20,0x4,0x43,0x4,0x41,0x4,0x42,0x4,0x30,
- 0x4,0x3d,0x4,0x3e,0x4,0x32,0x4,0x3b,0x4,0x35,0x4,0x3d,0x4,0x30,0x0,0x20,
- 0x4,0x32,0x4,0x35,0x4,0x40,0x4,0x41,0x4,0x38,0x4,0x4f,0x0,0x20,0x0,0x25,
- 0x0,0x31,0x0,0xa,0x4,0x1f,0x4,0x40,0x4,0x3e,0x4,0x39,0x4,0x34,0x4,0x38,
- 0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x3d,0x4,0x30,0x0,0x20,0x4,0x41,0x4,0x30,
- 0x4,0x39,0x4,0x42,0x0,0x20,0x0,0x61,0x0,0x63,0x0,0x65,0x0,0x61,0x0,0x74,
- 0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6e,0x0,0x65,0x0,0x79,0x0,0x6f,0x0,0x6e,
- 0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x2e,0x0,0x63,0x0,0x6f,0x0,0x6d,
- 0x0,0x20,0x4,0x34,0x4,0x3b,0x4,0x4f,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x3d,
- 0x4,0x3e,0x4,0x32,0x4,0x3b,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,0x2e,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x50,0x4f,0x75,0x74,0x64,0x61,0x74,
- 0x65,0x64,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x21,0x20,0x59,0x6f,0x75,0x72,
- 0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3a,0x20,0x25,0x31,0xa,0x50,0x6c,0x65,
- 0x61,0x73,0x65,0x20,0x67,0x6f,0x20,0x74,0x6f,0x20,0x61,0x63,0x65,0x61,0x74,0x74,
- 0x6f,0x72,0x6e,0x65,0x79,0x6f,0x6e,0x6c,0x69,0x6e,0x65,0x2e,0x63,0x6f,0x6d,0x20,
- 0x74,0x6f,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x2e,0x7,0x0,0x0,0x0,0xd,0x41,
- 0x4f,0x41,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x1,0x3,0x0,0x0,
- 0x2,0x78,0x4,0x1d,0x4,0x35,0x0,0x20,0x4,0x43,0x4,0x34,0x4,0x30,0x4,0x3b,
- 0x4,0x3e,0x4,0x41,0x4,0x4c,0x0,0x20,0x4,0x41,0x4,0x3e,0x4,0x35,0x4,0x34,
- 0x4,0x38,0x4,0x3d,0x4,0x38,0x4,0x42,0x4,0x4c,0x4,0x41,0x4,0x4f,0x0,0x20,
- 0x4,0x41,0x0,0x20,0x4,0x33,0x4,0x3b,0x4,0x30,0x4,0x32,0x4,0x3d,0x4,0x4b,
- 0x4,0x3c,0x0,0x20,0x4,0x41,0x4,0x35,0x4,0x40,0x4,0x32,0x4,0x35,0x4,0x40,
- 0x4,0x3e,0x4,0x3c,0x0,0x2e,0x0,0xa,0x4,0x1c,0x4,0x4b,0x0,0x20,0x4,0x38,
- 0x4,0x41,0x4,0x3f,0x4,0x3e,0x4,0x3b,0x4,0x4c,0x4,0x37,0x4,0x43,0x4,0x35,
- 0x4,0x3c,0x0,0x20,0x4,0x3d,0x4,0x35,0x4,0x41,0x4,0x3a,0x4,0x3e,0x4,0x3b,
- 0x4,0x4c,0x4,0x3a,0x4,0x3e,0x0,0x20,0x4,0x33,0x4,0x3b,0x4,0x30,0x4,0x32,
- 0x4,0x3d,0x4,0x4b,0x4,0x45,0x0,0x20,0x4,0x41,0x4,0x35,0x4,0x40,0x4,0x32,
- 0x4,0x35,0x4,0x40,0x4,0x3e,0x4,0x32,0x0,0x20,0x4,0x34,0x4,0x3b,0x4,0x4f,
- 0x0,0x20,0x4,0x42,0x4,0x3e,0x4,0x33,0x4,0x3e,0x0,0x2c,0x0,0x20,0x4,0x47,
- 0x4,0x42,0x4,0x3e,0x4,0x31,0x4,0x4b,0x0,0x20,0x4,0x41,0x4,0x3e,0x4,0x3a,
- 0x4,0x40,0x4,0x30,0x4,0x42,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x32,
- 0x4,0x40,0x4,0x35,0x4,0x3c,0x4,0x4f,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x3e,
- 0x4,0x41,0x4,0x42,0x4,0x3e,0x4,0x4f,0x0,0x2c,0x0,0x20,0x4,0x3d,0x4,0x3e,
- 0x0,0x20,0x4,0x3a,0x4,0x3b,0x4,0x38,0x4,0x35,0x4,0x3d,0x4,0x42,0x0,0x20,
- 0x4,0x3f,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,0x31,
- 0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x3b,0x0,0x20,0x4,0x32,0x4,0x41,0x4,0x35,
- 0x0,0x20,0x4,0x32,0x4,0x3e,0x4,0x37,0x4,0x3c,0x4,0x3e,0x4,0x36,0x4,0x3d,
- 0x4,0x4b,0x4,0x35,0x0,0x20,0x4,0x32,0x4,0x30,0x4,0x40,0x4,0x38,0x4,0x30,
- 0x4,0x3d,0x4,0x42,0x4,0x4b,0x0,0x20,0x4,0x38,0x0,0x20,0x4,0x3d,0x4,0x35,
- 0x0,0x20,0x4,0x41,0x4,0x3c,0x4,0x3e,0x4,0x33,0x0,0x20,0x4,0x3f,0x4,0x3e,
- 0x4,0x34,0x4,0x3a,0x4,0x3b,0x4,0x4e,0x4,0x47,0x4,0x38,0x4,0x42,0x4,0x4c,
- 0x4,0x41,0x4,0x4f,0x0,0x20,0x4,0x3d,0x4,0x38,0x0,0x20,0x4,0x3a,0x0,0x20,
- 0x4,0x3e,0x4,0x34,0x4,0x3d,0x4,0x3e,0x4,0x3c,0x4,0x43,0x0,0x20,0x4,0x38,
- 0x4,0x37,0x0,0x20,0x4,0x41,0x4,0x35,0x4,0x40,0x4,0x32,0x4,0x35,0x4,0x40,
- 0x4,0x3e,0x4,0x32,0x0,0x2e,0x0,0xa,0x4,0x1f,0x4,0x3e,0x4,0x36,0x4,0x30,
- 0x4,0x3b,0x4,0x43,0x4,0x39,0x4,0x41,0x4,0x42,0x4,0x30,0x0,0x2c,0x0,0x20,
- 0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x35,0x4,0x40,0x4,0x4c,0x4,0x42,
- 0x4,0x35,0x0,0x20,0x4,0x32,0x4,0x30,0x4,0x48,0x4,0x38,0x0,0x20,0x4,0x3d,
- 0x4,0x30,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x39,0x4,0x3a,0x4,0x38,
- 0x0,0x20,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x43,0x4,0x3d,0x4,0x34,0x4,0x3c,
- 0x4,0x30,0x4,0x43,0x4,0x4d,0x4,0x40,0x4,0x30,0x0,0x20,0x4,0x38,0x0,0x20,
- 0x4,0x41,0x4,0x3e,0x4,0x35,0x4,0x34,0x4,0x38,0x4,0x3d,0x4,0x35,0x4,0x3d,
- 0x4,0x38,0x4,0x35,0x0,0x20,0x4,0x41,0x0,0x20,0x4,0x18,0x4,0x3d,0x4,0x42,
- 0x4,0x35,0x4,0x40,0x4,0x3d,0x4,0x35,0x4,0x42,0x4,0x3e,0x4,0x3c,0x0,0x20,
- 0x4,0x3f,0x4,0x3e,0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,0x31,0x4,0x43,0x4,0x39,
- 0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x37,
- 0x4,0x30,0x4,0x39,0x4,0x42,0x4,0x38,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x1,0x22,0x54,0x68,0x65,0x72,0x65,0x20,0x77,0x61,0x73,0x20,0x61,0x6e,
- 0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6e,
- 0x67,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x6d,0x61,0x73,0x74,0x65,0x72,0x20,
- 0x73,0x65,0x72,0x76,0x65,0x72,0x2e,0xa,0x57,0x65,0x20,0x64,0x65,0x70,0x6c,0x6f,
- 0x79,0x20,0x6d,0x75,0x6c,0x74,0x69,0x70,0x6c,0x65,0x20,0x6d,0x61,0x73,0x74,0x65,
- 0x72,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x73,0x20,0x74,0x6f,0x20,0x6d,0x69,0x74,
- 0x69,0x67,0x61,0x74,0x65,0x20,0x61,0x6e,0x79,0x20,0x70,0x6f,0x73,0x73,0x69,0x62,
- 0x6c,0x65,0x20,0x64,0x6f,0x77,0x6e,0x74,0x69,0x6d,0x65,0x2c,0x20,0x62,0x75,0x74,
- 0x20,0x74,0x68,0x65,0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,0x20,0x61,0x70,0x70,0x65,
- 0x61,0x72,0x73,0x20,0x74,0x6f,0x20,0x68,0x61,0x76,0x65,0x20,0x65,0x78,0x68,0x61,
- 0x75,0x73,0x74,0x65,0x64,0x20,0x61,0x6c,0x6c,0x20,0x70,0x6f,0x73,0x73,0x69,0x62,
- 0x6c,0x65,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x73,0x20,0x6f,0x66,0x20,0x66,0x69,
- 0x6e,0x64,0x69,0x6e,0x67,0x20,0x61,0x6e,0x64,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,
- 0x74,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x6f,0x6e,0x65,0x2e,0xa,0x50,0x6c,0x65,
- 0x61,0x73,0x65,0x20,0x63,0x68,0x65,0x63,0x6b,0x20,0x79,0x6f,0x75,0x72,0x20,0x49,
- 0x6e,0x74,0x65,0x72,0x6e,0x65,0x74,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,
- 0x6f,0x6e,0x20,0x61,0x6e,0x64,0x20,0x66,0x69,0x72,0x65,0x77,0x61,0x6c,0x6c,0x2c,
- 0x20,0x61,0x6e,0x64,0x20,0x70,0x6c,0x65,0x61,0x73,0x65,0x20,0x74,0x72,0x79,0x20,
- 0x61,0x67,0x61,0x69,0x6e,0x2e,0x7,0x0,0x0,0x0,0xd,0x41,0x4f,0x41,0x70,0x70,
- 0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x1,0x3,0x0,0x0,0x0,0x50,0x4,0x12,
- 0x4,0x4b,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x31,0x4,0x30,0x4,0x3d,0x4,0x35,
- 0x4,0x3d,0x4,0x4b,0x0,0x20,0x4,0x3d,0x4,0x30,0x0,0x20,0x4,0x4d,0x4,0x42,
- 0x4,0x3e,0x4,0x3c,0x0,0x20,0x4,0x41,0x4,0x35,0x4,0x40,0x4,0x32,0x4,0x35,
- 0x4,0x40,0x4,0x35,0x0,0x2e,0x0,0xa,0x4,0x1f,0x4,0x40,0x4,0x38,0x4,0x47,
- 0x4,0x38,0x4,0x3d,0x4,0x30,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x31,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x29,0x59,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,
- 0x62,0x61,0x6e,0x6e,0x65,0x64,0x20,0x6f,0x6e,0x20,0x74,0x68,0x69,0x73,0x20,0x73,
- 0x65,0x72,0x76,0x65,0x72,0x2e,0xa,0x52,0x65,0x61,0x73,0x6f,0x6e,0x3a,0x20,0x25,
- 0x31,0x7,0x0,0x0,0x0,0xd,0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,
- 0x69,0x6f,0x6e,0x1,0x3,0x0,0x0,0x0,0x50,0x4,0x12,0x4,0x4b,0x0,0x20,0x4,
- 0x31,0x4,0x4b,0x4,0x3b,0x4,0x38,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x31,0x4,
- 0x30,0x4,0x3d,0x4,0x35,0x4,0x3d,0x4,0x4b,0x0,0x20,0x4,0x3d,0x4,0x30,0x0,
- 0x20,0x4,0x41,0x4,0x35,0x4,0x40,0x4,0x32,0x4,0x35,0x4,0x40,0x4,0x35,0x0,
- 0x2e,0x0,0xa,0x4,0x1f,0x4,0x40,0x4,0x38,0x4,0x47,0x4,0x38,0x4,0x3d,0x4,
- 0x30,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x30,0x59,0x6f,0x75,0x20,0x68,0x61,0x76,0x65,0x20,0x62,0x65,0x65,0x6e,
- 0x20,0x62,0x61,0x6e,0x6e,0x65,0x64,0x20,0x66,0x72,0x6f,0x6d,0x20,0x74,0x68,0x65,
- 0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x2e,0xa,0x52,0x65,0x61,0x73,0x6f,0x6e,0x3a,
- 0x20,0x25,0x31,0x7,0x0,0x0,0x0,0xd,0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,0x63,
- 0x61,0x74,0x69,0x6f,0x6e,0x1,0x3,0x0,0x0,0x0,0x44,0x4,0x12,0x4,0x30,0x4,
- 0x41,0x0,0x20,0x4,0x32,0x4,0x4b,0x4,0x3f,0x4,0x3d,0x4,0x43,0x4,0x3b,0x4,
- 0x38,0x0,0x20,0x4,0x41,0x0,0x20,0x4,0x41,0x4,0x35,0x4,0x40,0x4,0x32,0x4,
- 0x35,0x4,0x40,0x4,0x30,0x0,0x2e,0x0,0xa,0x4,0x1f,0x4,0x40,0x4,0x38,0x4,
- 0x47,0x4,0x38,0x4,0x3d,0x4,0x30,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x31,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x30,0x59,0x6f,0x75,0x20,0x68,0x61,0x76,
- 0x65,0x20,0x62,0x65,0x65,0x6e,0x20,0x6b,0x69,0x63,0x6b,0x65,0x64,0x20,0x66,0x72,
- 0x6f,0x6d,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x2e,0xa,0x52,
- 0x65,0x61,0x73,0x6f,0x6e,0x3a,0x20,0x25,0x31,0x7,0x0,0x0,0x0,0xd,0x41,0x4f,
- 0x41,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x1,0x3,0x0,0x0,0x0,
- 0x42,0x4,0x1e,0x4,0x31,0x4,0x4a,0x4,0x4f,0x4,0x32,0x4,0x3b,0x4,0x35,0x4,
- 0x3d,0x4,0x38,0x4,0x35,0x0,0x20,0x4,0x3e,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,
- 0x3e,0x4,0x32,0x4,0x35,0x4,0x34,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x38,0x0,
- 0x20,0x4,0x37,0x4,0x30,0x4,0x41,0x4,0x35,0x4,0x34,0x4,0x30,0x4,0x3d,0x4,
- 0x38,0x4,0x4f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x43,0x61,0x73,
- 0x65,0x20,0x41,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x72,0x7,0x0,0x0,0x0,0x15,
- 0x41,0x4f,0x43,0x61,0x73,0x65,0x41,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x72,0x44,
- 0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x1c,0x4,0x1d,0x4,0x30,0x4,
- 0x37,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x35,0x0,0x20,0x4,0x34,0x4,
- 0x35,0x4,0x3b,0x4,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0xb,0x43,0x61,0x73,0x65,0x20,0x74,0x69,0x74,0x6c,0x65,0x3a,0x7,0x0,0x0,0x0,
- 0x15,0x41,0x4f,0x43,0x61,0x73,0x65,0x41,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x72,
- 0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x18,0x4,0x1d,0x4,0x43,
- 0x4,0x36,0x4,0x3d,0x4,0x30,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x49,0x4,0x38,
- 0x4,0x42,0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x44,0x65,
- 0x66,0x65,0x6e,0x73,0x65,0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x7,0x0,0x0,0x0,
- 0x15,0x41,0x4f,0x43,0x61,0x73,0x65,0x41,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x72,
- 0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x16,0x4,0x1d,0x4,0x43,
- 0x4,0x36,0x4,0x35,0x4,0x3d,0x0,0x20,0x4,0x41,0x4,0x43,0x4,0x34,0x4,0x4c,
- 0x4,0x4f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4a,0x75,0x64,0x67,
- 0x65,0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x7,0x0,0x0,0x0,0x15,0x41,0x4f,0x43,
- 0x61,0x73,0x65,0x41,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x72,0x44,0x69,0x61,0x6c,
- 0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x1e,0x4,0x1d,0x4,0x43,0x4,0x36,0x4,0x3d,
- 0x4,0x4b,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x38,0x4,0x41,0x4,0x4f,0x4,0x36,
- 0x4,0x3d,0x4,0x4b,0x4,0x35,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,
- 0x4a,0x75,0x72,0x6f,0x72,0x73,0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x7,0x0,0x0,
- 0x0,0x15,0x41,0x4f,0x43,0x61,0x73,0x65,0x41,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,
- 0x72,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x1e,0x4,0x1d,0x4,
- 0x43,0x4,0x36,0x4,0x3d,0x4,0x3e,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x32,0x4,
- 0x38,0x4,0x3d,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x35,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x6f,0x73,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,
- 0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x7,0x0,0x0,0x0,0x15,0x41,0x4f,0x43,0x61,
- 0x73,0x65,0x41,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x72,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0x0,0x0,0x0,0x24,0x4,0x1d,0x4,0x43,0x4,0x36,0x4,0x35,0x4,
- 0x3d,0x0,0x20,0x4,0x41,0x4,0x42,0x4,0x35,0x4,0x3d,0x4,0x3e,0x4,0x33,0x4,
- 0x40,0x4,0x30,0x4,0x44,0x4,0x38,0x4,0x41,0x4,0x42,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x13,0x53,0x74,0x65,0x6e,0x6f,0x67,0x72,0x61,0x70,0x68,0x65,
- 0x72,0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x7,0x0,0x0,0x0,0x15,0x41,0x4f,0x43,
- 0x61,0x73,0x65,0x41,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x72,0x44,0x69,0x61,0x6c,
- 0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x20,0x0,0x2d,0x0,0x20,0x4,0x41,
- 0x4,0x3e,0x4,0x45,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x42,0x4,0x4c,
- 0x0,0x20,0x4,0x42,0x4,0x35,0x4,0x3a,0x4,0x43,0x4,0x49,0x4,0x38,0x4,0x35,
- 0x0,0x20,0x4,0x3d,0x4,0x30,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x39,
- 0x4,0x3a,0x4,0x38,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x20,0x2d,
- 0x20,0x4b,0x65,0x65,0x70,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x73,0x65,
- 0x74,0x74,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,
- 0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x2,0x6c,0x0,
- 0x3c,0x0,0x68,0x0,0x74,0x0,0x6d,0x0,0x6c,0x0,0x3e,0x0,0x3c,0x0,0x68,0x0,
- 0x65,0x0,0x61,0x0,0x64,0x0,0x2f,0x0,0x3e,0x0,0x3c,0x0,0x62,0x0,0x6f,0x0,
- 0x64,0x0,0x79,0x0,0x3e,0x4,0x12,0x4,0x32,0x4,0x35,0x4,0x34,0x4,0x38,0x4,
- 0x42,0x4,0x35,0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x3b,0x4,
- 0x35,0x0,0x20,0x4,0x32,0x4,0x4b,0x4,0x48,0x4,0x35,0x0,0x20,0x4,0x41,0x4,
- 0x32,0x4,0x3e,0x4,0x38,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x37,0x4,0x4b,0x4,
- 0x32,0x4,0x3d,0x4,0x4b,0x4,0x35,0x0,0x2e,0x0,0x20,0x4,0x15,0x4,0x41,0x4,
- 0x3b,0x4,0x38,0x0,0x20,0x4,0x3a,0x4,0x42,0x4,0x3e,0x0,0x2d,0x4,0x42,0x4,
- 0x3e,0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x47,0x4,0x30,0x4,0x42,0x4,0x35,0x0,
- 0x20,0x4,0x3d,0x4,0x30,0x4,0x3f,0x4,0x38,0x4,0x48,0x4,0x35,0x4,0x42,0x0,
- 0x20,0x4,0x38,0x4,0x45,0x0,0x2c,0x0,0x20,0x4,0x32,0x4,0x4b,0x0,0x20,0x4,
- 0x43,0x4,0x41,0x4,0x3b,0x4,0x4b,0x4,0x48,0x4,0x38,0x4,0x42,0x4,0x35,0x0,
- 0x20,0x4,0x37,0x4,0x32,0x4,0x43,0x4,0x3a,0x4,0x3e,0x4,0x32,0x4,0x3e,0x4,
- 0x39,0x0,0x20,0x4,0x41,0x4,0x38,0x4,0x33,0x4,0x3d,0x4,0x30,0x4,0x3b,0x0,
- 0x2e,0x0,0x20,0x4,0x20,0x4,0x35,0x4,0x33,0x4,0x38,0x4,0x41,0x4,0x42,0x4,
- 0x40,0x0,0x20,0x4,0x41,0x4,0x38,0x4,0x3c,0x4,0x32,0x4,0x3e,0x4,0x3b,0x4,
- 0x3e,0x4,0x32,0x0,0x20,0x4,0x3d,0x4,0x35,0x0,0x20,0x4,0x43,0x4,0x47,0x4,
- 0x38,0x4,0x42,0x4,0x4b,0x4,0x32,0x4,0x30,0x4,0x35,0x4,0x42,0x4,0x41,0x4,
- 0x4f,0x0,0x2e,0x0,0x3c,0x0,0x62,0x0,0x72,0x0,0x3e,0x4,0x1a,0x4,0x30,0x4,
- 0x36,0x4,0x34,0x4,0x4b,0x4,0x39,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x37,0x4,
- 0x4b,0x4,0x32,0x4,0x3d,0x4,0x3e,0x4,0x39,0x0,0x20,0x4,0x34,0x4,0x3e,0x4,
- 0x3b,0x4,0x36,0x4,0x35,0x4,0x3d,0x0,0x20,0x4,0x31,0x4,0x4b,0x4,0x42,0x4,
- 0x4c,0x0,0x20,0x4,0x3d,0x4,0x30,0x0,0x20,0x4,0x3e,0x4,0x42,0x4,0x34,0x4,
- 0x35,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x3e,0x4,0x39,0x0,0x20,0x4,0x41,0x4,
- 0x42,0x4,0x40,0x4,0x3e,0x4,0x3a,0x4,0x35,0x0,0x2e,0x0,0x20,0x4,0x1d,0x4,
- 0x35,0x0,0x20,0x4,0x3e,0x4,0x41,0x4,0x42,0x4,0x30,0x4,0x32,0x4,0x3b,0x4,
- 0x4f,0x4,0x39,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x3a,0x4,
- 0x3e,0x4,0x3d,0x4,0x46,0x4,0x35,0x0,0x20,0x4,0x41,0x4,0x42,0x4,0x40,0x4,
- 0x3e,0x4,0x3a,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,0x31,0x4,0x35,0x4,
- 0x3b,0x4,0x4b,0x0,0x2c,0x0,0x20,0x4,0x38,0x4,0x3d,0x4,0x30,0x4,0x47,0x4,
- 0x35,0x0,0x20,0x4,0x32,0x4,0x4b,0x0,0x20,0x4,0x31,0x4,0x43,0x4,0x34,0x4,
- 0x35,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x3b,0x4,0x43,0x4,
- 0x47,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x3e,0x4,0x3f,0x4,0x3e,0x4,
- 0x32,0x4,0x35,0x4,0x49,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,0x20,0x4,
- 0x3e,0x0,0x20,0x4,0x3a,0x4,0x30,0x4,0x36,0x4,0x34,0x4,0x3e,0x4,0x3c,0x0,
- 0x20,0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,0x31,0x4,0x35,0x4,0x3b,0x4,0x35,0x0,
- 0x20,0x4,0x32,0x0,0x20,0x4,0x47,0x4,0x30,0x4,0x42,0x4,0x35,0x0,0x2e,0x0,
- 0x3c,0x0,0x2f,0x0,0x62,0x0,0x6f,0x0,0x64,0x0,0x79,0x0,0x3e,0x0,0x3c,0x0,
- 0x2f,0x0,0x68,0x0,0x74,0x0,0x6d,0x0,0x6c,0x0,0x3e,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x1,0x12,0x3c,0x68,0x74,0x6d,0x6c,0x3e,0x3c,0x68,0x65,0x61,0x64,
- 0x2f,0x3e,0x3c,0x62,0x6f,0x64,0x79,0x3e,0x45,0x6e,0x74,0x65,0x72,0x20,0x61,0x73,
- 0x20,0x6d,0x61,0x6e,0x79,0x20,0x63,0x61,0x6c,0x6c,0x77,0x6f,0x72,0x64,0x73,0x20,
- 0x61,0x73,0x20,0x79,0x6f,0x75,0x20,0x77,0x6f,0x75,0x6c,0x64,0x20,0x6c,0x69,0x6b,
- 0x65,0x2e,0x20,0x54,0x68,0x65,0x73,0x65,0x20,0x61,0x72,0x65,0x20,0x63,0x61,0x73,
- 0x65,0x20,0x69,0x6e,0x73,0x65,0x6e,0x73,0x69,0x74,0x69,0x76,0x65,0x2e,0x20,0x4d,
- 0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x6f,0x20,0x6c,0x65,0x61,0x76,
- 0x65,0x20,0x65,0x76,0x65,0x72,0x79,0x20,0x63,0x61,0x6c,0x6c,0x77,0x6f,0x72,0x64,
- 0x20,0x69,0x6e,0x20,0x69,0x74,0x73,0x20,0x6f,0x77,0x6e,0x20,0x6c,0x69,0x6e,0x65,
- 0x21,0x3c,0x62,0x72,0x3e,0x44,0x6f,0x20,0x6e,0x6f,0x74,0x20,0x6c,0x65,0x61,0x76,
- 0x65,0x20,0x61,0x20,0x6c,0x69,0x6e,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x20,
- 0x73,0x70,0x61,0x63,0x65,0x20,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6e,0x64,
- 0x20,0x2d,0x2d,0x20,0x79,0x6f,0x75,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,
- 0x61,0x6c,0x65,0x72,0x74,0x65,0x64,0x20,0x65,0x76,0x65,0x72,0x79,0x74,0x69,0x6d,
- 0x65,0x20,0x73,0x6f,0x6d,0x65,0x6f,0x6e,0x65,0x20,0x75,0x73,0x65,0x73,0x20,0x61,
- 0x20,0x73,0x70,0x61,0x63,0x65,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x69,0x72,0x20,
- 0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x73,0x2e,0x3c,0x2f,0x62,0x6f,0x64,0x79,0x3e,
- 0x3c,0x2f,0x68,0x74,0x6d,0x6c,0x3e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,
- 0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,
- 0x26,0x4,0x12,0x4,0x38,0x4,0x37,0x4,0x43,0x4,0x30,0x4,0x3b,0x4,0x4c,0x4,
- 0x3d,0x4,0x4b,0x4,0x35,0x0,0x20,0x4,0x4d,0x4,0x44,0x4,0x44,0x4,0x35,0x4,
- 0x3a,0x4,0x42,0x4,0x4b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0xe,0x41,0x6c,0x6c,0x6f,0x77,0x20,0x45,0x66,0x66,0x65,0x63,0x74,0x73,0x3a,0x7,
- 0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,
- 0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x12,0x4,0x41,0x4,0x42,0x4,
- 0x40,0x4,0x4f,0x4,0x41,0x4,0x3a,0x4,0x30,0x0,0x20,0x4,0x4d,0x4,0x3a,0x4,
- 0x40,0x4,0x30,0x4,0x3d,0x4,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x12,0x41,0x6c,0x6c,0x6f,0x77,0x20,0x53,0x63,0x72,0x65,0x65,0x6e,0x73,
- 0x68,0x61,0x6b,0x65,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,
- 0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xbc,0x4,
- 0x1f,0x4,0x3e,0x4,0x3a,0x4,0x30,0x4,0x37,0x4,0x4b,0x4,0x32,0x4,0x30,0x4,
- 0x42,0x4,0x4c,0x0,0x20,0x4,0x32,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,
- 0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x0,0x20,0x4,0x41,0x4,0x35,0x4,0x40,0x4,
- 0x32,0x4,0x35,0x4,0x40,0x0,0x2c,0x0,0x20,0x4,0x3d,0x4,0x30,0x0,0x20,0x4,
- 0x3a,0x4,0x3e,0x4,0x42,0x4,0x3e,0x4,0x40,0x4,0x3e,0x4,0x3c,0x0,0x20,0x4,
- 0x32,0x4,0x4b,0x0,0x20,0x4,0x38,0x4,0x33,0x4,0x40,0x4,0x30,0x4,0x35,0x4,
- 0x42,0x4,0x35,0x0,0x2c,0x0,0x20,0x4,0x32,0x4,0x30,0x4,0x48,0x4,0x35,0x4,
- 0x33,0x4,0x3e,0x0,0x20,0x4,0x3f,0x4,0x35,0x4,0x40,0x4,0x41,0x4,0x3e,0x4,
- 0x3d,0x4,0x30,0x4,0x36,0x4,0x30,0x0,0x20,0x4,0x38,0x0,0x20,0x4,0x3f,0x4,
- 0x40,0x4,0x3e,0x4,0x34,0x4,0x3e,0x4,0x3b,0x4,0x36,0x4,0x38,0x4,0x42,0x4,
- 0x35,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x3e,0x4,0x41,0x4,0x42,0x4,0x4c,0x0,
- 0x20,0x4,0x38,0x4,0x33,0x4,0x40,0x4,0x4b,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x7f,0x41,0x6c,0x6c,0x6f,0x77,0x73,0x20,0x6f,0x74,0x68,0x65,
- 0x72,0x73,0x20,0x6f,0x6e,0x20,0x44,0x69,0x73,0x63,0x6f,0x72,0x64,0x20,0x74,0x6f,
- 0x20,0x73,0x65,0x65,0x20,0x77,0x68,0x61,0x74,0x20,0x73,0x65,0x72,0x76,0x65,0x72,
- 0x20,0x79,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x69,0x6e,0x2c,0x20,0x77,0x68,0x61,
- 0x74,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x20,0x61,0x72,0x65,0x20,
- 0x79,0x6f,0x75,0x20,0x70,0x6c,0x61,0x79,0x69,0x6e,0x67,0x2c,0x20,0x61,0x6e,0x64,
- 0x20,0x68,0x6f,0x77,0x20,0x6c,0x6f,0x6e,0x67,0x20,0x79,0x6f,0x75,0x20,0x68,0x61,
- 0x76,0x65,0x20,0x62,0x65,0x65,0x6e,0x20,0x70,0x6c,0x61,0x79,0x69,0x6e,0x67,0x20,
- 0x66,0x6f,0x72,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,
- 0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xd6,0x4,0x20,
- 0x4,0x30,0x4,0x37,0x4,0x40,0x4,0x35,0x4,0x48,0x4,0x38,0x4,0x42,0x4,0x4c,
- 0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x3a,0x4,0x30,0x4,0x37,0x0,0x20,0x4,0x32,
- 0x4,0x38,0x4,0x37,0x4,0x43,0x4,0x30,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x4b,
- 0x4,0x45,0x0,0x20,0x4,0x4d,0x4,0x44,0x4,0x44,0x4,0x35,0x4,0x3a,0x4,0x42,
- 0x4,0x3e,0x4,0x32,0x0,0x2e,0x0,0xa,0x4,0x1e,0x4,0x42,0x4,0x3a,0x4,0x3b,
- 0x4,0x4e,0x4,0x47,0x4,0x38,0x4,0x42,0x4,0x35,0x0,0x2c,0x0,0x20,0x4,0x35,
- 0x4,0x41,0x4,0x3b,0x4,0x38,0x0,0x20,0x4,0x32,0x4,0x4b,0x0,0x20,0x4,0x41,
- 0x4,0x42,0x4,0x40,0x4,0x30,0x4,0x34,0x4,0x30,0x4,0x35,0x4,0x42,0x4,0x35,
- 0x0,0x20,0x4,0x3e,0x4,0x42,0x0,0x20,0x4,0x41,0x4,0x32,0x4,0x35,0x4,0x42,
- 0x4,0x3e,0x4,0x47,0x4,0x43,0x4,0x32,0x4,0x41,0x4,0x42,0x4,0x32,0x4,0x38,
- 0x4,0x42,0x4,0x35,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x3e,0x4,0x41,0x4,0x42,
- 0x4,0x38,0x0,0x20,0x4,0x38,0x0,0x2f,0x4,0x38,0x4,0x3b,0x4,0x38,0x0,0x20,
- 0x4,0x3f,0x4,0x40,0x4,0x38,0x4,0x3f,0x4,0x30,0x4,0x34,0x4,0x3a,0x4,0x3e,
- 0x4,0x32,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x69,0x41,0x6c,
- 0x6c,0x6f,0x77,0x73,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x65,0x66,0x66,0x65,
- 0x63,0x74,0x73,0x2e,0x20,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x20,0x74,0x68,0x69,
- 0x73,0x20,0x69,0x66,0x20,0x79,0x6f,0x75,0x20,0x68,0x61,0x76,0x65,0x20,0x63,0x6f,
- 0x6e,0x63,0x65,0x72,0x6e,0x73,0x20,0x6f,0x72,0x20,0x69,0x73,0x73,0x75,0x65,0x73,
- 0x20,0x77,0x69,0x74,0x68,0x20,0x70,0x68,0x6f,0x74,0x6f,0x73,0x65,0x6e,0x73,0x69,
- 0x74,0x69,0x76,0x69,0x74,0x79,0x20,0x61,0x6e,0x64,0x2f,0x6f,0x72,0x20,0x73,0x65,
- 0x69,0x7a,0x75,0x72,0x65,0x73,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,
- 0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,
- 0xce,0x4,0x20,0x4,0x30,0x4,0x37,0x4,0x40,0x4,0x35,0x4,0x48,0x4,0x38,0x4,
- 0x42,0x4,0x4c,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x3a,0x4,0x30,0x4,0x37,0x0,
- 0x20,0x4,0x32,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x4f,0x4,0x41,0x4,0x3e,0x4,
- 0x3a,0x0,0x20,0x4,0x4d,0x4,0x3a,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x30,0x0,
- 0x2e,0x0,0xa,0x4,0x1e,0x4,0x42,0x4,0x3a,0x4,0x3b,0x4,0x4e,0x4,0x47,0x4,
- 0x38,0x4,0x42,0x4,0x35,0x0,0x2c,0x0,0x20,0x4,0x35,0x4,0x41,0x4,0x3b,0x4,
- 0x38,0x0,0x20,0x4,0x32,0x4,0x4b,0x0,0x20,0x4,0x41,0x4,0x42,0x4,0x40,0x4,
- 0x30,0x4,0x34,0x4,0x30,0x4,0x35,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x3e,0x4,
- 0x42,0x0,0x20,0x4,0x41,0x4,0x32,0x4,0x35,0x4,0x42,0x4,0x3e,0x4,0x47,0x4,
- 0x43,0x4,0x32,0x4,0x41,0x4,0x42,0x4,0x32,0x4,0x38,0x4,0x42,0x4,0x35,0x4,
- 0x3b,0x4,0x4c,0x4,0x3d,0x4,0x3e,0x4,0x41,0x4,0x42,0x4,0x38,0x0,0x20,0x4,
- 0x38,0x0,0x2f,0x4,0x38,0x4,0x3b,0x4,0x38,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,
- 0x38,0x4,0x3f,0x4,0x30,0x4,0x34,0x4,0x3a,0x4,0x3e,0x4,0x32,0x0,0x2e,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x68,0x41,0x6c,0x6c,0x6f,0x77,0x73,0x20,
- 0x73,0x63,0x72,0x65,0x65,0x6e,0x73,0x68,0x61,0x6b,0x69,0x6e,0x67,0x2e,0x20,0x44,
- 0x69,0x73,0x61,0x62,0x6c,0x65,0x20,0x74,0x68,0x69,0x73,0x20,0x69,0x66,0x20,0x79,
- 0x6f,0x75,0x20,0x68,0x61,0x76,0x65,0x20,0x63,0x6f,0x6e,0x63,0x65,0x72,0x6e,0x73,
- 0x20,0x6f,0x72,0x20,0x69,0x73,0x73,0x75,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,
- 0x70,0x68,0x6f,0x74,0x6f,0x73,0x65,0x6e,0x73,0x69,0x74,0x69,0x76,0x69,0x74,0x79,
- 0x20,0x61,0x6e,0x64,0x2f,0x6f,0x72,0x20,0x73,0x65,0x69,0x7a,0x75,0x72,0x65,0x73,
- 0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,
- 0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x94,0x4,0x12,0x4,0x40,0x4,
- 0x35,0x4,0x3c,0x4,0x4f,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x34,0x4,0x35,0x4,
- 0x40,0x4,0x36,0x4,0x3a,0x4,0x38,0x0,0x20,0x0,0x28,0x4,0x32,0x0,0x20,0x4,
- 0x3c,0x4,0x38,0x4,0x3b,0x4,0x3b,0x4,0x38,0x4,0x41,0x4,0x35,0x4,0x3a,0x4,
- 0x43,0x4,0x3d,0x4,0x34,0x4,0x30,0x4,0x45,0x0,0x29,0x0,0x20,0x4,0x3f,0x4,
- 0x3e,0x4,0x41,0x4,0x3b,0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x3a,0x4,
- 0x30,0x4,0x37,0x4,0x30,0x0,0x20,0x4,0x3a,0x4,0x30,0x4,0x36,0x4,0x34,0x4,
- 0x3e,0x4,0x39,0x0,0x20,0x4,0x31,0x4,0x43,0x4,0x3a,0x4,0x32,0x4,0x4b,0x0,
- 0x20,0x4,0x32,0x0,0x20,0x4,0x38,0x4,0x33,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,
- 0x3e,0x4,0x3c,0x0,0x20,0x4,0x47,0x4,0x30,0x4,0x42,0x4,0x35,0x0,0x2e,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x63,0x41,0x6d,0x6f,0x75,0x6e,0x74,0x20,
- 0x6f,0x66,0x20,0x74,0x69,0x6d,0x65,0x20,0x28,0x69,0x6e,0x20,0x6d,0x69,0x6c,0x69,
- 0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x29,0x20,0x73,0x70,0x65,0x6e,0x74,0x20,0x6f,
- 0x6e,0x20,0x65,0x61,0x63,0x68,0x20,0x6c,0x65,0x74,0x74,0x65,0x72,0x20,0x77,0x68,
- 0x65,0x6e,0x20,0x74,0x68,0x65,0x20,0x69,0x6e,0x2d,0x63,0x68,0x61,0x72,0x61,0x63,
- 0x74,0x65,0x72,0x20,0x74,0x65,0x78,0x74,0x20,0x69,0x73,0x20,0x62,0x65,0x69,0x6e,
- 0x67,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,
- 0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,
- 0x1,0x3,0x0,0x0,0x0,0x26,0x4,0x10,0x4,0x3d,0x4,0x38,0x4,0x3c,0x4,0x38,
- 0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4b,0x4,0x35,
- 0x0,0x20,0x4,0x42,0x4,0x35,0x4,0x3c,0x4,0x4b,0x0,0x3a,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0xf,0x41,0x6e,0x69,0x6d,0x61,0x74,0x65,0x64,0x20,0x54,
- 0x68,0x65,0x6d,0x65,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,
- 0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xa,0x4,
- 0x10,0x4,0x43,0x4,0x34,0x4,0x38,0x4,0x3e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x5,0x41,0x75,0x64,0x69,0x6f,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,
- 0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,
- 0x0,0x24,0x4,0x23,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x39,0x4,0x41,
- 0x4,0x42,0x4,0x32,0x4,0x3e,0x0,0x20,0x4,0x32,0x4,0x4b,0x4,0x32,0x4,0x3e,
- 0x4,0x34,0x4,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,
- 0x41,0x75,0x64,0x69,0x6f,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,
- 0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0x0,0x0,0x0,0x30,0x4,0x10,0x4,0x32,0x4,0x42,0x0,0x2e,0x0,
- 0x20,0x4,0x41,0x4,0x3e,0x4,0x45,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x35,0x4,
- 0x3d,0x4,0x38,0x4,0x35,0x0,0x20,0x4,0x38,0x4,0x41,0x4,0x42,0x4,0x3e,0x4,
- 0x40,0x4,0x38,0x4,0x38,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x12,0x41,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x20,0x4c,0x6f,0x67,0x67,0x69,
- 0x6e,0x67,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,
- 0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x18,0x4,0x17,0x4,
- 0x30,0x4,0x3f,0x4,0x30,0x4,0x41,0x4,0x3d,0x4,0x3e,0x4,0x39,0x0,0x20,0x4,
- 0x13,0x4,0x21,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x42,
- 0x61,0x63,0x6b,0x75,0x70,0x20,0x4d,0x53,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,
- 0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,
- 0x0,0x0,0x1e,0x4,0x1f,0x4,0x43,0x4,0x41,0x4,0x42,0x4,0x4b,0x4,0x35,0x0,
- 0x20,0x4,0x41,0x4,0x38,0x4,0x33,0x4,0x3d,0x4,0x30,0x4,0x3b,0x4,0x4b,0x0,
- 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x42,0x6c,0x61,0x6e,0x6b,
- 0x20,0x62,0x6c,0x69,0x70,0x73,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,
- 0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,
- 0x22,0x4,0x27,0x4,0x30,0x4,0x41,0x4,0x42,0x4,0x3e,0x4,0x42,0x4,0x30,0x0,
- 0x20,0x4,0x41,0x4,0x38,0x4,0x33,0x4,0x3d,0x4,0x30,0x4,0x3b,0x4,0x3e,0x4,
- 0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x42,0x6c,0x69,
- 0x70,0x20,0x72,0x61,0x74,0x65,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,
- 0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,
- 0x10,0x4,0x21,0x4,0x38,0x4,0x33,0x4,0x3d,0x4,0x30,0x4,0x3b,0x4,0x4b,0x0,
- 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x42,0x6c,0x69,0x70,0x73,
- 0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,
- 0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x6,0x4,0x1f,0x4,0x14,0x0,
- 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x43,0x4d,0x3a,0x7,0x0,
- 0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,
- 0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x10,0x4,0x1f,0x4,0x3e,0x4,0x37,0x4,0x4b,
- 0x4,0x32,0x4,0x3d,0x4,0x4b,0x4,0x35,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x9,0x43,0x61,0x6c,0x6c,0x77,0x6f,0x72,0x64,0x73,0x7,0x0,0x0,0x0,0xf,
- 0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,
- 0x3,0x0,0x0,0x0,0x12,0x4,0x17,0x4,0x30,0x4,0x41,0x4,0x35,0x4,0x34,0x4,
- 0x30,0x4,0x3d,0x4,0x38,0x4,0x4f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x6,0x43,0x61,0x73,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,
- 0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,
- 0x14,0x4,0x17,0x4,0x30,0x4,0x41,0x4,0x35,0x4,0x34,0x4,0x30,0x4,0x3d,0x4,
- 0x38,0x4,0x4f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,
- 0x61,0x73,0x69,0x6e,0x67,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,
- 0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x22,
- 0x4,0x27,0x4,0x30,0x4,0x41,0x4,0x42,0x4,0x3e,0x4,0x42,0x4,0x30,0x0,0x20,
- 0x4,0x3e,0x4,0x42,0x4,0x3f,0x4,0x40,0x4,0x30,0x4,0x32,0x4,0x3a,0x4,0x38,
- 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x43,0x68,0x61,0x74,
- 0x20,0x52,0x61,0x74,0x65,0x20,0x4c,0x69,0x6d,0x69,0x74,0x3a,0x7,0x0,0x0,0x0,
- 0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,
- 0x1,0x3,0x0,0x0,0x0,0x2a,0x4,0x26,0x4,0x32,0x4,0x35,0x4,0x42,0x4,0x30,
- 0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x38,0x4,0x41,0x4,0x42,0x4,0x3e,0x4,0x40,
- 0x4,0x38,0x4,0x38,0x0,0x20,0x4,0x47,0x4,0x30,0x4,0x42,0x4,0x30,0x0,0x3a,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x6f,0x6c,0x6f,0x72,0x73,
- 0x20,0x69,0x6e,0x20,0x49,0x43,0x20,0x4c,0x6f,0x67,0x3a,0x7,0x0,0x0,0x0,0xf,
- 0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,
- 0x3,0x0,0x0,0x0,0x38,0x4,0x1d,0x4,0x35,0x4,0x3f,0x4,0x40,0x4,0x35,0x4,
- 0x40,0x4,0x4b,0x4,0x32,0x4,0x3d,0x4,0x3e,0x4,0x35,0x0,0x20,0x4,0x32,0x4,
- 0x3e,0x4,0x41,0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,0x38,0x4,0x37,0x4,0x32,0x4,
- 0x35,0x4,0x34,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x35,0x0,0x3a,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x43,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x6f,0x75,
- 0x73,0x20,0x50,0x6c,0x61,0x79,0x62,0x61,0x63,0x6b,0x3a,0x7,0x0,0x0,0x0,0xf,
- 0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,
- 0x3,0x0,0x0,0x0,0x34,0x4,0x1f,0x4,0x3e,0x4,0x3b,0x4,0x4c,0x4,0x37,0x4,
- 0x3e,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x35,0x4,0x3b,0x4,0x4c,0x4,0x41,0x4,
- 0x3a,0x4,0x38,0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x34,0x4,0x3b,0x4,
- 0x3e,0x4,0x36,0x4,0x3a,0x4,0x38,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x11,0x43,0x75,0x73,0x74,0x6f,0x6d,0x20,0x43,0x68,0x61,0x74,0x62,0x6f,
- 0x78,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,
- 0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x2e,0x4,0x1f,
- 0x4,0x3e,0x4,0x3b,0x4,0x4c,0x4,0x37,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x42,
- 0x4,0x35,0x4,0x3b,0x4,0x4c,0x4,0x41,0x4,0x3a,0x4,0x38,0x4,0x35,0x0,0x20,
- 0x4,0x38,0x4,0x3c,0x4,0x35,0x4,0x3d,0x4,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73,0x74,0x6f,0x6d,0x20,0x73,0x68,0x6f,
- 0x77,0x6e,0x61,0x6d,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,
- 0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,
- 0x2a,0x4,0x1d,0x4,0x38,0x4,0x3a,0x4,0x3d,0x4,0x35,0x4,0x39,0x4,0x3c,0x0,
- 0x20,0x4,0x3f,0x4,0x3e,0x0,0x20,0x4,0x43,0x4,0x3c,0x4,0x3e,0x4,0x3b,0x4,
- 0x47,0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x4e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x11,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x20,0x75,0x73,0x65,
- 0x72,0x6e,0x61,0x6d,0x65,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,
- 0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xe,
- 0x4,0x17,0x4,0x30,0x4,0x49,0x4,0x38,0x4,0x42,0x4,0x30,0x0,0x3a,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x44,0x65,0x66,0x65,0x6e,0x73,0x65,0x3a,
- 0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,
- 0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x32,0x4,0x1d,0x4,0x35,0x4,0x37,
- 0x4,0x30,0x4,0x32,0x4,0x38,0x4,0x41,0x4,0x38,0x4,0x3c,0x4,0x30,0x4,0x4f,
- 0x0,0x20,0x4,0x38,0x4,0x41,0x4,0x42,0x4,0x3e,0x4,0x40,0x4,0x38,0x4,0x4f,
- 0x0,0x20,0x4,0x47,0x4,0x30,0x4,0x42,0x4,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x16,0x44,0x65,0x73,0x79,0x6e,0x63,0x68,0x72,0x6f,0x6e,
- 0x69,0x7a,0x65,0x20,0x49,0x43,0x20,0x4c,0x6f,0x67,0x73,0x3a,0x7,0x0,0x0,0x0,
- 0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,
- 0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,
- 0x0,0x72,0x0,0x64,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,
- 0x44,0x69,0x73,0x63,0x6f,0x72,0x64,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,
- 0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,
- 0x0,0x2c,0x4,0x1f,0x4,0x3e,0x4,0x32,0x4,0x42,0x4,0x3e,0x4,0x40,0x0,0x20,
- 0x4,0x37,0x4,0x32,0x4,0x43,0x4,0x3a,0x0,0x2e,0x0,0x20,0x4,0x4d,0x4,0x44,
- 0x4,0x44,0x4,0x35,0x4,0x3a,0x4,0x42,0x4,0x3e,0x4,0x32,0x0,0x3a,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20,0x4c,
- 0x6f,0x6f,0x70,0x69,0x6e,0x67,0x20,0x53,0x46,0x58,0x3a,0x7,0x0,0x0,0x0,0xf,
- 0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,
- 0x3,0x0,0x0,0x0,0x8,0x4,0x18,0x4,0x33,0x4,0x40,0x4,0x30,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x47,0x61,0x6d,0x65,0x70,0x6c,0x61,0x79,0x7,
- 0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,
- 0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xb8,0x4,0x17,0x4,0x3d,0x4,0x30,0x4,
- 0x47,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x3e,0x0,
- 0x20,0x4,0x43,0x4,0x3c,0x4,0x3e,0x4,0x3b,0x4,0x47,0x4,0x30,0x4,0x3d,0x4,
- 0x38,0x4,0x4e,0x0,0x20,0x4,0x34,0x4,0x3b,0x4,0x4f,0x0,0x20,0x4,0x3f,0x4,
- 0x35,0x4,0x40,0x4,0x35,0x4,0x3a,0x4,0x3b,0x4,0x4e,0x4,0x47,0x4,0x30,0x4,
- 0x42,0x4,0x35,0x4,0x3b,0x4,0x4f,0x0,0x20,0x0,0x22,0x4,0x1f,0x4,0x3e,0x4,
- 0x3b,0x4,0x4c,0x4,0x37,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x35,0x4,
- 0x3b,0x4,0x4c,0x4,0x41,0x4,0x3a,0x4,0x38,0x4,0x35,0x0,0x20,0x4,0x38,0x4,
- 0x3c,0x4,0x35,0x4,0x3d,0x4,0x30,0x0,0x22,0x0,0x20,0x4,0x32,0x0,0x20,0x4,
- 0x3e,0x4,0x41,0x4,0x3d,0x4,0x3e,0x4,0x32,0x4,0x3d,0x4,0x3e,0x4,0x3c,0x0,
- 0x20,0x4,0x3e,0x4,0x3a,0x4,0x3d,0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,
- 0x38,0x4,0x3b,0x4,0x3e,0x4,0x36,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,
- 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x99,0x47,0x69,0x76,0x65,0x73,
- 0x20,0x74,0x68,0x65,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x20,0x76,0x61,0x6c,
- 0x75,0x65,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x65,0x20,0x69,0x6e,0x2d,0x67,0x61,
- 0x6d,0x65,0x20,0x27,0x43,0x75,0x73,0x74,0x6f,0x6d,0x20,0x73,0x68,0x6f,0x77,0x6e,
- 0x61,0x6d,0x65,0x73,0x27,0x20,0x74,0x69,0x63,0x6b,0x62,0x6f,0x78,0x2c,0x20,0x77,
- 0x68,0x69,0x63,0x68,0x20,0x69,0x6e,0x20,0x74,0x75,0x72,0x6e,0x20,0x64,0x65,0x74,
- 0x65,0x72,0x6d,0x69,0x6e,0x65,0x73,0x20,0x77,0x68,0x65,0x74,0x68,0x65,0x72,0x20,
- 0x74,0x68,0x65,0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,0x20,0x73,0x68,0x6f,0x75,0x6c,
- 0x64,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x63,0x75,0x73,0x74,0x6f,0x6d,
- 0x20,0x69,0x6e,0x2d,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x20,0x6e,0x61,
- 0x6d,0x65,0x73,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,
- 0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x1e,0x4,0x1f,
- 0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x35,0x4,0x34,0x4,0x35,0x4,0x3d,0x4,0x38,
- 0x4,0x35,0x0,0x20,0x4,0x34,0x4,0x35,0x4,0x3b,0x0,0x3a,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x6f,0x73,0x74,0x69,0x6e,0x67,0x20,0x63,0x61,
- 0x73,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,
- 0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xe6,0x4,0x15,
- 0x4,0x41,0x4,0x3b,0x4,0x38,0x0,0x20,0x0,0x22,0x4,0x17,0x4,0x30,0x4,0x34,
- 0x4,0x35,0x4,0x40,0x4,0x36,0x4,0x3a,0x4,0x30,0x0,0x20,0x4,0x42,0x4,0x35,
- 0x4,0x3a,0x4,0x41,0x4,0x42,0x4,0x30,0x0,0x22,0x0,0x20,0x4,0x31,0x4,0x3e,
- 0x4,0x3b,0x4,0x4c,0x4,0x48,0x4,0x35,0x0,0x20,0x4,0x3d,0x4,0x43,0x4,0x3b,
- 0x4,0x4f,0x0,0x2c,0x0,0x20,0x4,0x32,0x4,0x3a,0x4,0x3b,0x4,0x4e,0x4,0x47,
- 0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x35,0x0,0x20,0x4,0x34,0x4,0x30,0x4,0x3d,
- 0x4,0x3d,0x4,0x3e,0x4,0x39,0x0,0x20,0x4,0x3e,0x4,0x3f,0x4,0x46,0x4,0x38,
- 0x4,0x38,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x37,0x4,0x32,0x4,0x3e,0x4,0x3b,
- 0x4,0x4f,0x4,0x35,0x4,0x42,0x0,0x20,0x4,0x3e,0x4,0x42,0x4,0x3e,0x4,0x31,
- 0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x32,
- 0x4,0x3e,0x4,0x37,0x4,0x33,0x4,0x3b,0x4,0x30,0x4,0x41,0x0,0x2c,0x0,0x20,
- 0x4,0x3c,0x4,0x38,0x4,0x3d,0x4,0x43,0x4,0x4f,0x0,0x20,0x4,0x41,0x4,0x3e,
- 0x4,0x3e,0x4,0x31,0x4,0x49,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,0x20,
- 0x4,0x32,0x0,0x20,0x4,0x3e,0x4,0x47,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x34,
- 0x4,0x38,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6d,0x49,0x66,
- 0x20,0x54,0x65,0x78,0x74,0x20,0x53,0x74,0x61,0x79,0x20,0x54,0x69,0x6d,0x65,0x20,
- 0x69,0x73,0x20,0x6d,0x6f,0x72,0x65,0x20,0x74,0x68,0x61,0x6e,0x20,0x30,0x2c,0x20,
- 0x69,0x6e,0x73,0x74,0x61,0x6e,0x74,0x20,0x6f,0x62,0x6a,0x65,0x63,0x74,0x69,0x6f,
- 0x6e,0x20,0x77,0x69,0x6c,0x6c,0x20,0x73,0x6b,0x69,0x70,0x20,0x71,0x75,0x65,0x75,
- 0x65,0x64,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x73,0x20,0x69,0x6e,0x73,0x74,
- 0x65,0x61,0x64,0x20,0x6f,0x66,0x20,0x77,0x61,0x69,0x74,0x69,0x6e,0x67,0x20,0x74,
- 0x6f,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x75,0x70,0x2e,0x7,0x0,0x0,0x0,0xf,
- 0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,
- 0x3,0x0,0x0,0x0,0x70,0x4,0x10,0x4,0x32,0x4,0x42,0x4,0x3e,0x4,0x3c,0x4,
- 0x30,0x4,0x42,0x4,0x38,0x4,0x47,0x4,0x35,0x4,0x41,0x4,0x3a,0x4,0x38,0x0,
- 0x20,0x4,0x41,0x4,0x3e,0x4,0x45,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x4f,0x4,
- 0x42,0x4,0x4c,0x0,0x20,0x4,0x32,0x4,0x41,0x4,0x4e,0x0,0x20,0x4,0x38,0x4,
- 0x41,0x4,0x42,0x4,0x3e,0x4,0x40,0x4,0x38,0x4,0x4e,0x0,0x20,0x4,0x47,0x4,
- 0x30,0x4,0x42,0x4,0x3e,0x4,0x32,0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x3f,0x4,
- 0x30,0x4,0x3f,0x4,0x3a,0x4,0x35,0x0,0x20,0x0,0x2f,0x0,0x6c,0x0,0x6f,0x0,
- 0x67,0x0,0x73,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x47,0x49,
- 0x66,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2c,0x20,0x61,0x6c,0x6c,0x20,0x6c,
- 0x6f,0x67,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x61,0x75,0x74,0x6f,
- 0x6d,0x61,0x74,0x69,0x63,0x61,0x6c,0x6c,0x79,0x20,0x77,0x72,0x69,0x74,0x74,0x65,
- 0x6e,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x2f,0x6c,0x6f,0x67,0x73,0x20,0x66,
- 0x6f,0x6c,0x64,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,
- 0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x92,
- 0x4,0x1e,0x4,0x42,0x4,0x3c,0x4,0x35,0x4,0x42,0x4,0x4c,0x4,0x42,0x4,0x35,
- 0x0,0x2c,0x0,0x20,0x4,0x35,0x4,0x41,0x4,0x3b,0x4,0x38,0x0,0x20,0x4,0x45,
- 0x4,0x3e,0x4,0x42,0x4,0x38,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x41,0x4,0x3e,
- 0x4,0x41,0x4,0x42,0x4,0x3e,0x4,0x4f,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x32,
- 0x0,0x20,0x4,0x47,0x4,0x38,0x4,0x41,0x4,0x3b,0x4,0x35,0x0,0x20,0x4,0x32,
- 0x4,0x3e,0x4,0x37,0x4,0x3c,0x4,0x3e,0x4,0x36,0x4,0x3d,0x4,0x4b,0x4,0x45,
- 0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,0x38,0x4,0x37,0x4,0x32,0x4,0x3e,
- 0x4,0x34,0x4,0x38,0x4,0x42,0x4,0x35,0x4,0x3b,0x4,0x35,0x4,0x39,0x0,0x20,
- 0x4,0x34,0x4,0x35,0x4,0x3b,0x0,0x20,0x0,0x28,0x4,0x1f,0x4,0x14,0x0,0x29,
- 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x44,0x49,0x66,0x20,0x63,
- 0x68,0x65,0x63,0x6b,0x65,0x64,0x2c,0x20,0x79,0x6f,0x75,0x20,0x77,0x69,0x6c,0x6c,
- 0x20,0x61,0x70,0x70,0x65,0x61,0x72,0x20,0x61,0x6d,0x6f,0x6e,0x67,0x73,0x74,0x20,
- 0x74,0x68,0x65,0x20,0x70,0x6f,0x74,0x65,0x6e,0x74,0x69,0x61,0x6c,0x20,0x43,0x4d,
- 0x73,0x20,0x6f,0x6e,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x2e,
- 0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,
- 0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x90,0x4,0x1f,0x4,0x3e,0x4,0x3b,
- 0x4,0x43,0x4,0x47,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x43,0x4,0x32,
- 0x4,0x35,0x4,0x34,0x4,0x3e,0x4,0x3c,0x4,0x3b,0x4,0x35,0x4,0x3d,0x4,0x38,
- 0x4,0x4f,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x38,0x0,0x20,0x4,0x3e,0x4,0x31,
- 0x4,0x4a,0x4,0x4f,0x4,0x32,0x4,0x3b,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x38,
- 0x0,0x20,0x4,0x34,0x4,0x35,0x4,0x3b,0x0,0x2c,0x0,0x20,0x4,0x32,0x0,0x20,
- 0x4,0x3a,0x4,0x3e,0x4,0x42,0x4,0x3e,0x4,0x40,0x4,0x4b,0x4,0x45,0x0,0x20,
- 0x4,0x3d,0x4,0x43,0x4,0x36,0x4,0x3d,0x4,0x30,0x0,0x20,0x4,0x41,0x4,0x42,
- 0x4,0x3e,0x4,0x40,0x4,0x3e,0x4,0x3d,0x4,0x30,0x0,0x20,0x4,0x37,0x4,0x30,
- 0x4,0x49,0x4,0x38,0x4,0x42,0x4,0x4b,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x53,0x49,0x66,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2c,0x20,
- 0x79,0x6f,0x75,0x20,0x77,0x69,0x6c,0x6c,0x20,0x67,0x65,0x74,0x20,0x61,0x6c,0x65,
- 0x72,0x74,0x73,0x20,0x61,0x62,0x6f,0x75,0x74,0x20,0x63,0x61,0x73,0x65,0x20,0x61,
- 0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x6d,0x65,0x6e,0x74,0x73,0x20,0x69,0x66,0x20,
- 0x61,0x20,0x64,0x65,0x66,0x65,0x6e,0x73,0x65,0x20,0x73,0x70,0x6f,0x74,0x20,0x69,
- 0x73,0x20,0x6f,0x70,0x65,0x6e,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,
- 0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,
- 0x9c,0x4,0x1f,0x4,0x3e,0x4,0x3b,0x4,0x43,0x4,0x47,0x4,0x30,0x4,0x42,0x4,
- 0x4c,0x0,0x20,0x4,0x43,0x4,0x32,0x4,0x35,0x4,0x34,0x4,0x3e,0x4,0x3c,0x4,
- 0x3b,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,
- 0x38,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x4a,0x4,0x4f,0x4,0x32,0x4,0x3b,0x4,
- 0x35,0x4,0x3d,0x4,0x38,0x4,0x38,0x0,0x20,0x4,0x34,0x4,0x35,0x4,0x3b,0x0,
- 0x2c,0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x3a,0x4,0x3e,0x4,0x42,0x4,0x3e,0x4,
- 0x40,0x4,0x4b,0x4,0x45,0x0,0x20,0x4,0x3d,0x4,0x43,0x4,0x36,0x4,0x3d,0x4,
- 0x4b,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x38,0x4,0x41,0x4,0x4f,0x4,0x36,0x4,
- 0x3d,0x4,0x4b,0x4,0x35,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x41,0x4,0x35,0x4,
- 0x34,0x4,0x30,0x4,0x42,0x4,0x35,0x4,0x3b,0x4,0x38,0x0,0x2e,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x51,0x49,0x66,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,
- 0x64,0x2c,0x20,0x79,0x6f,0x75,0x20,0x77,0x69,0x6c,0x6c,0x20,0x67,0x65,0x74,0x20,
- 0x61,0x6c,0x65,0x72,0x74,0x73,0x20,0x61,0x62,0x6f,0x75,0x74,0x20,0x63,0x61,0x73,
- 0x65,0x20,0x61,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x6d,0x65,0x6e,0x74,0x73,0x20,
- 0x69,0x66,0x20,0x61,0x20,0x6a,0x75,0x72,0x6f,0x72,0x20,0x73,0x70,0x6f,0x74,0x20,
- 0x69,0x73,0x20,0x6f,0x70,0x65,0x6e,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,
- 0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,
- 0x0,0x96,0x4,0x1f,0x4,0x3e,0x4,0x3b,0x4,0x43,0x4,0x47,0x4,0x30,0x4,0x42,
- 0x4,0x4c,0x0,0x20,0x4,0x43,0x4,0x32,0x4,0x35,0x4,0x34,0x4,0x3e,0x4,0x3c,
- 0x4,0x3b,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,0x20,0x4,0x3f,0x4,0x40,
- 0x4,0x38,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x4a,0x4,0x4f,0x4,0x32,0x4,0x3b,
- 0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x38,0x0,0x20,0x4,0x34,0x4,0x35,0x4,0x3b,
- 0x0,0x2c,0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x3a,0x4,0x3e,0x4,0x42,0x4,0x3e,
- 0x4,0x40,0x4,0x4b,0x4,0x45,0x0,0x20,0x4,0x3d,0x4,0x43,0x4,0x36,0x4,0x3d,
- 0x4,0x30,0x0,0x20,0x4,0x41,0x4,0x42,0x4,0x3e,0x4,0x40,0x4,0x3e,0x4,0x3d,
- 0x4,0x30,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x32,0x4,0x38,0x4,0x3d,0x4,0x35,
- 0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x56,0x49,0x66,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2c,0x20,0x79,0x6f,
- 0x75,0x20,0x77,0x69,0x6c,0x6c,0x20,0x67,0x65,0x74,0x20,0x61,0x6c,0x65,0x72,0x74,
- 0x73,0x20,0x61,0x62,0x6f,0x75,0x74,0x20,0x63,0x61,0x73,0x65,0x20,0x61,0x6e,0x6e,
- 0x6f,0x75,0x6e,0x63,0x65,0x6d,0x65,0x6e,0x74,0x73,0x20,0x69,0x66,0x20,0x61,0x20,
- 0x70,0x72,0x6f,0x73,0x65,0x63,0x75,0x74,0x6f,0x72,0x20,0x73,0x70,0x6f,0x74,0x20,
- 0x69,0x73,0x20,0x6f,0x70,0x65,0x6e,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,
- 0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,
- 0x0,0x8c,0x4,0x1f,0x4,0x3e,0x4,0x3b,0x4,0x43,0x4,0x47,0x4,0x30,0x4,0x42,
- 0x4,0x4c,0x0,0x20,0x4,0x43,0x4,0x32,0x4,0x35,0x4,0x34,0x4,0x3e,0x4,0x3c,
- 0x4,0x3b,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,0x20,0x4,0x3f,0x4,0x40,
- 0x4,0x38,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x4a,0x4,0x4f,0x4,0x32,0x4,0x3b,
- 0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x38,0x0,0x20,0x4,0x34,0x4,0x35,0x4,0x3b,
- 0x0,0x2c,0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x3a,0x4,0x3e,0x4,0x42,0x4,0x3e,
- 0x4,0x40,0x4,0x4b,0x4,0x45,0x0,0x20,0x4,0x3d,0x4,0x43,0x4,0x36,0x4,0x35,
- 0x4,0x3d,0x0,0x20,0x4,0x41,0x4,0x42,0x4,0x35,0x4,0x3d,0x4,0x3e,0x4,0x33,
- 0x4,0x40,0x4,0x30,0x4,0x44,0x4,0x38,0x4,0x41,0x4,0x42,0x0,0x2e,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x58,0x49,0x66,0x20,0x63,0x68,0x65,0x63,0x6b,
- 0x65,0x64,0x2c,0x20,0x79,0x6f,0x75,0x20,0x77,0x69,0x6c,0x6c,0x20,0x67,0x65,0x74,
- 0x20,0x61,0x6c,0x65,0x72,0x74,0x73,0x20,0x61,0x62,0x6f,0x75,0x74,0x20,0x63,0x61,
- 0x73,0x65,0x20,0x61,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x6d,0x65,0x6e,0x74,0x73,
- 0x20,0x69,0x66,0x20,0x61,0x20,0x73,0x74,0x65,0x6e,0x6f,0x67,0x72,0x61,0x70,0x68,
- 0x65,0x72,0x20,0x73,0x70,0x6f,0x74,0x20,0x69,0x73,0x20,0x6f,0x70,0x65,0x6e,0x2e,
- 0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,
- 0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x7e,0x4,0x1f,0x4,0x3e,0x4,0x3b,
- 0x4,0x43,0x4,0x47,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x43,0x4,0x32,
- 0x4,0x35,0x4,0x34,0x4,0x3e,0x4,0x3c,0x4,0x3b,0x4,0x35,0x4,0x3d,0x4,0x38,
- 0x4,0x4f,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x38,0x0,0x20,0x4,0x3e,0x4,0x31,
- 0x4,0x4a,0x4,0x4f,0x4,0x32,0x4,0x3b,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x38,
- 0x0,0x20,0x4,0x34,0x4,0x35,0x4,0x3b,0x0,0x2c,0x0,0x20,0x4,0x32,0x0,0x20,
- 0x4,0x3a,0x4,0x3e,0x4,0x42,0x4,0x3e,0x4,0x40,0x4,0x4b,0x4,0x45,0x0,0x20,
- 0x4,0x3d,0x4,0x43,0x4,0x36,0x4,0x35,0x4,0x3d,0x0,0x20,0x4,0x41,0x4,0x43,
- 0x4,0x34,0x4,0x4c,0x4,0x4f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x53,0x49,0x66,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2c,0x20,0x79,0x6f,
- 0x75,0x20,0x77,0x69,0x6c,0x6c,0x20,0x67,0x65,0x74,0x20,0x61,0x6c,0x65,0x72,0x74,
- 0x73,0x20,0x61,0x62,0x6f,0x75,0x74,0x20,0x63,0x61,0x73,0x65,0x20,0x61,0x6e,0x6e,
- 0x6f,0x75,0x6e,0x63,0x65,0x6d,0x65,0x6e,0x74,0x73,0x20,0x69,0x66,0x20,0x74,0x68,
- 0x65,0x20,0x6a,0x75,0x64,0x67,0x65,0x20,0x73,0x70,0x6f,0x74,0x20,0x69,0x73,0x20,
- 0x6f,0x70,0x65,0x6e,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,
- 0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x5c,0x4,
- 0x1f,0x4,0x3e,0x4,0x3b,0x4,0x43,0x4,0x47,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,
- 0x20,0x4,0x43,0x4,0x32,0x4,0x35,0x4,0x34,0x4,0x3e,0x4,0x3c,0x4,0x3b,0x4,
- 0x35,0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x38,0x0,
- 0x20,0x4,0x3e,0x4,0x31,0x4,0x4a,0x4,0x4f,0x4,0x32,0x4,0x3b,0x4,0x35,0x4,
- 0x3d,0x4,0x38,0x4,0x38,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x41,0x4,0x35,0x4,
- 0x34,0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x39,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x39,0x49,0x66,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2c,
- 0x20,0x79,0x6f,0x75,0x20,0x77,0x69,0x6c,0x6c,0x20,0x67,0x65,0x74,0x20,0x61,0x6c,
- 0x65,0x72,0x74,0x73,0x20,0x61,0x62,0x6f,0x75,0x74,0x20,0x63,0x61,0x73,0x65,0x20,
- 0x61,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x7,0x0,
- 0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,
- 0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xd4,0x4,0x15,0x4,0x41,0x4,0x3b,0x4,0x38,
- 0x0,0x20,0x4,0x3a,0x4,0x3b,0x4,0x38,0x4,0x35,0x4,0x3d,0x4,0x42,0x0,0x20,
- 0x4,0x3d,0x4,0x35,0x0,0x20,0x4,0x41,0x4,0x3c,0x4,0x3e,0x4,0x36,0x4,0x35,
- 0x4,0x42,0x0,0x20,0x4,0x41,0x4,0x3e,0x4,0x35,0x4,0x34,0x4,0x38,0x4,0x3d,
- 0x4,0x38,0x4,0x42,0x4,0x4c,0x4,0x41,0x4,0x4f,0x0,0x20,0x4,0x41,0x4,0x3e,
- 0x0,0x20,0x4,0x32,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x35,0x4,0x3d,
- 0x4,0x3d,0x4,0x4b,0x4,0x3c,0x0,0x20,0x4,0x33,0x4,0x3b,0x4,0x30,0x4,0x32,
- 0x4,0x3d,0x4,0x4b,0x4,0x3c,0x0,0x20,0x4,0x41,0x4,0x35,0x4,0x40,0x4,0x32,
- 0x4,0x35,0x4,0x40,0x4,0x3e,0x4,0x3c,0x0,0x20,0x0,0x28,0x4,0x13,0x4,0x21,
- 0x0,0x29,0x0,0x2c,0x0,0x20,0x4,0x3e,0x4,0x3d,0x0,0x20,0x4,0x3f,0x4,0x40,
- 0x4,0x3e,0x4,0x32,0x4,0x35,0x4,0x40,0x4,0x38,0x4,0x42,0x0,0x20,0x4,0x30,
- 0x4,0x34,0x4,0x40,0x4,0x35,0x4,0x41,0x4,0x30,0x0,0x20,0x4,0x38,0x4,0x37,
- 0x0,0x20,0x4,0x4d,0x4,0x42,0x4,0x3e,0x4,0x33,0x4,0x3e,0x0,0x20,0x4,0x41,
- 0x4,0x3f,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x30,0x0,0x2e,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x7b,0x49,0x66,0x20,0x74,0x68,0x65,0x20,0x62,0x75,0x69,
- 0x6c,0x74,0x2d,0x69,0x6e,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x20,0x6c,0x6f,0x6f,
- 0x6b,0x75,0x70,0x73,0x20,0x66,0x61,0x69,0x6c,0x2c,0x20,0x74,0x68,0x65,0x20,0x67,
- 0x61,0x6d,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x74,0x72,0x79,0x20,0x74,0x68,0x65,
- 0x20,0x61,0x64,0x64,0x72,0x65,0x73,0x73,0x20,0x67,0x69,0x76,0x65,0x6e,0x20,0x68,
- 0x65,0x72,0x65,0x20,0x61,0x6e,0x64,0x20,0x75,0x73,0x65,0x20,0x69,0x74,0x20,0x61,
- 0x73,0x20,0x61,0x20,0x62,0x61,0x63,0x6b,0x75,0x70,0x20,0x6d,0x61,0x73,0x74,0x65,
- 0x72,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x20,0x61,0x64,0x64,0x72,0x65,0x73,0x73,
- 0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,
- 0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x92,0x4,0x1f,0x4,0x3e,0x4,
- 0x3a,0x4,0x30,0x4,0x37,0x4,0x4b,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,
- 0x20,0x4,0x3c,0x4,0x35,0x4,0x42,0x4,0x3a,0x4,0x38,0x0,0x20,0x4,0x32,0x4,
- 0x40,0x4,0x35,0x4,0x3c,0x4,0x35,0x4,0x3d,0x4,0x38,0x0,0x20,0x4,0x32,0x0,
- 0x20,0x4,0x47,0x4,0x30,0x4,0x41,0x4,0x3e,0x4,0x32,0x4,0x3e,0x4,0x3c,0x0,
- 0x20,0x4,0x3f,0x4,0x3e,0x4,0x4f,0x4,0x41,0x4,0x35,0x0,0x20,0x0,0x55,0x0,
- 0x54,0x0,0x43,0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x38,0x4,0x33,0x4,0x40,0x4,
- 0x3e,0x4,0x32,0x4,0x3e,0x4,0x3c,0x0,0x20,0x4,0x47,0x4,0x30,0x4,0x42,0x4,
- 0x35,0x0,0x20,0x4,0x3f,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x34,0x0,0x20,0x4,
- 0x38,0x4,0x3c,0x4,0x35,0x4,0x3d,0x4,0x35,0x4,0x3c,0x0,0x2e,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x3f,0x49,0x66,0x20,0x74,0x69,0x63,0x6b,0x65,0x64,
- 0x2c,0x20,0x6c,0x6f,0x67,0x20,0x77,0x69,0x6c,0x6c,0x20,0x63,0x6f,0x6e,0x74,0x61,
- 0x69,0x6e,0x20,0x61,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x20,0x69,
- 0x6e,0x20,0x55,0x54,0x43,0x20,0x62,0x65,0x66,0x6f,0x72,0x65,0x20,0x74,0x68,0x65,
- 0x20,0x6e,0x61,0x6d,0x65,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,
- 0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xa4,
- 0x4,0x1f,0x4,0x3e,0x4,0x3a,0x4,0x30,0x4,0x37,0x4,0x4b,0x4,0x32,0x4,0x30,
- 0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x34,0x4,0x35,0x4,0x39,0x4,0x41,0x4,0x42,
- 0x4,0x32,0x4,0x38,0x4,0x4f,0x0,0x20,0x0,0x28,0x4,0x32,0x4,0x3e,0x4,0x37,
- 0x4,0x33,0x4,0x3b,0x4,0x30,0x4,0x41,0x4,0x4b,0x0,0x2c,0x0,0x20,0x4,0x3f,
- 0x4,0x40,0x4,0x35,0x4,0x34,0x4,0x4a,0x4,0x4f,0x4,0x32,0x4,0x3b,0x4,0x35,
- 0x4,0x3d,0x4,0x3d,0x4,0x4b,0x4,0x35,0x0,0x20,0x4,0x43,0x4,0x3b,0x4,0x38,
- 0x4,0x3a,0x4,0x38,0x0,0x20,0x4,0x38,0x0,0x20,0x4,0x3f,0x4,0x40,0x0,0x2e,
- 0x0,0x29,0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x38,0x4,0x41,0x4,0x42,0x4,0x3e,
- 0x4,0x40,0x4,0x38,0x4,0x38,0x0,0x20,0x4,0x38,0x4,0x33,0x4,0x40,0x4,0x3e,
- 0x4,0x32,0x4,0x3e,0x4,0x33,0x4,0x3e,0x0,0x20,0x4,0x47,0x4,0x30,0x4,0x42,
- 0x4,0x30,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4d,0x49,0x66,
- 0x20,0x74,0x69,0x63,0x6b,0x65,0x64,0x2c,0x20,0x6c,0x6f,0x67,0x20,0x77,0x69,0x6c,
- 0x6c,0x20,0x73,0x68,0x6f,0x77,0x20,0x49,0x43,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,
- 0x73,0x20,0x73,0x75,0x63,0x68,0x20,0x61,0x73,0x20,0x73,0x68,0x6f,0x75,0x74,0x69,
- 0x6e,0x67,0x20,0x61,0x6e,0x64,0x20,0x70,0x72,0x65,0x73,0x65,0x6e,0x74,0x69,0x6e,
- 0x67,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x2e,0x7,0x0,0x0,0x0,0xf,
- 0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,
- 0x3,0x0,0x0,0x1,0x28,0x4,0x1f,0x4,0x3e,0x4,0x3a,0x4,0x30,0x4,0x37,0x4,
- 0x4b,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x41,0x4,0x3e,0x4,
- 0x3e,0x4,0x31,0x4,0x49,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,0x20,0x4,
- 0x32,0x0,0x20,0x4,0x38,0x4,0x41,0x4,0x42,0x4,0x3e,0x4,0x40,0x4,0x38,0x4,
- 0x38,0x0,0x20,0x4,0x38,0x4,0x33,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x3e,0x4,
- 0x33,0x4,0x3e,0x0,0x20,0x4,0x47,0x4,0x30,0x4,0x42,0x4,0x30,0x0,0x20,0x4,
- 0x32,0x0,0x20,0x4,0x40,0x4,0x35,0x4,0x30,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,
- 0x3e,0x4,0x3c,0x0,0x20,0x4,0x32,0x4,0x40,0x4,0x35,0x4,0x3c,0x4,0x35,0x4,
- 0x3d,0x4,0x38,0x0,0x2c,0x0,0x20,0x0,0xa,0x4,0x30,0x0,0x20,0x4,0x32,0x0,
- 0x20,0x4,0x41,0x4,0x30,0x4,0x3c,0x4,0x3e,0x4,0x3c,0x0,0x20,0x4,0x38,0x4,
- 0x33,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x3e,0x4,0x3c,0x0,0x20,0x4,0x47,0x4,
- 0x30,0x4,0x42,0x4,0x35,0x0,0x20,0x0,0x2d,0x0,0x20,0x4,0x32,0x0,0x20,0x4,
- 0x41,0x4,0x3e,0x4,0x3e,0x4,0x42,0x4,0x32,0x4,0x35,0x4,0x42,0x4,0x41,0x4,
- 0x42,0x4,0x32,0x4,0x38,0x4,0x38,0x0,0x20,0x4,0x41,0x0,0x20,0x4,0x3d,0x4,
- 0x30,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x39,0x4,0x3a,0x4,0x30,0x4,
- 0x3c,0x4,0x38,0x0,0x20,0x4,0x3e,0x4,0x47,0x4,0x35,0x4,0x40,0x4,0x35,0x4,
- 0x34,0x4,0x38,0x0,0x20,0x0,0x28,0x0,0x22,0x4,0x17,0x4,0x30,0x4,0x34,0x4,
- 0x35,0x4,0x40,0x4,0x36,0x4,0x3a,0x4,0x30,0x0,0x20,0x4,0x42,0x4,0x35,0x4,
- 0x3a,0x4,0x41,0x4,0x42,0x4,0x30,0x0,0x22,0x0,0x29,0x0,0x2e,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x71,0x49,0x66,0x20,0x74,0x69,0x63,0x6b,0x65,0x64,
- 0x2c,0x20,0x6c,0x6f,0x67,0x20,0x77,0x69,0x6c,0x6c,0x20,0x73,0x68,0x6f,0x77,0x20,
- 0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x73,0x20,0x61,0x73,0x2d,0x72,0x65,0x63,0x65,
- 0x69,0x76,0x65,0x64,0x2c,0x20,0x77,0x68,0x69,0x6c,0x65,0x20,0x76,0x69,0x65,0x77,
- 0x70,0x6f,0x72,0x74,0x20,0x77,0x69,0x6c,0x6c,0x20,0x70,0x61,0x72,0x73,0x65,0x20,
- 0x61,0x63,0x63,0x6f,0x72,0x64,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,
- 0x20,0x71,0x75,0x65,0x75,0x65,0x20,0x28,0x54,0x65,0x78,0x74,0x20,0x53,0x74,0x61,
- 0x79,0x20,0x54,0x69,0x6d,0x65,0x29,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,
- 0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,
- 0x0,0xb4,0x4,0x1f,0x4,0x3e,0x4,0x3a,0x4,0x30,0x4,0x37,0x4,0x4b,0x4,0x32,
- 0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x3d,0x4,0x3e,0x4,0x32,0x4,0x4b,
- 0x4,0x35,0x0,0x20,0x4,0x41,0x4,0x3e,0x4,0x3e,0x4,0x31,0x4,0x49,0x4,0x35,
- 0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x38,0x4,0x33,
- 0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x3e,0x4,0x3c,0x0,0x20,0x4,0x47,0x4,0x30,
- 0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x41,0x4,0x3d,0x4,0x38,0x4,0x37,0x4,0x43,
- 0x0,0x20,0x0,0x28,0x4,0x3a,0x4,0x30,0x4,0x3a,0x0,0x20,0x4,0x32,0x0,0x20,
- 0x4,0x1e,0x4,0x1e,0x4,0x21,0x0,0x2d,0x4,0x47,0x4,0x30,0x4,0x42,0x4,0x35,
- 0x0,0x29,0x0,0x2c,0x0,0x20,0x4,0x30,0x0,0x20,0x4,0x3d,0x4,0x35,0x0,0x20,
- 0x4,0x41,0x4,0x32,0x4,0x35,0x4,0x40,0x4,0x45,0x4,0x43,0x0,0x20,0x0,0x28,
- 0x4,0x3a,0x4,0x30,0x4,0x3a,0x0,0x20,0x4,0x32,0x0,0x20,0x0,0x41,0x0,0x4f,
- 0x0,0x31,0x0,0x29,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8f,
- 0x49,0x66,0x20,0x74,0x69,0x63,0x6b,0x65,0x64,0x2c,0x20,0x6e,0x65,0x77,0x20,0x6d,
- 0x65,0x73,0x73,0x61,0x67,0x65,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x61,0x70,0x70,
- 0x65,0x61,0x72,0x20,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x62,0x6f,0x74,0x74,0x6f,
- 0x6d,0x20,0x28,0x6c,0x69,0x6b,0x65,0x20,0x74,0x68,0x65,0x20,0x4f,0x4f,0x43,0x20,
- 0x63,0x68,0x61,0x74,0x6c,0x6f,0x67,0x29,0x2e,0x20,0x54,0x68,0x65,0x20,0x74,0x72,
- 0x61,0x64,0x69,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x20,0x28,0x41,0x4f,0x31,0x29,0x20,
- 0x62,0x65,0x68,0x61,0x76,0x69,0x6f,0x75,0x72,0x20,0x69,0x73,0x20,0x65,0x71,0x75,
- 0x69,0x76,0x61,0x6c,0x65,0x6e,0x74,0x20,0x74,0x6f,0x20,0x74,0x68,0x69,0x73,0x20,
- 0x62,0x65,0x69,0x6e,0x67,0x20,0x75,0x6e,0x74,0x69,0x63,0x6b,0x65,0x64,0x2e,0x7,
- 0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,
- 0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x1,0x2a,0x4,0x1f,0x4,0x3e,0x4,0x3a,0x4,
- 0x30,0x4,0x37,0x4,0x4b,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,
- 0x3d,0x4,0x3e,0x4,0x32,0x4,0x3e,0x4,0x35,0x0,0x20,0x4,0x41,0x4,0x3e,0x4,
- 0x3e,0x4,0x31,0x4,0x49,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x35,0x0,0x20,0x4,
- 0x3d,0x4,0x30,0x0,0x20,0x4,0x41,0x4,0x3b,0x4,0x35,0x4,0x34,0x4,0x43,0x4,
- 0x4e,0x4,0x49,0x4,0x35,0x4,0x39,0x0,0x20,0x4,0x41,0x4,0x42,0x4,0x40,0x4,
- 0x3e,0x4,0x3a,0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x41,0x4,0x3b,0x4,
- 0x35,0x0,0x20,0x4,0x38,0x4,0x3c,0x4,0x35,0x4,0x3d,0x4,0x38,0x0,0x2e,0x0,
- 0xa,0x4,0x15,0x4,0x41,0x4,0x3b,0x4,0x38,0x0,0x20,0x4,0x3e,0x4,0x3f,0x4,
- 0x46,0x4,0x38,0x4,0x4f,0x0,0x20,0x4,0x32,0x4,0x4b,0x4,0x3a,0x4,0x3b,0x4,
- 0x4e,0x4,0x47,0x4,0x35,0x4,0x3d,0x4,0x30,0x0,0x2c,0x0,0x20,0x4,0x41,0x4,
- 0x3e,0x4,0x3e,0x4,0x31,0x4,0x49,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,
- 0x20,0x4,0x31,0x4,0x43,0x4,0x34,0x4,0x43,0x4,0x42,0x0,0x20,0x4,0x3e,0x4,
- 0x42,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x36,0x4,0x30,0x4,0x42,0x4,
- 0x4c,0x4,0x41,0x4,0x4f,0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x41,0x4,0x3b,0x4,
- 0x35,0x4,0x34,0x4,0x43,0x4,0x4e,0x4,0x49,0x4,0x35,0x4,0x3c,0x0,0x20,0x4,
- 0x44,0x4,0x3e,0x4,0x40,0x4,0x3c,0x4,0x30,0x4,0x42,0x4,0x35,0x0,0x3a,0x0,
- 0x20,0x0,0x22,0x4,0x38,0x4,0x3c,0x4,0x4f,0x0,0x3a,0x0,0x20,0x4,0x41,0x4,
- 0x3e,0x4,0x3e,0x4,0x31,0x4,0x49,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x35,0x0,
- 0x22,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x99,0x49,0x66,0x20,
- 0x74,0x69,0x63,0x6b,0x65,0x64,0x2c,0x20,0x6e,0x65,0x77,0x20,0x6d,0x65,0x73,0x73,
- 0x61,0x67,0x65,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x61,0x70,0x70,0x65,0x61,0x72,
- 0x20,0x73,0x65,0x70,0x61,0x72,0x61,0x74,0x65,0x64,0x2c,0x20,0x77,0x69,0x74,0x68,
- 0x20,0x74,0x68,0x65,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x63,0x6f,0x6d,
- 0x69,0x6e,0x67,0x20,0x6f,0x6e,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x78,0x74,0x20,
- 0x6c,0x69,0x6e,0x65,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x6e,
- 0x61,0x6d,0x65,0x2e,0x20,0x57,0x68,0x65,0x6e,0x20,0x75,0x6e,0x74,0x69,0x63,0x6b,
- 0x65,0x64,0x2c,0x20,0x69,0x74,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x73,0x20,
- 0x69,0x74,0x20,0x61,0x73,0x20,0x27,0x6e,0x61,0x6d,0x65,0x3a,0x20,0x6d,0x65,0x73,
- 0x73,0x61,0x67,0x65,0x27,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,
- 0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x68,
- 0x4,0x20,0x4,0x30,0x4,0x37,0x4,0x40,0x4,0x35,0x4,0x48,0x4,0x38,0x4,0x42,
- 0x4,0x4c,0x0,0x20,0x4,0x42,0x4,0x35,0x4,0x3c,0x4,0x30,0x4,0x3c,0x0,0x20,
- 0x4,0x38,0x4,0x41,0x4,0x3f,0x4,0x3e,0x4,0x3b,0x4,0x4c,0x4,0x37,0x4,0x3e,
- 0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x30,0x4,0x3d,0x4,0x38,
- 0x4,0x3c,0x4,0x38,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x3d,
- 0x4,0x4b,0x4,0x35,0x0,0x20,0x4,0x4d,0x4,0x3b,0x4,0x35,0x4,0x3c,0x4,0x35,
- 0x4,0x3d,0x4,0x42,0x4,0x4b,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x3c,0x49,0x66,0x20,0x74,0x69,0x63,0x6b,0x65,0x64,0x2c,0x20,0x74,0x68,0x65,
- 0x6d,0x65,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x61,0x6c,0x6c,0x6f,
- 0x77,0x65,0x64,0x20,0x74,0x6f,0x20,0x68,0x61,0x76,0x65,0x20,0x61,0x6e,0x69,0x6d,
- 0x61,0x74,0x65,0x64,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x7,0x0,
- 0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,
- 0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x8e,0x4,0x1a,0x4,0x3b,0x4,0x38,0x4,0x35,
- 0x4,0x3d,0x4,0x42,0x0,0x20,0x4,0x31,0x4,0x43,0x4,0x34,0x4,0x35,0x4,0x42,
- 0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,0x41,0x4,0x38,0x4,0x42,0x4,0x4c,
- 0x0,0x20,0x4,0x41,0x4,0x35,0x4,0x40,0x4,0x32,0x4,0x35,0x4,0x40,0x0,0x20,
- 0x4,0x3e,0x4,0x41,0x4,0x42,0x4,0x30,0x4,0x3d,0x4,0x30,0x4,0x32,0x4,0x3b,
- 0x4,0x38,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x3c,0x4,0x43,
- 0x4,0x37,0x4,0x4b,0x4,0x3a,0x4,0x43,0x0,0x2c,0x0,0x20,0x4,0x3a,0x4,0x3e,
- 0x4,0x33,0x4,0x34,0x4,0x30,0x0,0x20,0x4,0x32,0x4,0x4b,0x0,0x20,0x4,0x3f,
- 0x4,0x40,0x4,0x3e,0x4,0x42,0x4,0x35,0x4,0x41,0x4,0x42,0x4,0x43,0x4,0x35,
- 0x4,0x42,0x4,0x35,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x49,
- 0x49,0x66,0x20,0x74,0x72,0x75,0x65,0x2c,0x20,0x41,0x4f,0x32,0x20,0x77,0x69,0x6c,
- 0x6c,0x20,0x61,0x73,0x6b,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x72,0x76,0x65,0x72,
- 0x20,0x74,0x6f,0x20,0x73,0x74,0x6f,0x70,0x20,0x6d,0x75,0x73,0x69,0x63,0x20,0x77,
- 0x68,0x65,0x6e,0x20,0x79,0x6f,0x75,0x20,0x75,0x73,0x65,0x20,0x27,0x4f,0x62,0x6a,
- 0x65,0x63,0x74,0x69,0x6f,0x6e,0x21,0x27,0x20,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,
- 0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,
- 0x0,0x0,0xb4,0x4,0x20,0x4,0x30,0x4,0x37,0x4,0x40,0x4,0x35,0x4,0x48,0x4,
- 0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x32,0x4,0x3e,0x4,0x41,0x4,0x3f,0x4,
- 0x40,0x4,0x3e,0x4,0x38,0x4,0x37,0x4,0x32,0x4,0x35,0x4,0x34,0x4,0x35,0x4,
- 0x3d,0x4,0x38,0x4,0x35,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x46,0x4,0x38,0x4,
- 0x3a,0x4,0x3b,0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x4b,0x4,0x45,0x0,0x20,0x4,
- 0x37,0x4,0x32,0x4,0x43,0x4,0x3a,0x4,0x3e,0x4,0x32,0x4,0x4b,0x4,0x45,0x0,
- 0x20,0x4,0x4d,0x4,0x44,0x4,0x44,0x4,0x35,0x4,0x3a,0x4,0x42,0x4,0x3e,0x4,
- 0x32,0x0,0x20,0x4,0x32,0x4,0x3e,0x0,0x20,0x4,0x32,0x4,0x40,0x4,0x35,0x4,
- 0x3c,0x4,0x4f,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x35,0x4,0x34,0x4,0x32,0x4,
- 0x30,0x4,0x40,0x4,0x38,0x4,0x42,0x4,0x35,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,
- 0x3e,0x4,0x39,0x0,0x20,0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x3c,0x4,0x30,0x4,
- 0x46,0x4,0x38,0x4,0x38,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x4c,0x49,0x66,0x20,0x74,0x72,0x75,0x65,0x2c,0x20,0x74,0x68,0x65,0x20,0x67,0x61,
- 0x6d,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x61,0x6c,0x6c,0x6f,0x77,0x20,0x6c,0x6f,
- 0x6f,0x70,0x69,0x6e,0x67,0x20,0x73,0x6f,0x75,0x6e,0x64,0x20,0x65,0x66,0x66,0x65,
- 0x63,0x74,0x73,0x20,0x74,0x6f,0x20,0x70,0x6c,0x61,0x79,0x20,0x6f,0x6e,0x20,0x70,
- 0x72,0x65,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x7,0x0,0x0,
- 0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0x0,0x0,0x0,0x4c,0x4,0x1f,0x4,0x40,0x4,0x3e,0x4,0x38,0x4,
- 0x33,0x4,0x40,0x4,0x4b,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,
- 0x41,0x4,0x38,0x4,0x33,0x4,0x3d,0x4,0x30,0x4,0x3b,0x4,0x4b,0x0,0x20,0x4,
- 0x34,0x4,0x30,0x4,0x36,0x4,0x35,0x0,0x20,0x4,0x34,0x4,0x3b,0x4,0x4f,0x0,
- 0x20,0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,0x31,0x4,0x35,0x4,0x3b,0x4,0x3e,0x4,
- 0x32,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4b,0x49,0x66,0x20,
- 0x74,0x72,0x75,0x65,0x2c,0x20,0x74,0x68,0x65,0x20,0x67,0x61,0x6d,0x65,0x20,0x77,
- 0x69,0x6c,0x6c,0x20,0x70,0x6c,0x61,0x79,0x20,0x61,0x20,0x62,0x6c,0x69,0x70,0x20,
- 0x73,0x6f,0x75,0x6e,0x64,0x20,0x65,0x76,0x65,0x6e,0x20,0x77,0x68,0x65,0x6e,0x20,
- 0x61,0x20,0x73,0x70,0x61,0x63,0x65,0x20,0x69,0x73,0x20,0x27,0x62,0x65,0x69,0x6e,
- 0x67,0x20,0x73,0x61,0x69,0x64,0x27,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,
- 0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,
- 0x0,0x98,0x4,0x15,0x4,0x41,0x4,0x3b,0x4,0x38,0x0,0x20,0x4,0x32,0x4,0x4b,
- 0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,0x38,0x4,0x37,0x4,0x32,0x4,0x3e,
- 0x4,0x34,0x4,0x38,0x4,0x42,0x4,0x35,0x4,0x3b,0x4,0x4c,0x0,0x20,0x4,0x34,
- 0x4,0x35,0x4,0x3b,0x0,0x20,0x0,0x28,0x4,0x1f,0x4,0x14,0x0,0x29,0x0,0x2c,
- 0x0,0x20,0x4,0x43,0x4,0x3a,0x4,0x30,0x4,0x36,0x4,0x38,0x4,0x42,0x4,0x35,
- 0x0,0x2c,0x0,0x20,0x4,0x3a,0x4,0x30,0x4,0x3a,0x4,0x38,0x4,0x3c,0x4,0x38,
- 0x0,0x20,0x4,0x34,0x4,0x35,0x4,0x3b,0x4,0x30,0x4,0x3c,0x4,0x38,0x0,0x20,
- 0x4,0x32,0x4,0x4b,0x0,0x20,0x4,0x45,0x4,0x3e,0x4,0x42,0x4,0x38,0x4,0x42,
- 0x4,0x35,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x3c,0x4,0x30,
- 0x4,0x42,0x4,0x4c,0x4,0x41,0x4,0x4f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x39,0x49,0x66,0x20,0x79,0x6f,0x75,0x27,0x72,0x65,0x20,0x61,0x20,
- 0x43,0x4d,0x2c,0x20,0x65,0x6e,0x74,0x65,0x72,0x20,0x77,0x68,0x61,0x74,0x20,0x63,
- 0x61,0x73,0x65,0x73,0x20,0x79,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x77,0x69,0x6c,
- 0x6c,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x68,0x6f,0x73,0x74,0x2e,0x7,0x0,0x0,
- 0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0x0,0x0,0x0,0x2a,0x4,0x12,0x4,0x3e,0x4,0x37,0x4,0x33,0x4,
- 0x3b,0x4,0x30,0x4,0x41,0x0,0x20,0x4,0x31,0x4,0x35,0x4,0x37,0x0,0x20,0x4,
- 0x37,0x4,0x30,0x4,0x34,0x4,0x35,0x4,0x40,0x4,0x36,0x4,0x3a,0x4,0x38,0x0,
- 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x49,0x6e,0x73,0x74,0x61,
- 0x6e,0x74,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x7,0x0,0x0,
- 0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0x0,0x0,0x0,0xc,0x4,0x21,0x4,0x43,0x4,0x34,0x4,0x4c,0x4,
- 0x4f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4a,0x75,0x64,
- 0x67,0x65,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,
- 0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x14,0x4,0x1f,0x4,
- 0x40,0x4,0x38,0x4,0x41,0x4,0x4f,0x4,0x36,0x4,0x3d,0x4,0x4b,0x4,0x35,0x0,
- 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4a,0x75,0x72,0x6f,0x72,
- 0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,
- 0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x28,0x4,0x22,0x4,0x38,0x4,
- 0x48,0x4,0x38,0x4,0x3d,0x4,0x30,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x38,0x0,
- 0x20,0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,0x42,0x4,0x35,0x4,0x41,0x4,0x42,0x4,
- 0x35,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x4b,0x69,0x6c,
- 0x6c,0x20,0x4d,0x75,0x73,0x69,0x63,0x20,0x4f,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,
- 0x74,0x69,0x6f,0x6e,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,
- 0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xa,0x4,
- 0x2f,0x4,0x37,0x4,0x4b,0x4,0x3a,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x9,0x4c,0x61,0x6e,0x67,0x75,0x61,0x67,0x65,0x3a,0x7,0x0,0x0,0x0,
- 0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,
- 0x1,0x3,0x0,0x0,0x0,0x12,0x4,0x14,0x4,0x35,0x4,0x39,0x4,0x41,0x4,0x42,
- 0x4,0x32,0x4,0x38,0x4,0x4f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0xf,0x4c,0x6f,0x67,0x20,0x49,0x43,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,
- 0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,
- 0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x2e,0x4,0x18,0x4,0x41,0x4,
- 0x42,0x4,0x3e,0x4,0x40,0x4,0x38,0x4,0x4f,0x0,0x20,0x4,0x47,0x4,0x30,0x4,
- 0x42,0x4,0x30,0x0,0x20,0x4,0x38,0x4,0x34,0x4,0x51,0x4,0x42,0x0,0x20,0x4,
- 0x32,0x4,0x3d,0x4,0x38,0x4,0x37,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x13,0x4c,0x6f,0x67,0x20,0x67,0x6f,0x65,0x73,0x20,0x64,0x6f,0x77,0x6e,
- 0x77,0x61,0x72,0x64,0x73,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,
- 0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x3a,
- 0x4,0x20,0x4,0x30,0x4,0x37,0x4,0x3c,0x4,0x35,0x4,0x40,0x0,0x20,0x4,0x38,
- 0x4,0x41,0x4,0x42,0x4,0x3e,0x4,0x40,0x4,0x38,0x4,0x38,0x0,0x20,0x4,0x38,
- 0x4,0x33,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x3e,0x4,0x33,0x4,0x3e,0x0,0x20,
- 0x4,0x47,0x4,0x30,0x4,0x42,0x4,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0xb,0x4c,0x6f,0x67,0x20,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3a,0x7,
- 0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,
- 0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x12,0x4,0x18,0x4,0x3d,0x4,0x42,0x4,
- 0x35,0x4,0x40,0x4,0x32,0x4,0x30,0x4,0x3b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0xb,0x4c,0x6f,0x67,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,
- 0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,
- 0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x32,0x4,0x21,0x4,0x3e,0x4,0x45,
- 0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x4f,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x3f,
- 0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x3d,0x4,0x3e,0x4,0x41,0x0,0x20,0x4,0x41,
- 0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x3a,0x4,0x38,0x0,0x3a,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x6f,0x67,0x20,0x6e,0x65,0x77,0x6c,0x69,0x6e,
- 0x65,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,
- 0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x1c,0x4,0x1c,0x4,0x35,
- 0x4,0x42,0x4,0x3a,0x4,0x38,0x0,0x20,0x4,0x32,0x4,0x40,0x4,0x35,0x4,0x3c,
- 0x4,0x35,0x4,0x3d,0x4,0x38,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0xe,0x4c,0x6f,0x67,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x3a,
- 0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,
- 0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x1,0x4e,0x4,0x1c,0x4,0x38,0x4,0x3d,
- 0x4,0x38,0x4,0x3c,0x4,0x30,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x3e,0x4,0x35,
- 0x0,0x20,0x4,0x32,0x4,0x40,0x4,0x35,0x4,0x3c,0x4,0x4f,0x0,0x20,0x0,0x28,
- 0x4,0x32,0x0,0x20,0x4,0x3c,0x4,0x38,0x4,0x3b,0x4,0x3b,0x4,0x38,0x4,0x41,
- 0x4,0x35,0x4,0x3a,0x4,0x43,0x4,0x3d,0x4,0x34,0x4,0x30,0x4,0x45,0x0,0x29,
- 0x0,0x2c,0x0,0x20,0x4,0x3a,0x4,0x3e,0x4,0x42,0x4,0x3e,0x4,0x40,0x4,0x3e,
- 0x4,0x35,0x0,0x20,0x4,0x41,0x4,0x3e,0x4,0x3e,0x4,0x31,0x4,0x49,0x4,0x35,
- 0x4,0x3d,0x4,0x38,0x4,0x35,0x0,0x20,0x4,0x38,0x4,0x33,0x4,0x40,0x4,0x3e,
- 0x4,0x32,0x4,0x3e,0x4,0x33,0x4,0x3e,0x0,0x20,0x4,0x47,0x4,0x30,0x4,0x42,
- 0x4,0x30,0x0,0x20,0x4,0x34,0x4,0x3e,0x4,0x3b,0x4,0x36,0x4,0x3d,0x4,0x3e,
- 0x0,0x20,0x4,0x3e,0x4,0x42,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x36,
- 0x4,0x30,0x4,0x42,0x4,0x4c,0x4,0x41,0x4,0x4f,0x0,0x20,0x4,0x3f,0x4,0x35,
- 0x4,0x40,0x4,0x35,0x4,0x34,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x3a,0x4,0x30,
- 0x4,0x37,0x4,0x3e,0x4,0x3c,0x0,0x20,0x4,0x41,0x4,0x3b,0x4,0x35,0x4,0x34,
- 0x4,0x43,0x4,0x4e,0x4,0x49,0x4,0x35,0x4,0x33,0x4,0x3e,0x0,0x2c,0x0,0x20,
- 0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x43,0x4,0x4f,0x0,0x20,
- 0x4,0x3e,0x4,0x47,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x34,0x4,0x4c,0x0,0x2e,
- 0x0,0xa,0x4,0x1f,0x4,0x3e,0x4,0x41,0x4,0x42,0x4,0x30,0x4,0x32,0x4,0x4c,
- 0x4,0x42,0x4,0x35,0x0,0x20,0x0,0x30,0x0,0x20,0x4,0x34,0x4,0x3b,0x4,0x4f,
- 0x0,0x20,0x4,0x3e,0x4,0x42,0x4,0x3a,0x4,0x3b,0x4,0x4e,0x4,0x47,0x4,0x35,
- 0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,0x20,0x4,0x3e,0x4,0x47,0x4,0x35,0x4,0x40,
- 0x4,0x35,0x4,0x34,0x4,0x38,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0xa6,0x4d,0x69,0x6e,0x69,0x6d,0x75,0x6d,0x20,0x61,0x6d,0x6f,0x75,0x6e,0x74,
- 0x20,0x6f,0x66,0x20,0x74,0x69,0x6d,0x65,0x20,0x28,0x69,0x6e,0x20,0x6d,0x69,0x6c,
- 0x69,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x29,0x20,0x61,0x6e,0x20,0x49,0x43,0x20,
- 0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x6d,0x75,0x73,0x74,0x20,0x73,0x74,0x61,
- 0x79,0x20,0x6f,0x6e,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x62,0x65,0x66,0x6f,
- 0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x78,0x74,0x20,0x49,0x43,0x20,0x6d,
- 0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x69,0x73,0x20,0x73,0x68,0x6f,0x77,0x6e,0x2c,
- 0x20,0x61,0x63,0x74,0x69,0x6e,0x67,0x20,0x61,0x73,0x20,0x61,0x20,0x27,0x71,0x75,
- 0x65,0x75,0x65,0x27,0x2e,0x20,0x53,0x65,0x74,0x20,0x74,0x6f,0x20,0x30,0x20,0x74,
- 0x6f,0x20,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x20,0x74,0x68,0x69,0x73,0x20,0x62,
- 0x65,0x68,0x61,0x76,0x69,0x6f,0x72,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,
- 0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,
- 0x1,0x2,0x4,0x1c,0x4,0x38,0x4,0x3d,0x4,0x38,0x4,0x3c,0x4,0x30,0x4,0x3b,
- 0x4,0x4c,0x4,0x3d,0x4,0x3e,0x4,0x35,0x0,0x20,0x4,0x32,0x4,0x40,0x4,0x35,
- 0x4,0x3c,0x4,0x4f,0x0,0x20,0x0,0x28,0x4,0x32,0x0,0x20,0x4,0x3c,0x4,0x38,
- 0x4,0x3b,0x4,0x3b,0x4,0x38,0x4,0x41,0x4,0x35,0x4,0x3a,0x4,0x43,0x4,0x3d,
- 0x4,0x34,0x4,0x30,0x4,0x45,0x0,0x29,0x0,0x2c,0x0,0x20,0x4,0x3a,0x4,0x3e,
- 0x4,0x42,0x4,0x3e,0x4,0x40,0x4,0x3e,0x4,0x35,0x0,0x20,0x4,0x34,0x4,0x3e,
- 0x4,0x3b,0x4,0x36,0x4,0x3d,0x4,0x3e,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x3e,
- 0x4,0x39,0x4,0x42,0x4,0x38,0x0,0x2c,0x0,0xa,0x4,0x3f,0x4,0x40,0x4,0x35,
- 0x4,0x36,0x4,0x34,0x4,0x35,0x0,0x20,0x4,0x47,0x4,0x35,0x4,0x3c,0x0,0x20,
- 0x4,0x3d,0x4,0x30,0x4,0x36,0x4,0x30,0x4,0x42,0x4,0x38,0x4,0x35,0x0,0x20,
- 0x0,0x45,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x4,0x41,0x4,0x3d,
- 0x4,0x3e,0x4,0x32,0x4,0x30,0x0,0x20,0x4,0x3e,0x4,0x42,0x4,0x3f,0x4,0x40,
- 0x4,0x30,0x4,0x32,0x4,0x38,0x4,0x42,0x0,0x20,0x4,0x32,0x4,0x30,0x4,0x48,
- 0x4,0x35,0x0,0x20,0x4,0x41,0x4,0x3e,0x4,0x3e,0x4,0x31,0x4,0x49,0x4,0x35,
- 0x4,0x3d,0x4,0x38,0x4,0x35,0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x38,0x4,0x33,
- 0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x3e,0x4,0x39,0x0,0x20,0x4,0x47,0x4,0x30,
- 0x4,0x42,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x71,0x4d,0x69,
- 0x6e,0x69,0x6d,0x75,0x6d,0x20,0x61,0x6d,0x6f,0x75,0x6e,0x74,0x20,0x6f,0x66,0x20,
- 0x74,0x69,0x6d,0x65,0x20,0x28,0x69,0x6e,0x20,0x6d,0x69,0x6c,0x69,0x73,0x65,0x63,
- 0x6f,0x6e,0x64,0x73,0x29,0x20,0x74,0x68,0x61,0x74,0x20,0x6d,0x75,0x73,0x74,0x20,
- 0x70,0x61,0x73,0x73,0x20,0x62,0x65,0x66,0x6f,0x72,0x65,0x20,0x74,0x68,0x65,0x20,
- 0x6e,0x65,0x78,0x74,0x20,0x45,0x6e,0x74,0x65,0x72,0x20,0x6b,0x65,0x79,0x20,0x70,
- 0x72,0x65,0x73,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x73,0x65,0x6e,0x64,0x20,0x79,
- 0x6f,0x75,0x72,0x20,0x49,0x43,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2e,0x7,
- 0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,
- 0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xe,0x4,0x1c,0x4,0x43,0x4,0x37,0x4,
- 0x4b,0x4,0x3a,0x4,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x6,0x4d,0x75,0x73,0x69,0x63,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,
- 0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,
- 0x20,0x4,0x2d,0x4,0x44,0x4,0x44,0x4,0x35,0x4,0x3a,0x4,0x42,0x4,0x4b,0x0,
- 0x20,0x4,0x3f,0x4,0x3e,0x0,0x20,0x4,0x41,0x4,0x35,0x4,0x42,0x4,0x38,0x0,
- 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x4e,0x65,0x74,0x77,0x6f,
- 0x72,0x6b,0x20,0x46,0x72,0x61,0x6d,0x65,0x20,0x45,0x66,0x66,0x65,0x63,0x74,0x73,
- 0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,
- 0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x4a,0x4,0x1f,0x4,0x40,0x4,
- 0x3e,0x4,0x38,0x4,0x33,0x4,0x40,0x4,0x4b,0x4,0x32,0x4,0x30,0x4,0x42,0x4,
- 0x4c,0x0,0x20,0x4,0x41,0x4,0x38,0x4,0x33,0x4,0x3d,0x4,0x30,0x4,0x3b,0x0,
- 0x20,0x4,0x3a,0x4,0x30,0x4,0x36,0x4,0x34,0x4,0x4b,0x4,0x35,0x0,0x20,0x4,
- 0x25,0x0,0x20,0x4,0x41,0x4,0x38,0x4,0x3c,0x4,0x32,0x4,0x3e,0x4,0x3b,0x4,
- 0x3e,0x4,0x32,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x47,0x50,
- 0x6c,0x61,0x79,0x20,0x61,0x20,0x62,0x6c,0x69,0x70,0x20,0x73,0x6f,0x75,0x6e,0x64,
- 0x20,0x22,0x6f,0x6e,0x63,0x65,0x20,0x70,0x65,0x72,0x20,0x65,0x76,0x65,0x72,0x79,
- 0x20,0x58,0x20,0x73,0x79,0x6d,0x62,0x6f,0x6c,0x73,0x22,0x2c,0x20,0x77,0x68,0x65,
- 0x72,0x65,0x20,0x58,0x20,0x69,0x73,0x20,0x74,0x68,0x65,0x20,0x62,0x6c,0x69,0x70,
- 0x20,0x72,0x61,0x74,0x65,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,
- 0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x4c,
- 0x4,0x14,0x4,0x3e,0x4,0x3f,0x4,0x3e,0x4,0x3b,0x4,0x3d,0x4,0x38,0x4,0x42,
- 0x4,0x35,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x4b,0x4,0x35,0x0,0x20,0x4,0x3f,
- 0x4,0x3e,0x4,0x4f,0x4,0x41,0x4,0x3d,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x4f,
- 0x0,0x20,0x4,0x3d,0x4,0x35,0x0,0x20,0x4,0x42,0x4,0x40,0x4,0x35,0x4,0x31,
- 0x4,0x43,0x4,0x4e,0x4,0x42,0x4,0x41,0x4,0x4f,0x0,0x2e,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x18,0x50,0x72,0x65,0x74,0x74,0x79,0x20,0x73,0x65,0x6c,
- 0x66,0x2d,0x65,0x78,0x70,0x6c,0x61,0x6e,0x61,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,
- 0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,
- 0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x14,0x4,0x1e,0x4,0x31,0x4,0x32,0x4,0x38,
- 0x4,0x3d,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x35,0x0,0x3a,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0xc,0x50,0x72,0x6f,0x73,0x65,0x63,0x75,0x74,0x69,0x6f,
- 0x6e,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,
- 0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x6c,0x4,0x1f,0x4,0x35,
- 0x4,0x40,0x4,0x35,0x4,0x37,0x4,0x30,0x4,0x33,0x4,0x40,0x4,0x43,0x4,0x37,
- 0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x42,0x4,0x35,0x4,0x3c,0x4,0x43,
- 0x0,0x20,0x4,0x38,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x3d,0x4,0x3e,0x4,0x32,
- 0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x32,0x4,0x41,0x4,0x35,0x0,0x20,
- 0x4,0x4d,0x4,0x3b,0x4,0x35,0x4,0x3c,0x4,0x35,0x4,0x3d,0x4,0x42,0x4,0x4b,
- 0x0,0x20,0x4,0x38,0x4,0x3d,0x4,0x42,0x4,0x35,0x4,0x40,0x4,0x44,0x4,0x35,
- 0x4,0x39,0x4,0x41,0x4,0x30,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x3d,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x74,0x68,0x65,0x20,0x74,0x68,
- 0x65,0x6d,0x65,0x20,0x61,0x6e,0x64,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x61,
- 0x6c,0x6c,0x20,0x6f,0x66,0x20,0x74,0x68,0x65,0x20,0x75,0x69,0x20,0x65,0x6c,0x65,
- 0x6d,0x65,0x6e,0x74,0x73,0x20,0x74,0x6f,0x20,0x6d,0x61,0x74,0x63,0x68,0x2e,0x7,
- 0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,
- 0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x24,0x4,0x1f,0x4,0x35,0x4,0x40,0x4,
- 0x35,0x4,0x37,0x4,0x30,0x4,0x33,0x4,0x40,0x4,0x43,0x4,0x37,0x4,0x38,0x4,
- 0x42,0x4,0x4c,0x0,0x20,0x4,0x42,0x4,0x35,0x4,0x3c,0x4,0x43,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20,0x54,0x68,
- 0x65,0x6d,0x65,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,
- 0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x1c,0x4,0x17,0x4,
- 0x32,0x4,0x43,0x4,0x3a,0x0,0x2e,0x0,0x20,0x4,0x4d,0x4,0x44,0x4,0x44,0x4,
- 0x35,0x4,0x3a,0x4,0x42,0x4,0x4b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x4,0x53,0x46,0x58,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,
- 0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x1,
- 0x3a,0x4,0x20,0x4,0x30,0x4,0x37,0x4,0x40,0x4,0x35,0x4,0x48,0x4,0x38,0x4,
- 0x42,0x4,0x4c,0x0,0x20,0x4,0x3e,0x4,0x42,0x4,0x3f,0x4,0x40,0x4,0x30,0x4,
- 0x32,0x4,0x3a,0x4,0x43,0x0,0x20,0x4,0x37,0x4,0x32,0x4,0x43,0x4,0x3a,0x4,
- 0x3e,0x4,0x32,0x0,0x2c,0x0,0x20,0x4,0x4d,0x4,0x44,0x4,0x44,0x4,0x35,0x4,
- 0x3a,0x4,0x42,0x4,0x3e,0x4,0x32,0x0,0x20,0x4,0x32,0x4,0x41,0x4,0x3f,0x4,
- 0x4b,0x4,0x48,0x4,0x35,0x4,0x3a,0x0,0x20,0x4,0x38,0x0,0x20,0x4,0x32,0x4,
- 0x41,0x4,0x42,0x4,0x40,0x4,0x4f,0x4,0x41,0x4,0x3a,0x4,0x38,0x0,0x20,0x4,
- 0x4d,0x4,0x3a,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x30,0x0,0x20,0x4,0x3f,0x4,
- 0x3e,0x0,0x20,0x4,0x41,0x4,0x35,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x32,0x0,
- 0x20,0x4,0x41,0x4,0x3e,0x4,0x3e,0x4,0x42,0x4,0x32,0x4,0x35,0x4,0x42,0x4,
- 0x41,0x4,0x42,0x4,0x32,0x4,0x38,0x4,0x38,0x0,0x20,0x4,0x41,0x0,0x20,0x0,
- 0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x2e,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,
- 0x2e,0x0,0x20,0x0,0xa,0x4,0x20,0x4,0x30,0x4,0x31,0x4,0x3e,0x4,0x42,0x4,
- 0x30,0x4,0x35,0x4,0x42,0x0,0x20,0x4,0x42,0x4,0x3e,0x4,0x3b,0x4,0x4c,0x4,
- 0x3a,0x4,0x3e,0x0,0x20,0x4,0x3d,0x4,0x30,0x0,0x20,0x4,0x41,0x4,0x35,0x4,
- 0x40,0x4,0x32,0x4,0x35,0x4,0x40,0x4,0x30,0x4,0x45,0x0,0x2c,0x0,0x20,0x4,
- 0x3f,0x4,0x3e,0x4,0x34,0x4,0x34,0x4,0x35,0x4,0x40,0x4,0x36,0x4,0x38,0x4,
- 0x32,0x4,0x30,0x4,0x4e,0x4,0x49,0x4,0x38,0x4,0x45,0x0,0x20,0x4,0x34,0x4,
- 0x30,0x4,0x3d,0x4,0x3d,0x4,0x43,0x4,0x4e,0x0,0x20,0x4,0x44,0x4,0x43,0x4,
- 0x3d,0x4,0x3a,0x4,0x46,0x4,0x38,0x4,0x4e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x8c,0x53,0x65,0x6e,0x64,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,
- 0x2d,0x73,0x68,0x61,0x6b,0x69,0x6e,0x67,0x2c,0x20,0x66,0x6c,0x61,0x73,0x68,0x65,
- 0x73,0x20,0x61,0x6e,0x64,0x20,0x73,0x6f,0x75,0x6e,0x64,0x73,0x20,0x61,0x73,0x20,
- 0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x63,
- 0x68,0x61,0x72,0x2e,0x69,0x6e,0x69,0x20,0x6f,0x76,0x65,0x72,0x20,0x74,0x68,0x65,
- 0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x2e,0x20,0x4f,0x6e,0x6c,0x79,0x20,0x77,
- 0x6f,0x72,0x6b,0x73,0x20,0x66,0x6f,0x72,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x73,
- 0x20,0x74,0x68,0x61,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x20,0x74,0x68,
- 0x69,0x73,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x69,0x74,0x79,
- 0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,
- 0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x1,0x70,0x4,0x1e,0x4,0x3f,0x4,
- 0x40,0x4,0x35,0x4,0x34,0x4,0x35,0x4,0x3b,0x4,0x4f,0x4,0x35,0x4,0x42,0x0,
- 0x20,0x4,0x3f,0x4,0x3e,0x4,0x34,0x4,0x42,0x4,0x35,0x4,0x3c,0x4,0x43,0x0,
- 0x2c,0x0,0x20,0x4,0x3a,0x4,0x3e,0x4,0x42,0x4,0x3e,0x4,0x40,0x4,0x30,0x4,
- 0x4f,0x0,0x20,0x4,0x41,0x4,0x42,0x4,0x30,0x4,0x32,0x4,0x38,0x4,0x42,0x4,
- 0x41,0x4,0x4f,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x32,0x4,0x35,0x4,0x40,0x4,
- 0x45,0x0,0x20,0x4,0x42,0x4,0x35,0x4,0x3a,0x4,0x43,0x4,0x49,0x4,0x35,0x4,
- 0x39,0x0,0x20,0x4,0x42,0x4,0x35,0x4,0x3c,0x4,0x4b,0x0,0x20,0x4,0x38,0x0,
- 0x20,0x4,0x37,0x4,0x30,0x4,0x3c,0x4,0x35,0x4,0x3d,0x4,0x4f,0x4,0x35,0x4,
- 0x42,0x0,0x20,0x4,0x32,0x4,0x41,0x4,0x35,0x0,0x2c,0x0,0x20,0x4,0x47,0x4,
- 0x42,0x4,0x3e,0x0,0x20,0x4,0x3c,0x4,0x3e,0x4,0x36,0x4,0x35,0x4,0x42,0x0,
- 0x2e,0x0,0xa,0x4,0x12,0x4,0x4b,0x4,0x31,0x4,0x35,0x4,0x40,0x4,0x38,0x4,
- 0x42,0x4,0x35,0x0,0x20,0x0,0x22,0x4,0x41,0x4,0x35,0x4,0x40,0x4,0x32,0x4,
- 0x35,0x4,0x40,0x0,0x22,0x0,0x2c,0x0,0x20,0x4,0x47,0x4,0x42,0x4,0x3e,0x4,
- 0x31,0x4,0x4b,0x0,0x20,0x4,0x3e,0x4,0x41,0x4,0x42,0x4,0x30,0x4,0x32,0x4,
- 0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x32,0x4,0x4b,0x4,0x31,0x4,0x3e,0x4,
- 0x40,0x0,0x20,0x4,0x37,0x4,0x30,0x0,0x20,0x4,0x41,0x4,0x35,0x4,0x40,0x4,
- 0x32,0x4,0x35,0x4,0x40,0x4,0x3e,0x4,0x3c,0x0,0x2e,0x0,0xa,0x4,0x12,0x4,
- 0x4b,0x4,0x31,0x4,0x35,0x4,0x40,0x4,0x38,0x4,0x42,0x4,0x35,0x0,0x20,0x0,
- 0x22,0x4,0x3f,0x4,0x3e,0x0,0x20,0x4,0x43,0x4,0x3c,0x4,0x3e,0x4,0x3b,0x4,
- 0x47,0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x4e,0x0,0x22,0x0,0x2c,0x0,0x20,0x4,
- 0x47,0x4,0x42,0x4,0x3e,0x4,0x31,0x4,0x4b,0x0,0x20,0x4,0x3e,0x4,0x3d,0x4,
- 0x30,0x0,0x20,0x4,0x3d,0x4,0x35,0x0,0x20,0x4,0x3c,0x4,0x35,0x4,0x3d,0x4,
- 0x4f,0x4,0x3b,0x4,0x30,0x4,0x41,0x4,0x4c,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0xb5,0x53,0x65,0x74,0x73,0x20,0x61,0x20,0x27,0x73,0x75,0x62,
- 0x74,0x68,0x65,0x6d,0x65,0x27,0x2c,0x20,0x77,0x68,0x69,0x63,0x68,0x20,0x77,0x69,
- 0x6c,0x6c,0x20,0x73,0x74,0x61,0x63,0x6b,0x20,0x6f,0x6e,0x20,0x74,0x6f,0x70,0x20,
- 0x6f,0x66,0x20,0x74,0x68,0x65,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x74,
- 0x68,0x65,0x6d,0x65,0x20,0x61,0x6e,0x64,0x20,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,
- 0x20,0x61,0x6e,0x79,0x74,0x68,0x69,0x6e,0x67,0x20,0x69,0x74,0x20,0x63,0x61,0x6e,
- 0x2e,0x4b,0x65,0x65,0x70,0x20,0x69,0x74,0x20,0x61,0x74,0x20,0x27,0x73,0x65,0x72,
- 0x76,0x65,0x72,0x27,0x20,0x74,0x6f,0x20,0x6c,0x65,0x74,0x20,0x74,0x68,0x65,0x20,
- 0x73,0x65,0x72,0x76,0x65,0x72,0x20,0x64,0x65,0x63,0x69,0x64,0x65,0x2e,0x20,0x4b,
- 0x65,0x65,0x70,0x20,0x69,0x74,0x20,0x61,0x74,0x20,0x27,0x64,0x65,0x66,0x61,0x75,
- 0x6c,0x74,0x27,0x20,0x74,0x6f,0x20,0x6b,0x65,0x65,0x70,0x20,0x69,0x74,0x20,0x75,
- 0x6e,0x63,0x68,0x61,0x6e,0x67,0x69,0x6e,0x67,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,
- 0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,
- 0x0,0x0,0x0,0xa0,0x4,0x13,0x4,0x40,0x4,0x3e,0x4,0x3c,0x4,0x3a,0x4,0x3e,
- 0x4,0x41,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x37,0x4,0x32,0x4,0x43,0x4,0x3a,
- 0x4,0x3e,0x4,0x32,0x4,0x4b,0x4,0x45,0x0,0x20,0x4,0x4d,0x4,0x44,0x4,0x44,
- 0x4,0x35,0x4,0x3a,0x4,0x42,0x4,0x3e,0x4,0x32,0x0,0x20,0x4,0x3f,0x4,0x3e,
- 0x0,0x20,0x4,0x43,0x4,0x3c,0x4,0x3e,0x4,0x3b,0x4,0x47,0x4,0x30,0x4,0x3d,
- 0x4,0x38,0x4,0x4e,0x0,0x2e,0x0,0x20,0x4,0x12,0x0,0x20,0x4,0x4d,0x4,0x42,
- 0x4,0x43,0x0,0x20,0x4,0x3a,0x4,0x30,0x4,0x42,0x4,0x35,0x4,0x33,0x4,0x3e,
- 0x4,0x40,0x4,0x38,0x4,0x4e,0x0,0x20,0x4,0x42,0x4,0x30,0x4,0x3a,0x4,0x36,
- 0x4,0x35,0x0,0x20,0x4,0x32,0x4,0x45,0x4,0x3e,0x4,0x34,0x4,0x4f,0x4,0x42,
- 0x0,0x20,0x4,0x32,0x4,0x3e,0x4,0x37,0x4,0x33,0x4,0x3b,0x4,0x30,0x4,0x41,
- 0x4,0x4b,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x55,0x53,0x65,
- 0x74,0x73,0x20,0x74,0x68,0x65,0x20,0x53,0x46,0x58,0x27,0x73,0x20,0x64,0x65,0x66,
- 0x61,0x75,0x6c,0x74,0x20,0x76,0x6f,0x6c,0x75,0x6d,0x65,0x2e,0x20,0x49,0x6e,0x74,
- 0x65,0x72,0x6a,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x61,0x6e,0x64,0x20,0x61,
- 0x63,0x74,0x75,0x61,0x6c,0x20,0x73,0x6f,0x75,0x6e,0x64,0x20,0x65,0x66,0x66,0x65,
- 0x63,0x74,0x73,0x20,0x63,0x6f,0x75,0x6e,0x74,0x20,0x61,0x73,0x20,0x27,0x53,0x46,
- 0x58,0x27,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,
- 0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x74,0x4,0x23,0x4,
- 0x3a,0x4,0x30,0x4,0x36,0x4,0x38,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x43,0x4,
- 0x41,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x39,0x4,0x41,0x4,0x42,0x4,0x32,0x4,
- 0x3e,0x0,0x20,0x4,0x32,0x4,0x3e,0x4,0x41,0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,
- 0x38,0x4,0x37,0x4,0x32,0x4,0x35,0x4,0x34,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,
- 0x4f,0x0,0x20,0x4,0x32,0x4,0x41,0x4,0x35,0x4,0x33,0x4,0x3e,0x0,0x20,0x4,
- 0x30,0x4,0x43,0x4,0x34,0x4,0x38,0x4,0x3e,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,
- 0x38,0x4,0x3b,0x4,0x3e,0x4,0x36,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,
- 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x25,0x53,0x65,0x74,0x73,0x20,
- 0x74,0x68,0x65,0x20,0x61,0x75,0x64,0x69,0x6f,0x20,0x64,0x65,0x76,0x69,0x63,0x65,
- 0x20,0x66,0x6f,0x72,0x20,0x61,0x6c,0x6c,0x20,0x73,0x6f,0x75,0x6e,0x64,0x73,0x2e,
- 0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,
- 0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x72,0x4,0x17,0x4,0x30,0x4,0x34,
- 0x4,0x35,0x4,0x40,0x4,0x36,0x4,0x3a,0x4,0x30,0x0,0x20,0x4,0x3f,0x4,0x3e,
- 0x0,0x20,0x4,0x43,0x4,0x3c,0x4,0x3e,0x4,0x3b,0x4,0x47,0x4,0x30,0x4,0x3d,
- 0x4,0x38,0x4,0x4e,0x0,0x20,0x4,0x3c,0x4,0x35,0x4,0x36,0x4,0x34,0x4,0x43,
- 0x0,0x20,0x4,0x41,0x4,0x38,0x4,0x33,0x4,0x3d,0x4,0x30,0x4,0x3b,0x4,0x30,
- 0x4,0x3c,0x4,0x38,0x0,0x2c,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x3c,0x4,0x35,
- 0x4,0x3d,0x4,0x4f,0x4,0x4e,0x4,0x49,0x4,0x38,0x4,0x3c,0x4,0x38,0x0,0x20,
- 0x4,0x33,0x4,0x3e,0x4,0x3b,0x4,0x3e,0x4,0x41,0x0,0x2e,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x2f,0x53,0x65,0x74,0x73,0x20,0x74,0x68,0x65,0x20,0x64,
- 0x65,0x6c,0x61,0x79,0x20,0x62,0x65,0x74,0x77,0x65,0x65,0x6e,0x20,0x70,0x6c,0x61,
- 0x79,0x69,0x6e,0x67,0x20,0x74,0x68,0x65,0x20,0x62,0x6c,0x69,0x70,0x20,0x73,0x6f,
- 0x75,0x6e,0x64,0x73,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,
- 0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xa2,0x4,
- 0x18,0x4,0x37,0x4,0x3c,0x4,0x35,0x4,0x3d,0x4,0x4f,0x4,0x35,0x4,0x42,0x0,
- 0x20,0x4,0x4f,0x4,0x37,0x4,0x4b,0x4,0x3a,0x0,0x20,0x4,0x38,0x4,0x3d,0x4,
- 0x42,0x4,0x35,0x4,0x40,0x4,0x44,0x4,0x35,0x4,0x39,0x4,0x41,0x4,0x30,0x0,
- 0x20,0x4,0x3f,0x4,0x40,0x4,0x38,0x4,0x3b,0x4,0x3e,0x4,0x36,0x4,0x35,0x4,
- 0x3d,0x4,0x38,0x4,0x4f,0x0,0x2c,0x0,0x20,0x4,0x35,0x4,0x41,0x4,0x3b,0x4,
- 0x38,0x0,0x20,0x4,0x32,0x4,0x4b,0x0,0x20,0x4,0x3d,0x4,0x35,0x0,0x20,0x4,
- 0x45,0x4,0x3e,0x4,0x42,0x4,0x38,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x38,0x4,
- 0x41,0x4,0x3f,0x4,0x3e,0x4,0x3b,0x4,0x4c,0x4,0x37,0x4,0x3e,0x4,0x32,0x4,
- 0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x4f,0x4,0x37,0x4,0x4b,0x4,0x3a,0x0,
- 0x20,0x4,0x41,0x4,0x38,0x4,0x41,0x4,0x42,0x4,0x35,0x4,0x3c,0x4,0x4b,0x0,
- 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x40,0x53,0x65,0x74,0x73,0x20,
- 0x74,0x68,0x65,0x20,0x6c,0x61,0x6e,0x67,0x75,0x61,0x67,0x65,0x20,0x69,0x66,0x20,
- 0x79,0x6f,0x75,0x20,0x64,0x6f,0x6e,0x27,0x74,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,
- 0x6f,0x20,0x75,0x73,0x65,0x20,0x79,0x6f,0x75,0x72,0x20,0x73,0x79,0x73,0x74,0x65,
- 0x6d,0x20,0x6c,0x61,0x6e,0x67,0x75,0x61,0x67,0x65,0x2e,0x7,0x0,0x0,0x0,0xf,
- 0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,
- 0x3,0x0,0x0,0x0,0x3c,0x4,0x13,0x4,0x40,0x4,0x3e,0x4,0x3c,0x4,0x3a,0x4,
- 0x3e,0x4,0x41,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x3c,0x4,0x43,0x4,0x37,0x4,
- 0x4b,0x4,0x3a,0x4,0x38,0x0,0x20,0x4,0x3f,0x4,0x3e,0x0,0x20,0x4,0x43,0x4,
- 0x3c,0x4,0x3e,0x4,0x3b,0x4,0x47,0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x4e,0x0,
- 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x20,0x53,0x65,0x74,0x73,0x20,
- 0x74,0x68,0x65,0x20,0x6d,0x75,0x73,0x69,0x63,0x27,0x73,0x20,0x64,0x65,0x66,0x61,
- 0x75,0x6c,0x74,0x20,0x76,0x6f,0x6c,0x75,0x6d,0x65,0x2e,0x7,0x0,0x0,0x0,0xf,
- 0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,
- 0x3,0x0,0x0,0x0,0xbc,0x4,0x1e,0x4,0x3f,0x4,0x40,0x4,0x35,0x4,0x34,0x4,
- 0x35,0x4,0x3b,0x4,0x4f,0x4,0x35,0x4,0x42,0x0,0x20,0x4,0x32,0x4,0x3d,0x4,
- 0x35,0x4,0x48,0x4,0x3d,0x4,0x38,0x4,0x39,0x0,0x20,0x4,0x32,0x4,0x38,0x4,
- 0x34,0x0,0x20,0x4,0x38,0x4,0x33,0x4,0x40,0x4,0x4b,0x0,0x2e,0x0,0x20,0x4,
- 0x14,0x4,0x3b,0x4,0x4f,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x38,0x4,0x3c,0x4,
- 0x35,0x4,0x3d,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,0x20,0x4,0x3d,0x4,
- 0x3e,0x4,0x32,0x4,0x3e,0x4,0x39,0x0,0x20,0x4,0x42,0x4,0x35,0x4,0x3c,0x4,
- 0x4b,0x0,0x20,0x4,0x3c,0x4,0x3e,0x4,0x36,0x4,0x35,0x4,0x42,0x0,0x20,0x4,
- 0x3f,0x4,0x3e,0x4,0x3d,0x4,0x30,0x4,0x34,0x4,0x3e,0x4,0x31,0x4,0x38,0x4,
- 0x42,0x4,0x4c,0x4,0x41,0x4,0x4f,0x0,0x20,0x4,0x3f,0x4,0x35,0x4,0x40,0x4,
- 0x35,0x4,0x37,0x4,0x30,0x4,0x39,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x3d,0x4,
- 0x30,0x0,0x20,0x4,0x41,0x4,0x35,0x4,0x40,0x4,0x32,0x4,0x35,0x4,0x40,0x0,
- 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xbb,0x53,0x65,0x74,0x73,0x20,
- 0x74,0x68,0x65,0x20,0x74,0x68,0x65,0x6d,0x65,0x20,0x75,0x73,0x65,0x64,0x20,0x69,
- 0x6e,0x2d,0x67,0x61,0x6d,0x65,0x2e,0x20,0x49,0x66,0x20,0x74,0x68,0x65,0x20,0x6e,
- 0x65,0x77,0x20,0x74,0x68,0x65,0x6d,0x65,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x73,
- 0x20,0x74,0x68,0x65,0x20,0x6c,0x6f,0x62,0x62,0x79,0x27,0x73,0x20,0x6c,0x6f,0x6f,
- 0x6b,0x20,0x61,0x73,0x20,0x77,0x65,0x6c,0x6c,0x2c,0x20,0x79,0x6f,0x75,0x27,0x6c,
- 0x6c,0x20,0x6e,0x65,0x65,0x64,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x6f,0x61,0x64,
- 0x20,0x74,0x68,0x65,0x20,0x6c,0x6f,0x62,0x62,0x79,0x20,0x66,0x6f,0x72,0x20,0x74,
- 0x68,0x65,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x73,0x20,0x74,0x6f,0x20,0x74,0x61,
- 0x6b,0x65,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x2c,0x20,0x73,0x75,0x63,0x68,0x20,
- 0x61,0x73,0x20,0x62,0x79,0x20,0x6a,0x6f,0x69,0x6e,0x69,0x6e,0x67,0x20,0x61,0x20,
- 0x73,0x65,0x72,0x76,0x65,0x72,0x20,0x61,0x6e,0x64,0x20,0x6c,0x65,0x61,0x76,0x69,
- 0x6e,0x67,0x20,0x69,0x74,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,
- 0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x66,
- 0x4,0x13,0x4,0x40,0x4,0x3e,0x4,0x3c,0x4,0x3a,0x4,0x3e,0x4,0x41,0x4,0x42,
- 0x4,0x4c,0x0,0x20,0x4,0x41,0x4,0x38,0x4,0x33,0x4,0x3d,0x4,0x30,0x4,0x3b,
- 0x4,0x3e,0x4,0x32,0x0,0x2c,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x3c,0x4,0x35,
- 0x4,0x3d,0x4,0x4f,0x4,0x4e,0x4,0x49,0x4,0x38,0x4,0x45,0x0,0x20,0x4,0x33,
- 0x4,0x3e,0x4,0x3b,0x4,0x3e,0x4,0x41,0x0,0x2c,0x0,0x20,0x4,0x3f,0x4,0x3e,
- 0x0,0x20,0x4,0x43,0x4,0x3c,0x4,0x3e,0x4,0x3b,0x4,0x47,0x4,0x30,0x4,0x3d,
- 0x4,0x38,0x4,0x4e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x38,
- 0x53,0x65,0x74,0x73,0x20,0x74,0x68,0x65,0x20,0x76,0x6f,0x6c,0x75,0x6d,0x65,0x20,
- 0x6f,0x66,0x20,0x74,0x68,0x65,0x20,0x62,0x6c,0x69,0x70,0x73,0x2c,0x20,0x74,0x68,
- 0x65,0x20,0x74,0x61,0x6c,0x6b,0x69,0x6e,0x67,0x20,0x73,0x6f,0x75,0x6e,0x64,0x20,
- 0x65,0x66,0x66,0x65,0x63,0x74,0x73,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,
- 0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,
- 0x0,0x12,0x4,0x1d,0x4,0x30,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x39,
- 0x4,0x3a,0x4,0x38,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x65,
- 0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,
- 0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x1a,
- 0x4,0x21,0x4,0x42,0x4,0x35,0x4,0x3d,0x4,0x3e,0x4,0x33,0x4,0x40,0x4,0x30,
- 0x4,0x44,0x4,0x38,0x4,0x41,0x4,0x42,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0xd,0x53,0x74,0x65,0x6e,0x6f,0x67,0x72,0x61,0x70,0x68,0x65,0x72,
- 0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,
- 0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x10,0x4,0x21,0x4,0x42,0x4,
- 0x38,0x4,0x3a,0x4,0x35,0x4,0x40,0x4,0x4b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x9,0x53,0x74,0x69,0x63,0x6b,0x65,0x72,0x73,0x3a,0x7,0x0,
- 0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,
- 0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x24,0x4,0x17,0x4,0x30,0x4,0x3a,0x4,0x40,
- 0x4,0x35,0x4,0x3f,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x4d,0x4,0x44,
- 0x4,0x44,0x4,0x35,0x4,0x3a,0x4,0x42,0x4,0x4b,0x0,0x3a,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0xf,0x53,0x74,0x69,0x63,0x6b,0x79,0x20,0x45,0x66,0x66,
- 0x65,0x63,0x74,0x73,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,
- 0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x32,0x4,
- 0x17,0x4,0x30,0x4,0x3a,0x4,0x40,0x4,0x35,0x4,0x3f,0x4,0x38,0x4,0x42,0x4,
- 0x4c,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x35,0x4,0x34,0x0,0x2e,0x0,0x20,0x4,
- 0x30,0x4,0x3d,0x4,0x38,0x4,0x3c,0x4,0x30,0x4,0x46,0x4,0x38,0x4,0x38,0x0,
- 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x53,0x74,0x69,0x63,0x6b,
- 0x79,0x20,0x50,0x72,0x65,0x61,0x6e,0x69,0x6d,0x73,0x3a,0x7,0x0,0x0,0x0,0xf,
- 0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,
- 0x3,0x0,0x0,0x0,0x20,0x4,0x17,0x4,0x30,0x4,0x3a,0x4,0x40,0x4,0x35,0x4,
- 0x3f,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x37,0x4,0x32,0x4,0x43,0x4,
- 0x3a,0x4,0x38,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,
- 0x74,0x69,0x63,0x6b,0x79,0x20,0x53,0x6f,0x75,0x6e,0x64,0x73,0x3a,0x7,0x0,0x0,
- 0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0x0,0x0,0x0,0x42,0x4,0x1e,0x4,0x41,0x4,0x42,0x4,0x30,0x4,
- 0x3d,0x4,0x30,0x4,0x32,0x4,0x3b,0x4,0x38,0x4,0x32,0x4,0x30,0x4,0x42,0x4,
- 0x4c,0x0,0x20,0x4,0x3c,0x4,0x43,0x4,0x37,0x4,0x4b,0x4,0x3a,0x4,0x43,0x0,
- 0x20,0x4,0x3a,0x4,0x30,0x4,0x42,0x4,0x35,0x4,0x33,0x4,0x3e,0x4,0x40,0x4,
- 0x38,0x4,0x4f,0x4,0x3c,0x4,0x38,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x17,0x53,0x74,0x6f,0x70,0x20,0x4d,0x75,0x73,0x69,0x63,0x20,0x77,0x2f,
- 0x20,0x43,0x61,0x74,0x65,0x67,0x6f,0x72,0x79,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,
- 0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,
- 0x0,0x0,0x1,0x22,0x4,0x1e,0x4,0x41,0x4,0x42,0x4,0x30,0x4,0x3d,0x4,0x30,
- 0x4,0x32,0x4,0x3b,0x4,0x38,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,
- 0x4,0x3c,0x4,0x43,0x4,0x37,0x4,0x4b,0x4,0x3a,0x4,0x43,0x0,0x20,0x4,0x3f,
- 0x4,0x3e,0x0,0x20,0x4,0x34,0x4,0x32,0x4,0x3e,0x4,0x39,0x4,0x3d,0x4,0x3e,
- 0x4,0x3c,0x4,0x43,0x0,0x20,0x4,0x3a,0x4,0x3b,0x4,0x38,0x4,0x3a,0x4,0x43,
- 0x0,0x20,0x4,0x3d,0x4,0x30,0x0,0x20,0x4,0x3d,0x4,0x30,0x4,0x37,0x4,0x32,
- 0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x38,0x0,0x20,0x4,0x3a,0x4,0x30,0x4,0x42,
- 0x4,0x35,0x4,0x33,0x4,0x3e,0x4,0x40,0x4,0x38,0x4,0x38,0x0,0x2e,0x0,0xa,
- 0x4,0x15,0x4,0x41,0x4,0x3b,0x4,0x38,0x0,0x20,0x4,0x4d,0x4,0x42,0x4,0x30,
- 0x0,0x20,0x4,0x3e,0x4,0x3f,0x4,0x46,0x4,0x38,0x4,0x4f,0x0,0x20,0x4,0x3e,
- 0x4,0x42,0x4,0x3a,0x4,0x3b,0x4,0x4e,0x4,0x47,0x4,0x35,0x4,0x3d,0x4,0x30,
- 0x0,0x2c,0x0,0x20,0x4,0x32,0x4,0x3e,0x4,0x41,0x4,0x3f,0x4,0x3e,0x4,0x3b,
- 0x4,0x4c,0x4,0x37,0x4,0x43,0x4,0x39,0x4,0x42,0x4,0x35,0x4,0x41,0x4,0x4c,
- 0x0,0x20,0x4,0x3a,0x4,0x3e,0x4,0x3d,0x4,0x42,0x4,0x35,0x4,0x3a,0x4,0x41,
- 0x4,0x42,0x4,0x3d,0x4,0x4b,0x4,0x3c,0x0,0x20,0x4,0x3c,0x4,0x35,0x4,0x3d,
- 0x4,0x4e,0x0,0x2c,0x0,0x20,0x4,0x47,0x4,0x42,0x4,0x3e,0x4,0x31,0x4,0x4b,
- 0x0,0x20,0x4,0x3e,0x4,0x41,0x4,0x42,0x4,0x30,0x4,0x3d,0x4,0x3e,0x4,0x32,
- 0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x3c,0x4,0x43,0x4,0x37,0x4,0x4b,
- 0x4,0x3a,0x4,0x43,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x70,
- 0x53,0x74,0x6f,0x70,0x20,0x6d,0x75,0x73,0x69,0x63,0x20,0x77,0x68,0x65,0x6e,0x20,
- 0x64,0x6f,0x75,0x62,0x6c,0x65,0x2d,0x63,0x6c,0x69,0x63,0x6b,0x69,0x6e,0x67,0x20,
- 0x61,0x20,0x63,0x61,0x74,0x65,0x67,0x6f,0x72,0x79,0x2e,0x20,0x49,0x66,0x20,0x74,
- 0x68,0x69,0x73,0x20,0x69,0x73,0x20,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x2c,
- 0x20,0x75,0x73,0x65,0x20,0x74,0x68,0x65,0x20,0x72,0x69,0x67,0x68,0x74,0x2d,0x63,
- 0x6c,0x69,0x63,0x6b,0x20,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x20,0x6d,0x65,0x6e,
- 0x75,0x20,0x74,0x6f,0x20,0x73,0x74,0x6f,0x70,0x20,0x6d,0x75,0x73,0x69,0x63,0x2e,
- 0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,
- 0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x10,0x4,0x1f,0x4,0x3e,0x4,0x34,
- 0x4,0x42,0x4,0x35,0x4,0x3c,0x4,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x9,0x53,0x75,0x62,0x74,0x68,0x65,0x6d,0x65,0x3a,0x7,0x0,0x0,
- 0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x17,0x4,0x30,0x4,0x34,0x4,0x35,0x4,
- 0x40,0x4,0x36,0x4,0x3a,0x4,0x30,0x0,0x20,0x4,0x42,0x4,0x35,0x4,0x3a,0x4,
- 0x41,0x4,0x42,0x4,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0xf,0x54,0x65,0x78,0x74,0x20,0x53,0x74,0x61,0x79,0x20,0x54,0x69,0x6d,0x65,0x3a,
- 0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,
- 0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x21,0x4,0x3a,0x4,0x3e,
- 0x4,0x40,0x4,0x3e,0x4,0x41,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x32,0x4,0x4b,
- 0x4,0x32,0x4,0x3e,0x4,0x34,0x4,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0xb,0x54,0x65,0x78,0x74,0x20,0x63,0x72,0x61,0x77,0x6c,0x3a,0x7,
- 0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,
- 0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x1,0x76,0x4,0x1c,0x4,0x30,0x4,0x3a,0x4,
- 0x41,0x4,0x38,0x4,0x3c,0x4,0x30,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x3e,0x4,
- 0x35,0x0,0x20,0x4,0x3a,0x4,0x3e,0x4,0x3b,0x4,0x38,0x4,0x47,0x4,0x35,0x4,
- 0x41,0x4,0x42,0x4,0x32,0x4,0x3e,0x0,0x20,0x4,0x41,0x4,0x42,0x4,0x40,0x4,
- 0x3e,0x4,0x3a,0x0,0x20,0x4,0x41,0x4,0x3e,0x4,0x3e,0x4,0x31,0x4,0x49,0x4,
- 0x35,0x4,0x3d,0x4,0x38,0x4,0x39,0x0,0x2c,0x0,0x20,0x4,0x41,0x4,0x3e,0x4,
- 0x45,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x4f,0x4,0x35,0x4,0x3c,0x4,0x4b,0x4,
- 0x45,0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x38,0x4,0x33,0x4,0x40,0x4,0x3e,0x4,
- 0x32,0x4,0x3e,0x4,0x3c,0x0,0x20,0x4,0x47,0x4,0x30,0x4,0x42,0x4,0x35,0x0,
- 0x2e,0x0,0x20,0x0,0xa,0x4,0x1f,0x4,0x40,0x4,0x38,0x0,0x20,0x4,0x3f,0x4,
- 0x40,0x4,0x35,0x4,0x32,0x4,0x4b,0x4,0x48,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,
- 0x38,0x0,0x20,0x4,0x3b,0x4,0x38,0x4,0x3c,0x4,0x38,0x4,0x42,0x4,0x30,0x0,
- 0x20,0x4,0x41,0x4,0x42,0x4,0x30,0x4,0x40,0x4,0x4b,0x4,0x35,0x0,0x20,0x4,
- 0x41,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x3a,0x4,0x38,0x0,0x20,0x4,0x31,0x4,
- 0x43,0x4,0x34,0x4,0x43,0x4,0x42,0x0,0x20,0x4,0x43,0x4,0x34,0x4,0x30,0x4,
- 0x3b,0x4,0x4f,0x4,0x42,0x4,0x4c,0x4,0x41,0x4,0x4f,0x0,0x2e,0x0,0xa,0x4,
- 0x1f,0x4,0x3e,0x4,0x41,0x4,0x42,0x4,0x30,0x4,0x32,0x4,0x4c,0x4,0x42,0x4,
- 0x35,0x0,0x20,0x0,0x30,0x0,0x20,0x4,0x38,0x4,0x3b,0x4,0x38,0x0,0x20,0x4,
- 0x3e,0x4,0x42,0x4,0x40,0x4,0x38,0x4,0x46,0x4,0x30,0x4,0x42,0x4,0x35,0x4,
- 0x3b,0x4,0x4c,0x4,0x3d,0x4,0x3e,0x4,0x35,0x0,0x20,0x4,0x37,0x4,0x3d,0x4,
- 0x30,0x4,0x47,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x35,0x0,0x2c,0x0,0x20,0x4,
- 0x47,0x4,0x42,0x4,0x3e,0x4,0x31,0x4,0x4b,0x0,0x20,0x4,0x41,0x4,0x3d,0x4,
- 0x4f,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x3e,0x4,0x33,0x4,0x40,0x4,0x30,0x4,
- 0x3d,0x4,0x38,0x4,0x47,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x35,0x0,0x2e,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x85,0x54,0x68,0x65,0x20,0x61,0x6d,0x6f,
- 0x75,0x6e,0x74,0x20,0x6f,0x66,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x6c,
- 0x69,0x6e,0x65,0x73,0x20,0x74,0x68,0x65,0x20,0x49,0x43,0x20,0x63,0x68,0x61,0x74,
- 0x6c,0x6f,0x67,0x20,0x77,0x69,0x6c,0x6c,0x20,0x6b,0x65,0x65,0x70,0x20,0x62,0x65,
- 0x66,0x6f,0x72,0x65,0x20,0x64,0x65,0x6c,0x65,0x74,0x69,0x6e,0x67,0x20,0x6f,0x6c,
- 0x64,0x65,0x72,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x6c,0x69,0x6e,0x65,
- 0x73,0x2e,0x20,0x41,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x6f,0x66,0x20,0x30,0x20,
- 0x6f,0x72,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x63,0x6f,0x75,0x6e,0x74,0x73,0x20,
- 0x61,0x73,0x20,0x27,0x69,0x6e,0x66,0x69,0x6e,0x69,0x74,0x65,0x27,0x2e,0x7,0x0,
- 0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,
- 0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xc4,0x4,0x28,0x4,0x38,0x4,0x40,0x4,0x38,
- 0x4,0x3d,0x4,0x30,0x0,0x20,0x4,0x38,0x4,0x3d,0x4,0x42,0x4,0x35,0x4,0x40,
- 0x4,0x32,0x4,0x30,0x4,0x3b,0x4,0x30,0x0,0x20,0x0,0x28,0x4,0x32,0x0,0x20,
- 0x4,0x3f,0x4,0x38,0x4,0x3a,0x4,0x41,0x4,0x35,0x4,0x3b,0x4,0x4f,0x4,0x45,
- 0x0,0x29,0x0,0x20,0x4,0x3c,0x4,0x35,0x4,0x36,0x4,0x34,0x4,0x43,0x0,0x20,
- 0x4,0x41,0x4,0x3e,0x4,0x3e,0x4,0x31,0x4,0x49,0x4,0x35,0x4,0x3d,0x4,0x38,
- 0x4,0x4f,0x4,0x3c,0x4,0x38,0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x38,0x4,0x41,
- 0x4,0x42,0x4,0x3e,0x4,0x40,0x4,0x38,0x4,0x38,0x0,0x20,0x4,0x38,0x4,0x33,
- 0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x3e,0x4,0x33,0x4,0x3e,0x0,0x20,0x4,0x47,
- 0x4,0x30,0x4,0x42,0x4,0x30,0x0,0x2e,0x0,0xa,0x4,0x17,0x4,0x3d,0x4,0x30,
- 0x4,0x47,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x3e,
- 0x0,0x20,0x4,0x43,0x4,0x3c,0x4,0x3e,0x4,0x3b,0x4,0x47,0x4,0x30,0x4,0x3d,
- 0x4,0x38,0x4,0x4e,0x0,0x3a,0x0,0x20,0x0,0x30,0x0,0x2e,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x44,0x54,0x68,0x65,0x20,0x64,0x69,0x73,0x74,0x61,0x6e,
- 0x63,0x65,0x20,0x69,0x6e,0x20,0x70,0x69,0x78,0x65,0x6c,0x73,0x20,0x62,0x65,0x74,
- 0x77,0x65,0x65,0x6e,0x20,0x65,0x61,0x63,0x68,0x20,0x65,0x6e,0x74,0x72,0x79,0x20,
- 0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x49,0x43,0x20,0x6c,0x6f,0x67,0x2e,0x20,0x44,
- 0x65,0x66,0x61,0x75,0x6c,0x74,0x3a,0x20,0x30,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,
- 0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,
- 0x0,0x0,0x0,0xa,0x4,0x22,0x4,0x35,0x4,0x3c,0x4,0x30,0x0,0x3a,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x54,0x68,0x65,0x6d,0x65,0x3a,0x7,0x0,
- 0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,
- 0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x58,0x4,0x21,0x4,0x35,0x4,0x40,0x4,0x32,
- 0x4,0x35,0x4,0x40,0x0,0x20,0x4,0x3d,0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x3e,
- 0x4,0x34,0x4,0x34,0x4,0x35,0x4,0x40,0x4,0x36,0x4,0x38,0x4,0x32,0x4,0x30,
- 0x4,0x35,0x4,0x42,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x4a,0x4,0x4f,0x4,0x32,
- 0x4,0x3b,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,0x20,0x4,0x37,0x4,0x30,
- 0x4,0x41,0x4,0x35,0x4,0x34,0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x39,0x0,0x2e,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x29,0x54,0x68,0x69,0x73,0x20,0x73,
- 0x65,0x72,0x76,0x65,0x72,0x20,0x64,0x6f,0x65,0x73,0x20,0x6e,0x6f,0x74,0x20,0x73,
- 0x75,0x70,0x70,0x6f,0x72,0x74,0x20,0x63,0x61,0x73,0x65,0x20,0x61,0x6c,0x65,0x72,
- 0x74,0x73,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,
- 0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x52,0x4,0x21,0x4,
- 0x35,0x4,0x40,0x4,0x32,0x4,0x35,0x4,0x40,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,
- 0x34,0x4,0x34,0x4,0x35,0x4,0x40,0x4,0x36,0x4,0x38,0x4,0x32,0x4,0x30,0x4,
- 0x35,0x4,0x42,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x4a,0x4,0x4f,0x4,0x32,0x4,
- 0x3b,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,0x20,0x4,0x37,0x4,0x30,0x4,
- 0x41,0x4,0x35,0x4,0x34,0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x39,0x0,0x2e,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x54,0x68,0x69,0x73,0x20,0x73,0x65,
- 0x72,0x76,0x65,0x72,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x73,0x20,0x63,0x61,
- 0x73,0x65,0x20,0x61,0x6c,0x65,0x72,0x74,0x73,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,
- 0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,
- 0x0,0x0,0x0,0x64,0x4,0x1e,0x4,0x42,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,
- 0x4,0x36,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x37,
- 0x4,0x30,0x4,0x39,0x4,0x3d,0x4,0x4b,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x34,
- 0x4,0x3b,0x4,0x3e,0x4,0x36,0x4,0x35,0x4,0x3a,0x0,0x2c,0x0,0x20,0x4,0x37,
- 0x4,0x30,0x4,0x34,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4b,0x4,0x35,0x0,0x20,
- 0x4,0x3f,0x4,0x35,0x4,0x40,0x4,0x41,0x4,0x3e,0x4,0x3d,0x4,0x30,0x4,0x36,
- 0x4,0x30,0x4,0x3c,0x4,0x38,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x4d,0x54,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x20,0x6f,0x6e,0x20,0x74,
- 0x6f,0x20,0x61,0x6c,0x6c,0x6f,0x77,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,
- 0x72,0x73,0x20,0x74,0x6f,0x20,0x64,0x65,0x66,0x69,0x6e,0x65,0x20,0x74,0x68,0x65,
- 0x69,0x72,0x20,0x6f,0x77,0x6e,0x20,0x63,0x75,0x73,0x74,0x6f,0x6d,0x20,0x63,0x68,
- 0x61,0x74,0x20,0x62,0x6f,0x78,0x20,0x64,0x65,0x73,0x69,0x67,0x6e,0x73,0x2e,0x7,
- 0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,
- 0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x1,0x28,0x4,0x20,0x4,0x30,0x4,0x37,0x4,
- 0x40,0x4,0x35,0x4,0x48,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x3f,0x4,
- 0x35,0x4,0x40,0x4,0x41,0x4,0x3e,0x4,0x3d,0x4,0x30,0x4,0x36,0x4,0x30,0x4,
- 0x3c,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x34,0x4,0x30,0x4,0x32,0x4,0x30,0x4,
- 0x42,0x4,0x4c,0x0,0x20,0x4,0x41,0x4,0x3e,0x4,0x31,0x4,0x41,0x4,0x42,0x4,
- 0x32,0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x4b,0x4,0x35,0x0,0x20,0x4,0x41,0x4,
- 0x42,0x4,0x38,0x4,0x3a,0x4,0x35,0x4,0x40,0x4,0x4b,0x0,0xa,0x0,0x28,0x4,
- 0x43,0x4,0x3d,0x4,0x38,0x4,0x3a,0x4,0x30,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,
- 0x4b,0x4,0x35,0x0,0x20,0x4,0x38,0x4,0x37,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,
- 0x30,0x4,0x36,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,0x2c,0x0,0x20,0x4,
- 0x3e,0x4,0x42,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x36,0x4,0x30,0x4,
- 0x4e,0x4,0x49,0x4,0x38,0x4,0x35,0x4,0x41,0x4,0x4f,0x0,0x20,0x4,0x3f,0x4,
- 0x3e,0x4,0x32,0x4,0x35,0x4,0x40,0x4,0x45,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,
- 0x34,0x4,0x3b,0x4,0x3e,0x4,0x36,0x4,0x3a,0x4,0x38,0x0,0x3b,0x0,0xa,0x4,
- 0x3a,0x4,0x30,0x4,0x3a,0x0,0x20,0x4,0x30,0x4,0x32,0x4,0x30,0x4,0x42,0x4,
- 0x30,0x4,0x40,0x4,0x3a,0x4,0x38,0x0,0x20,0x4,0x38,0x4,0x3b,0x4,0x38,0x0,
- 0x20,0x4,0x3f,0x4,0x3e,0x4,0x3b,0x4,0x4c,0x4,0x37,0x4,0x3e,0x4,0x32,0x4,
- 0x30,0x4,0x42,0x4,0x35,0x4,0x3b,0x4,0x4c,0x4,0x41,0x4,0x3a,0x4,0x38,0x4,
- 0x35,0x0,0x20,0x4,0x38,0x4,0x3c,0x4,0x35,0x4,0x3d,0x4,0x30,0x0,0x29,0x0,
- 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x88,0x54,0x75,0x72,0x6e,0x20,
- 0x74,0x68,0x69,0x73,0x20,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x61,0x6c,0x6c,0x6f,0x77,
- 0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x73,0x20,0x74,0x6f,0x20,0x64,
- 0x65,0x66,0x69,0x6e,0x65,0x20,0x74,0x68,0x65,0x69,0x72,0x20,0x6f,0x77,0x6e,0x20,
- 0x73,0x74,0x69,0x63,0x6b,0x65,0x72,0x73,0x20,0x28,0x75,0x6e,0x69,0x71,0x75,0x65,
- 0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x74,0x68,0x61,0x74,0x20,0x73,0x68,0x6f,
- 0x77,0x20,0x75,0x70,0x20,0x6f,0x76,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x63,0x68,
- 0x61,0x74,0x62,0x6f,0x78,0x20,0x2d,0x20,0x6c,0x69,0x6b,0x65,0x20,0x61,0x76,0x61,
- 0x74,0x61,0x72,0x73,0x20,0x6f,0x72,0x20,0x73,0x68,0x6f,0x77,0x6e,0x61,0x6d,0x65,
- 0x73,0x29,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,
- 0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x80,0x4,0x1d,0x4,
- 0x35,0x0,0x20,0x4,0x41,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x41,0x4,0x4b,0x4,
- 0x32,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x3d,0x4,0x30,0x4,0x41,0x4,
- 0x42,0x4,0x40,0x4,0x3e,0x4,0x39,0x4,0x3a,0x4,0x38,0x0,0x20,0x4,0x3f,0x4,
- 0x40,0x4,0x35,0x4,0x34,0x0,0x2e,0x0,0x20,0x4,0x30,0x4,0x3d,0x4,0x38,0x4,
- 0x3c,0x4,0x30,0x4,0x46,0x4,0x38,0x4,0x38,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,
- 0x41,0x4,0x3b,0x4,0x35,0x0,0x20,0x4,0x35,0x4,0x51,0x0,0x20,0x4,0x32,0x4,
- 0x3e,0x4,0x41,0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,0x38,0x4,0x37,0x4,0x32,0x4,
- 0x35,0x4,0x34,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,0x2e,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x54,0x54,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,
- 0x20,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x20,0x70,
- 0x72,0x65,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x20,0x63,0x68,0x65,0x63,
- 0x6b,0x62,0x6f,0x78,0x20,0x66,0x72,0x6f,0x6d,0x20,0x63,0x6c,0x65,0x61,0x72,0x69,
- 0x6e,0x67,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x70,0x6c,0x61,0x79,0x69,0x6e,0x67,
- 0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x6f,0x74,0x65,0x2e,0x7,0x0,0x0,0x0,0xf,
- 0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,
- 0x3,0x0,0x0,0x0,0x88,0x4,0x1d,0x4,0x35,0x0,0x20,0x4,0x41,0x4,0x31,0x4,
- 0x40,0x4,0x30,0x4,0x41,0x4,0x4b,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,
- 0x20,0x4,0x32,0x4,0x4b,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,
- 0x4b,0x4,0x35,0x0,0x20,0x4,0x3d,0x4,0x30,0x4,0x41,0x4,0x42,0x4,0x40,0x4,
- 0x3e,0x4,0x39,0x4,0x3a,0x4,0x38,0x0,0x20,0x4,0x4d,0x4,0x44,0x4,0x44,0x4,
- 0x35,0x4,0x3a,0x4,0x42,0x4,0x30,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x41,0x4,
- 0x3b,0x4,0x35,0x0,0x20,0x4,0x35,0x4,0x33,0x4,0x3e,0x0,0x20,0x4,0x32,0x4,
- 0x3e,0x4,0x41,0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,0x38,0x4,0x37,0x4,0x32,0x4,
- 0x35,0x4,0x34,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,0x2e,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x57,0x54,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,
- 0x20,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x20,0x74,
- 0x68,0x65,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x73,0x20,0x64,0x72,0x6f,0x70,0x64,
- 0x6f,0x77,0x6e,0x20,0x66,0x72,0x6f,0x6d,0x20,0x63,0x6c,0x65,0x61,0x72,0x69,0x6e,
- 0x67,0x20,0x74,0x68,0x65,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x20,0x61,0x66,0x74,
- 0x65,0x72,0x20,0x70,0x6c,0x61,0x79,0x69,0x6e,0x67,0x20,0x69,0x74,0x2e,0x7,0x0,
- 0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,
- 0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x84,0x4,0x1d,0x4,0x35,0x0,0x20,0x4,0x41,
- 0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x41,0x4,0x4b,0x4,0x32,0x4,0x30,0x4,0x42,
- 0x4,0x4c,0x0,0x20,0x4,0x32,0x4,0x4b,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x3d,
- 0x4,0x3d,0x4,0x4b,0x4,0x35,0x0,0x20,0x4,0x3d,0x4,0x30,0x4,0x41,0x4,0x42,
- 0x4,0x40,0x4,0x3e,0x4,0x39,0x4,0x3a,0x4,0x38,0x0,0x20,0x4,0x37,0x4,0x32,
- 0x4,0x43,0x4,0x3a,0x4,0x30,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x41,0x4,0x3b,
- 0x4,0x35,0x0,0x20,0x4,0x35,0x4,0x33,0x4,0x3e,0x0,0x20,0x4,0x32,0x4,0x3e,
- 0x4,0x41,0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,0x38,0x4,0x37,0x4,0x32,0x4,0x35,
- 0x4,0x34,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,0x2e,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x54,0x54,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x20,
- 0x6f,0x6e,0x20,0x74,0x6f,0x20,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x20,0x74,0x68,
- 0x65,0x20,0x73,0x6f,0x75,0x6e,0x64,0x20,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,
- 0x20,0x66,0x72,0x6f,0x6d,0x20,0x63,0x6c,0x65,0x61,0x72,0x69,0x6e,0x67,0x20,0x74,
- 0x68,0x65,0x20,0x73,0x6f,0x75,0x6e,0x64,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x70,
- 0x6c,0x61,0x79,0x69,0x6e,0x67,0x20,0x69,0x74,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,
- 0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,
- 0x0,0x0,0x0,0x52,0x4,0x1e,0x4,0x42,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,
- 0x4,0x36,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x46,0x4,0x32,0x4,0x35,
- 0x4,0x42,0x4,0x30,0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x38,0x4,0x41,0x4,0x42,
- 0x4,0x3e,0x4,0x40,0x4,0x38,0x4,0x38,0x0,0x20,0x4,0x38,0x4,0x33,0x4,0x40,
- 0x4,0x3e,0x4,0x32,0x4,0x3e,0x4,0x33,0x4,0x3e,0x0,0x20,0x4,0x47,0x4,0x30,
- 0x4,0x42,0x4,0x30,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2f,
- 0x55,0x73,0x65,0x20,0x74,0x68,0x65,0x20,0x6d,0x61,0x72,0x6b,0x75,0x70,0x20,0x63,
- 0x6f,0x6c,0x6f,0x72,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x72,
- 0x76,0x65,0x72,0x20,0x49,0x43,0x20,0x63,0x68,0x61,0x74,0x6c,0x6f,0x67,0x2e,0x7,
- 0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,
- 0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x1,0xc,0x4,0x1f,0x4,0x40,0x4,0x3e,0x4,
- 0x34,0x4,0x3e,0x4,0x3b,0x4,0x36,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,
- 0x32,0x4,0x3e,0x4,0x41,0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,0x38,0x4,0x37,0x4,
- 0x32,0x4,0x35,0x4,0x34,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x35,0x0,0x20,0x4,
- 0x30,0x4,0x3d,0x4,0x38,0x4,0x3c,0x4,0x30,0x4,0x46,0x4,0x38,0x4,0x38,0x0,
- 0x20,0x4,0x41,0x0,0x20,0x4,0x42,0x4,0x3e,0x4,0x33,0x4,0x3e,0x0,0x20,0x4,
- 0x3c,0x4,0x35,0x4,0x41,0x4,0x42,0x4,0x30,0x0,0x2c,0x0,0x20,0x4,0x33,0x4,
- 0x34,0x4,0x35,0x0,0x20,0x4,0x3e,0x4,0x3d,0x4,0x30,0x0,0x20,0x4,0x3e,0x4,
- 0x41,0x4,0x42,0x4,0x30,0x4,0x3d,0x4,0x3e,0x4,0x32,0x4,0x38,0x4,0x3b,0x4,
- 0x30,0x4,0x41,0x4,0x4c,0x0,0x2e,0x0,0xa,0x4,0x1e,0x4,0x42,0x4,0x3a,0x4,
- 0x3b,0x4,0x4e,0x4,0x47,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x35,0x0,0x20,0x4,
- 0x4d,0x4,0x42,0x4,0x3e,0x4,0x39,0x0,0x20,0x4,0x3e,0x4,0x3f,0x4,0x46,0x4,
- 0x38,0x4,0x38,0x0,0x20,0x4,0x3c,0x4,0x3e,0x4,0x36,0x4,0x35,0x4,0x42,0x0,
- 0x20,0x4,0x3f,0x4,0x3e,0x4,0x3c,0x4,0x3e,0x4,0x47,0x4,0x4c,0x0,0x20,0x4,
- 0x43,0x4,0x41,0x4,0x3a,0x4,0x3e,0x4,0x40,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,
- 0x20,0x4,0x40,0x4,0x30,0x4,0x31,0x4,0x3e,0x4,0x42,0x4,0x43,0x0,0x20,0x4,
- 0x3f,0x4,0x40,0x4,0x38,0x4,0x3b,0x4,0x3e,0x4,0x36,0x4,0x35,0x4,0x3d,0x4,
- 0x38,0x4,0x4f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x63,0x57,
- 0x68,0x65,0x74,0x68,0x65,0x72,0x20,0x6f,0x72,0x20,0x6e,0x6f,0x74,0x20,0x74,0x6f,
- 0x20,0x72,0x65,0x73,0x75,0x6d,0x65,0x20,0x70,0x6c,0x61,0x79,0x69,0x6e,0x67,0x20,
- 0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,
- 0x77,0x68,0x65,0x72,0x65,0x20,0x74,0x68,0x65,0x79,0x20,0x6c,0x65,0x66,0x74,0x20,
- 0x6f,0x66,0x66,0x2e,0x20,0x54,0x75,0x72,0x6e,0x69,0x6e,0x67,0x20,0x6f,0x66,0x66,
- 0x20,0x6d,0x69,0x67,0x68,0x74,0x20,0x72,0x65,0x64,0x75,0x63,0x65,0x20,0x6c,0x61,
- 0x67,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,
- 0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x48,0x4,0x1f,0x4,0x41,
- 0x4,0x35,0x4,0x32,0x4,0x34,0x4,0x3e,0x4,0x3d,0x4,0x38,0x4,0x3c,0x0,0x20,
- 0x4,0x3f,0x4,0x3e,0x0,0x20,0x4,0x43,0x4,0x3c,0x4,0x3e,0x4,0x3b,0x4,0x47,
- 0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x4e,0x0,0x20,0x4,0x34,0x4,0x3b,0x4,0x4f,
- 0x0,0x20,0x4,0x1e,0x4,0x1e,0x4,0x21,0x0,0x2d,0x4,0x47,0x4,0x30,0x4,0x42,
- 0x4,0x30,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4d,0x59,0x6f,
- 0x75,0x72,0x20,0x4f,0x4f,0x43,0x20,0x6e,0x61,0x6d,0x65,0x20,0x77,0x69,0x6c,0x6c,
- 0x20,0x62,0x65,0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x61,0x6c,0x6c,
- 0x79,0x20,0x73,0x65,0x74,0x20,0x74,0x6f,0x20,0x74,0x68,0x69,0x73,0x20,0x76,0x61,
- 0x6c,0x75,0x65,0x20,0x77,0x68,0x65,0x6e,0x20,0x79,0x6f,0x75,0x20,0x6a,0x6f,0x69,
- 0x6e,0x20,0x61,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0xf,
- 0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,
- 0x3,0x0,0x0,0x0,0x36,0x4,0x23,0x4,0x3b,0x4,0x38,0x4,0x3a,0x4,0x30,0x0,
- 0x20,0x0,0x22,0x0,0x25,0x0,0x31,0x0,0x22,0x0,0x20,0x4,0x31,0x4,0x4b,0x4,
- 0x3b,0x4,0x30,0x0,0x20,0x4,0x3f,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x3d,0x4,
- 0x35,0x4,0x41,0x4,0x35,0x4,0x3d,0x4,0x30,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x1a,0x22,0x25,0x31,0x22,0x20,0x68,0x61,0x73,0x20,0x62,0x65,
- 0x65,0x6e,0x20,0x74,0x72,0x61,0x6e,0x73,0x66,0x65,0x72,0x72,0x65,0x64,0x2e,0x7,
- 0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,
- 0x0,0x0,0x2e,0x0,0x25,0x0,0x20,0x4,0x41,0x4,0x34,0x4,0x32,0x4,0x38,0x4,
- 0x33,0x4,0x30,0x0,0x20,0x4,0x3f,0x4,0x3e,0x0,0x20,0x4,0x33,0x4,0x3e,0x4,
- 0x40,0x4,0x38,0x4,0x37,0x4,0x3e,0x4,0x3d,0x4,0x42,0x4,0x30,0x4,0x3b,0x4,
- 0x38,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x25,0x20,0x78,0x20,0x6f,
- 0x66,0x66,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,
- 0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x25,0x0,0x20,0x4,0x41,0x4,
- 0x34,0x4,0x32,0x4,0x38,0x4,0x33,0x4,0x30,0x0,0x20,0x4,0x3f,0x4,0x3e,0x0,
- 0x20,0x4,0x32,0x4,0x35,0x4,0x40,0x4,0x42,0x4,0x38,0x4,0x3a,0x4,0x30,0x4,
- 0x3b,0x4,0x38,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x25,0x20,0x79,
- 0x20,0x6f,0x66,0x66,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x6,0x4,0x1b,0x0,0x2f,0x4,
- 0x1c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x41,0x2f,0x4d,0x7,0x0,
- 0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,
- 0x0,0x2e,0x4,0x14,0x4,0x3e,0x4,0x31,0x4,0x30,0x4,0x32,0x4,0x38,0x4,0x42,
- 0x4,0x4c,0x0,0x20,0x4,0x3d,0x4,0x3e,0x4,0x32,0x4,0x43,0x4,0x4e,0x0,0x20,
- 0x4,0x43,0x4,0x3b,0x4,0x38,0x4,0x3a,0x4,0x43,0x0,0x2e,0x0,0x2e,0x0,0x2e,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x41,0x64,0x64,0x20,0x6e,0x65,
- 0x77,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0x5c,0x4,0x14,0x4,0x3e,0x4,0x31,0x4,0x30,0x4,0x32,0x4,0x3b,0x4,0x4f,0x4,
- 0x42,0x4,0x4c,0x0,0x20,0x4,0x42,0x4,0x35,0x4,0x3a,0x4,0x41,0x4,0x42,0x0,
- 0x20,0x4,0x3a,0x0,0x20,0x4,0x41,0x4,0x32,0x4,0x3e,0x4,0x35,0x4,0x3c,0x4,
- 0x43,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x41,0x4,0x3b,0x4,0x35,0x4,0x34,0x4,
- 0x3d,0x4,0x35,0x4,0x3c,0x4,0x43,0x0,0x20,0x4,0x41,0x4,0x3e,0x4,0x3e,0x4,
- 0x31,0x4,0x49,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x4e,0x0,0x2e,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x32,0x41,0x64,0x64,0x20,0x74,0x65,0x78,0x74,0x20,
- 0x74,0x6f,0x20,0x79,0x6f,0x75,0x72,0x20,0x6c,0x61,0x73,0x74,0x20,0x73,0x70,0x6f,
- 0x6b,0x65,0x6e,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x77,0x68,0x65,0x6e,
- 0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,
- 0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x12,0x4,0x14,0x4,
- 0x3e,0x4,0x3f,0x4,0x3e,0x4,0x3b,0x4,0x3d,0x4,0x4f,0x4,0x42,0x4,0x4c,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x41,0x64,0x64,0x69,0x74,0x69,0x76,
- 0x65,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,
- 0x3,0x0,0x0,0x0,0x4a,0x4,0x18,0x4,0x37,0x4,0x3c,0x4,0x35,0x4,0x3d,0x4,
- 0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x3f,0x4,0x30,0x4,0x40,0x4,0x30,0x4,
- 0x3c,0x4,0x35,0x4,0x42,0x4,0x40,0x4,0x4b,0x0,0x20,0x4,0x40,0x4,0x30,0x4,
- 0x31,0x4,0x3e,0x4,0x42,0x4,0x4b,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x38,0x4,
- 0x3b,0x4,0x3e,0x4,0x36,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,0x2e,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x33,0x41,0x6c,0x6c,0x6f,0x77,0x73,0x20,
- 0x79,0x6f,0x75,0x20,0x74,0x6f,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x20,0x76,0x61,
- 0x72,0x69,0x6f,0x75,0x73,0x20,0x61,0x73,0x70,0x65,0x63,0x74,0x73,0x20,0x6f,0x66,
- 0x20,0x74,0x68,0x65,0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,0x2e,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xc2,
- 0x4,0x1e,0x4,0x42,0x4,0x3a,0x4,0x40,0x4,0x4b,0x4,0x42,0x4,0x4c,0x0,0x20,
- 0x4,0x3e,0x4,0x3a,0x4,0x3d,0x4,0x3e,0x0,0x2c,0x0,0x20,0x4,0x3a,0x4,0x3e,
- 0x4,0x42,0x4,0x3e,0x4,0x40,0x4,0x3e,0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x3e,
- 0x4,0x37,0x4,0x32,0x4,0x3e,0x4,0x3b,0x4,0x38,0x4,0x42,0x0,0x20,0x4,0x32,
- 0x4,0x30,0x4,0x3c,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x4a,0x4,0x4f,0x4,0x32,
- 0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x3e,0x0,0x20,0x4,0x34,0x4,0x35,
- 0x4,0x3b,0x4,0x35,0x0,0xa,0x0,0x28,0x4,0x34,0x4,0x3b,0x4,0x4f,0x0,0x20,
- 0x4,0x4d,0x4,0x42,0x4,0x3e,0x4,0x33,0x4,0x3e,0x0,0x20,0x4,0x3d,0x4,0x43,
- 0x4,0x36,0x4,0x3d,0x4,0x3e,0x0,0x20,0x4,0x31,0x4,0x4b,0x4,0x42,0x4,0x4c,
- 0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,0x38,0x4,0x37,0x4,0x32,0x4,0x3e,
- 0x4,0x34,0x4,0x38,0x4,0x42,0x4,0x35,0x4,0x3b,0x4,0x35,0x4,0x3c,0x0,0x20,
- 0x4,0x34,0x4,0x35,0x4,0x3b,0x0,0x20,0x0,0x28,0x4,0x1f,0x4,0x14,0x0,0x29,
- 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x61,0x41,0x6e,0x20,0x69,
- 0x6e,0x74,0x65,0x72,0x66,0x61,0x63,0x65,0x20,0x74,0x6f,0x20,0x68,0x65,0x6c,0x70,
- 0x20,0x79,0x6f,0x75,0x20,0x61,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x20,0x61,0x20,
- 0x63,0x61,0x73,0x65,0x20,0x28,0x79,0x6f,0x75,0x20,0x68,0x61,0x76,0x65,0x20,0x74,
- 0x6f,0x20,0x62,0x65,0x20,0x61,0x20,0x43,0x4d,0x20,0x66,0x69,0x72,0x73,0x74,0x20,
- 0x74,0x6f,0x20,0x62,0x65,0x20,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x61,0x6e,
- 0x6e,0x6f,0x75,0x6e,0x63,0x65,0x20,0x63,0x61,0x73,0x65,0x73,0x29,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0x1a,0x4,0x1d,0x4,0x30,0x4,0x37,0x4,0x30,0x4,0x34,0x0,0x20,0x4,0x32,0x0,
- 0x20,0x4,0x3b,0x4,0x3e,0x4,0x31,0x4,0x31,0x4,0x38,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0xd,0x42,0x61,0x63,0x6b,0x20,0x74,0x6f,0x20,0x4c,0x6f,0x62,
- 0x62,0x79,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,
- 0x1,0x3,0x0,0x0,0x0,0x94,0x4,0x17,0x4,0x30,0x4,0x39,0x4,0x42,0x4,0x38,
- 0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x3a,0x4,0x30,0x4,0x47,0x4,0x35,0x4,0x41,
- 0x4,0x42,0x4,0x32,0x4,0x35,0x0,0x20,0x4,0x37,0x4,0x40,0x4,0x38,0x4,0x42,
- 0x4,0x35,0x4,0x3b,0x4,0x4f,0x0,0x2e,0x0,0x20,0x4,0x12,0x4,0x4b,0x0,0x20,
- 0x4,0x3d,0x4,0x35,0x0,0x20,0x4,0x41,0x4,0x3c,0x4,0x3e,0x4,0x36,0x4,0x35,
- 0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x32,0x4,0x37,0x4,0x30,0x4,0x38,0x4,0x3c,
- 0x4,0x3e,0x4,0x34,0x4,0x35,0x4,0x39,0x4,0x41,0x4,0x42,0x4,0x32,0x4,0x3e,
- 0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x41,0x0,0x20,0x4,0x38,
- 0x4,0x33,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x4b,0x4,0x3c,0x0,0x20,0x4,0x47,
- 0x4,0x30,0x4,0x42,0x4,0x3e,0x4,0x3c,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x4f,0x42,0x65,0x63,0x6f,0x6d,0x65,0x20,0x61,0x20,0x73,0x70,0x65,
- 0x63,0x74,0x61,0x74,0x6f,0x72,0x2e,0x20,0x59,0x6f,0x75,0x20,0x77,0x6f,0x6e,0x27,
- 0x74,0x20,0x62,0x65,0x20,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x74,
- 0x65,0x72,0x61,0x63,0x74,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x69,
- 0x6e,0x2d,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x20,0x73,0x63,0x72,0x65,
- 0x65,0x6e,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0xe,0x4,0x21,0x4,0x38,0x4,0x33,0x4,0x3d,0x4,
- 0x30,0x4,0x3b,0x4,0x4b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x42,
- 0x6c,0x69,0x70,0x73,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x58,0x4,0x1f,0x4,0x35,0x4,0x40,0x4,0x35,
- 0x4,0x39,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x3d,0x4,0x30,0x0,0x20,0x4,0x4d,
- 0x4,0x3a,0x4,0x40,0x4,0x30,0x4,0x3d,0x0,0x20,0x4,0x32,0x4,0x4b,0x4,0x31,
- 0x4,0x3e,0x4,0x40,0x4,0x30,0x0,0x20,0x4,0x38,0x0,0x20,0x4,0x41,0x4,0x3c,
- 0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x3f,0x4,0x35,
- 0x4,0x40,0x4,0x41,0x4,0x3e,0x4,0x3d,0x4,0x30,0x4,0x36,0x4,0x30,0x0,0x2e,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3f,0x42,0x72,0x69,0x6e,0x67,0x20,
- 0x75,0x70,0x20,0x74,0x68,0x65,0x20,0x43,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,
- 0x20,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x53,0x63,0x72,0x65,0x65,0x6e,0x20,0x61,
- 0x6e,0x64,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x20,0x79,0x6f,0x75,0x72,0x20,0x63,
- 0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,
- 0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x40,0x4,0x1e,0x4,
- 0x42,0x4,0x3a,0x4,0x40,0x4,0x4b,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x3e,0x4,
- 0x3a,0x4,0x3d,0x4,0x3e,0x0,0x20,0x4,0x43,0x4,0x3f,0x4,0x40,0x4,0x30,0x4,
- 0x32,0x4,0x3b,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,0x20,0x4,0x43,0x4,
- 0x3b,0x4,0x38,0x4,0x3a,0x4,0x30,0x4,0x3c,0x4,0x38,0x0,0x2e,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x42,0x72,0x69,0x6e,0x67,0x20,0x75,0x70,0x20,
- 0x74,0x68,0x65,0x20,0x45,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x73,0x63,0x72,
- 0x65,0x65,0x6e,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xc,0x4,0x1a,0x4,0x1b,0x4,0x18,0x4,0x15,
- 0x4,0x1d,0x4,0x22,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x4c,
- 0x49,0x45,0x4e,0x54,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x1a,0x4,0x21,0x4,0x12,0x4,0x1e,0x4,0x2e,
- 0x0,0x20,0x4,0x20,0x4,0x15,0x4,0x1f,0x4,0x1b,0x4,0x18,0x4,0x1a,0x4,0x23,
- 0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x55,0x53,0x54,
- 0x4f,0x4d,0x20,0x4f,0x42,0x4a,0x45,0x43,0x54,0x49,0x4f,0x4e,0x21,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0x20,0x4,0x12,0x4,0x4b,0x4,0x37,0x4,0x3e,0x4,0x32,0x0,0x20,0x4,0x3c,0x4,
- 0x3e,0x4,0x34,0x4,0x35,0x4,0x40,0x4,0x30,0x4,0x42,0x4,0x3e,0x4,0x40,0x4,
- 0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x43,0x61,0x6c,0x6c,0x20,
- 0x4d,0x6f,0x64,0x65,0x72,0x61,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,
- 0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x24,0x4,0x1f,0x4,
- 0x3e,0x4,0x37,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x3c,0x4,
- 0x3e,0x4,0x34,0x4,0x35,0x4,0x40,0x4,0x30,0x4,0x42,0x4,0x3e,0x4,0x40,0x4,
- 0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x61,0x6c,0x6c,0x20,
- 0x6d,0x6f,0x64,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0x1e,0x4,0x10,0x4,0x32,0x4,0x42,0x4,0x3e,0x4,
- 0x40,0x0,0x20,0x4,0x34,0x4,0x35,0x4,0x3b,0x4,0x30,0x0,0x3a,0x0,0x20,0x0,
- 0x25,0x0,0x31,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x43,
- 0x61,0x73,0x65,0x20,0x6d,0x61,0x64,0x65,0x20,0x62,0x79,0x20,0x25,0x31,0x2e,0x7,
- 0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,
- 0x0,0x0,0x12,0x4,0x17,0x4,0x30,0x4,0x41,0x4,0x35,0x4,0x34,0x4,0x30,0x4,
- 0x3d,0x4,0x38,0x4,0x4f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x43,
- 0x61,0x73,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,
- 0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x22,0x4,0x21,0x4,0x3c,0x4,0x35,0x4,
- 0x3d,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x3f,0x4,0x35,0x4,0x40,0x4,
- 0x41,0x4,0x3e,0x4,0x3d,0x4,0x30,0x4,0x36,0x4,0x30,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x10,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x63,0x68,0x61,0x72,
- 0x61,0x63,0x74,0x65,0x72,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,
- 0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x86,0x4,0x18,0x4,0x37,0x4,0x3c,0x4,
- 0x35,0x4,0x3d,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x41,0x4,0x34,0x4,
- 0x32,0x4,0x38,0x4,0x33,0x0,0x20,0x4,0x3f,0x4,0x35,0x4,0x40,0x4,0x41,0x4,
- 0x3e,0x4,0x3d,0x4,0x30,0x4,0x36,0x4,0x30,0x0,0x20,0x4,0x3f,0x4,0x3e,0x0,
- 0x20,0x4,0x33,0x4,0x3e,0x4,0x40,0x4,0x38,0x4,0x37,0x4,0x3e,0x4,0x3d,0x4,
- 0x42,0x4,0x30,0x4,0x3b,0x4,0x38,0x0,0x20,0x4,0x3e,0x4,0x42,0x4,0x3d,0x4,
- 0x3e,0x4,0x41,0x4,0x38,0x4,0x42,0x4,0x35,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,
- 0x3e,0x0,0x20,0x4,0x46,0x4,0x35,0x4,0x3d,0x4,0x42,0x4,0x40,0x4,0x30,0x0,
- 0x20,0x4,0x4d,0x4,0x3a,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x30,0x0,0x2e,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x63,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,
- 0x74,0x68,0x65,0x20,0x68,0x6f,0x72,0x69,0x7a,0x6f,0x6e,0x74,0x61,0x6c,0x20,0x70,
- 0x65,0x72,0x63,0x65,0x6e,0x74,0x61,0x67,0x65,0x20,0x6f,0x66,0x66,0x73,0x65,0x74,
- 0x20,0x6f,0x66,0x20,0x79,0x6f,0x75,0x72,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,
- 0x65,0x72,0x27,0x73,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x20,0x66,0x72,
- 0x6f,0x6d,0x20,0x74,0x68,0x65,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x20,0x6f,0x66,
- 0x20,0x74,0x68,0x65,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x2e,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x88,
- 0x4,0x1f,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x3c,0x4,0x35,0x4,0x41,0x4,0x42,
- 0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x32,0x4,0x30,0x4,0x48,0x4,0x35,
- 0x4,0x33,0x4,0x3e,0x0,0x20,0x4,0x3f,0x4,0x35,0x4,0x40,0x4,0x41,0x4,0x3e,
- 0x4,0x3d,0x4,0x30,0x4,0x36,0x4,0x30,0x0,0x20,0x4,0x32,0x4,0x3f,0x4,0x35,
- 0x4,0x40,0x4,0x51,0x4,0x34,0x0,0x20,0x4,0x38,0x4,0x3b,0x4,0x38,0x0,0x20,
- 0x4,0x3d,0x4,0x30,0x4,0x37,0x4,0x30,0x4,0x34,0x0,0x20,0x4,0x3e,0x4,0x42,
- 0x4,0x3d,0x4,0x3e,0x4,0x41,0x4,0x38,0x4,0x42,0x4,0x35,0x4,0x3b,0x4,0x4c,
- 0x4,0x3d,0x4,0x3e,0x0,0x20,0x4,0x3f,0x4,0x30,0x4,0x40,0x4,0x42,0x4,0x3d,
- 0x4,0x51,0x4,0x40,0x4,0x30,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x32,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x74,0x68,0x65,0x20,0x6f,0x72,0x64,
- 0x65,0x72,0x20,0x6f,0x66,0x20,0x61,0x70,0x70,0x65,0x61,0x72,0x61,0x6e,0x63,0x65,
- 0x20,0x66,0x6f,0x72,0x20,0x79,0x6f,0x75,0x72,0x20,0x63,0x68,0x61,0x72,0x61,0x63,
- 0x74,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xe4,0x4,0x18,0x4,0x37,0x4,0x3c,0x4,0x35,
- 0x4,0x3d,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x46,0x4,0x32,0x4,0x35,
- 0x4,0x42,0x0,0x20,0x4,0x42,0x4,0x35,0x4,0x3a,0x4,0x41,0x4,0x42,0x4,0x30,
- 0x0,0x20,0x4,0x41,0x4,0x3e,0x4,0x3e,0x4,0x31,0x4,0x49,0x4,0x35,0x4,0x3d,
- 0x4,0x38,0x4,0x4f,0x0,0x2e,0x0,0xa,0x4,0x12,0x4,0x4b,0x0,0x20,0x4,0x42,
- 0x4,0x30,0x4,0x3a,0x4,0x36,0x4,0x35,0x0,0x20,0x4,0x3c,0x4,0x3e,0x4,0x36,
- 0x4,0x35,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x32,0x4,0x4b,0x4,0x34,0x4,0x35,
- 0x4,0x3b,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x47,0x4,0x30,0x4,0x41,
- 0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x42,0x4,0x35,0x4,0x3a,0x4,0x41,0x4,0x42,
- 0x4,0x30,0x0,0x20,0x4,0x38,0x0,0x20,0x4,0x38,0x4,0x37,0x4,0x3c,0x4,0x35,
- 0x4,0x3d,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x42,0x4,0x3e,0x4,0x3b,
- 0x4,0x4c,0x4,0x3a,0x4,0x3e,0x0,0x20,0x4,0x35,0x4,0x51,0x0,0x20,0x4,0x46,
- 0x4,0x32,0x4,0x35,0x4,0x42,0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x32,0x4,0x4b,
- 0x4,0x3f,0x4,0x30,0x4,0x34,0x4,0x30,0x4,0x4e,0x4,0x49,0x4,0x35,0x4,0x3c,
- 0x0,0x20,0x4,0x3c,0x4,0x35,0x4,0x3d,0x4,0x4e,0x0,0x2e,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x91,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x74,0x68,0x65,
- 0x20,0x74,0x65,0x78,0x74,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x6f,0x66,0x20,0x74,
- 0x68,0x65,0x20,0x73,0x70,0x6f,0x6b,0x65,0x6e,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,
- 0x65,0x2e,0xa,0x59,0x6f,0x75,0x20,0x63,0x61,0x6e,0x20,0x61,0x6c,0x73,0x6f,0x20,
- 0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x61,0x20,0x70,0x61,0x72,0x74,0x20,0x6f,0x66,
- 0x20,0x79,0x6f,0x75,0x72,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x6c,0x79,0x20,
- 0x74,0x79,0x70,0x65,0x64,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x61,0x6e,
- 0x64,0x20,0x75,0x73,0x65,0x20,0x74,0x68,0x65,0x20,0x64,0x72,0x6f,0x70,0x64,0x6f,
- 0x77,0x6e,0x20,0x74,0x6f,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x20,0x69,0x74,0x73,
- 0x20,0x63,0x6f,0x6c,0x6f,0x72,0x21,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x82,0x4,0x18,0x4,0x37,0x4,
- 0x3c,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x41,0x4,
- 0x34,0x4,0x32,0x4,0x38,0x4,0x33,0x0,0x20,0x4,0x3f,0x4,0x35,0x4,0x40,0x4,
- 0x41,0x4,0x3e,0x4,0x3d,0x4,0x30,0x4,0x36,0x4,0x30,0x0,0x20,0x4,0x3f,0x4,
- 0x3e,0x0,0x20,0x4,0x32,0x4,0x35,0x4,0x40,0x4,0x42,0x4,0x38,0x4,0x3a,0x4,
- 0x30,0x4,0x3b,0x4,0x38,0x0,0x20,0x4,0x3e,0x4,0x42,0x4,0x3d,0x4,0x3e,0x4,
- 0x41,0x4,0x38,0x4,0x42,0x4,0x35,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x3e,0x0,
- 0x20,0x4,0x46,0x4,0x35,0x4,0x3d,0x4,0x42,0x4,0x40,0x4,0x30,0x0,0x20,0x4,
- 0x4d,0x4,0x3a,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x30,0x0,0x2e,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x61,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x74,0x68,
- 0x65,0x20,0x76,0x65,0x72,0x74,0x69,0x63,0x61,0x6c,0x20,0x70,0x65,0x72,0x63,0x65,
- 0x6e,0x74,0x61,0x67,0x65,0x20,0x6f,0x66,0x66,0x73,0x65,0x74,0x20,0x6f,0x66,0x20,
- 0x79,0x6f,0x75,0x72,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x27,0x73,
- 0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x20,0x66,0x72,0x6f,0x6d,0x20,0x74,
- 0x68,0x65,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x20,0x6f,0x66,0x20,0x74,0x68,0x65,
- 0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,
- 0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x2,0x3a,0x4,0x12,0x4,0x4b,
- 0x4,0x31,0x4,0x35,0x4,0x40,0x4,0x38,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x4d,
- 0x4,0x44,0x4,0x44,0x4,0x35,0x4,0x3a,0x4,0x42,0x0,0x2c,0x0,0x20,0x4,0x3a,
- 0x4,0x3e,0x4,0x42,0x4,0x3e,0x4,0x40,0x4,0x4b,0x4,0x39,0x0,0x20,0x4,0x3d,
- 0x4,0x43,0x4,0x36,0x4,0x3d,0x4,0x3e,0x0,0x20,0x4,0x32,0x4,0x3e,0x4,0x41,
- 0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,0x38,0x4,0x37,0x4,0x32,0x4,0x35,0x4,0x41,
- 0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x41,0x0,0x20,0x4,0x32,0x4,0x30,0x4,0x48,
- 0x4,0x38,0x4,0x3c,0x0,0x20,0x4,0x41,0x4,0x3b,0x4,0x35,0x4,0x34,0x4,0x43,
- 0x4,0x4e,0x4,0x49,0x4,0x38,0x4,0x3c,0x0,0x20,0x4,0x41,0x4,0x3e,0x4,0x3e,
- 0x4,0x31,0x4,0x49,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x35,0x4,0x3c,0x0,0x2e,
- 0x0,0xa,0x4,0x2d,0x4,0x44,0x4,0x44,0x4,0x35,0x4,0x3a,0x4,0x42,0x4,0x4b,
- 0x0,0x20,0x4,0x3e,0x4,0x3f,0x4,0x40,0x4,0x35,0x4,0x34,0x4,0x35,0x4,0x3b,
- 0x4,0x4f,0x4,0x4e,0x4,0x42,0x4,0x41,0x4,0x4f,0x0,0x20,0x4,0x44,0x4,0x30,
- 0x4,0x39,0x4,0x3b,0x4,0x3e,0x4,0x3c,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,
- 0x0,0x6d,0x0,0x65,0x0,0x2f,0x0,0x65,0x0,0x66,0x0,0x66,0x0,0x65,0x0,0x63,
- 0x0,0x74,0x0,0x73,0x0,0x2f,0x0,0x65,0x0,0x66,0x0,0x66,0x0,0x65,0x0,0x63,
- 0x0,0x74,0x0,0x73,0x0,0x2e,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x2e,0x0,0x20,
- 0x4,0x12,0x4,0x30,0x4,0x48,0x0,0x20,0x4,0x3f,0x4,0x35,0x4,0x40,0x4,0x41,
- 0x4,0x3e,0x4,0x3d,0x4,0x30,0x4,0x36,0x0,0x20,0x4,0x3c,0x4,0x3e,0x4,0x36,
- 0x4,0x35,0x4,0x42,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x34,0x4,0x30,0x4,0x42,
- 0x4,0x4c,0x0,0x20,0x4,0x41,0x4,0x3e,0x4,0x31,0x4,0x41,0x4,0x42,0x4,0x32,
- 0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x4b,0x4,0x35,0x0,0x20,0x4,0x4d,0x4,0x44,
- 0x4,0x44,0x4,0x35,0x4,0x3a,0x4,0x42,0x4,0x4b,0x0,0xa,0x4,0x32,0x0,0x20,
- 0x4,0x3a,0x4,0x30,0x4,0x42,0x4,0x35,0x4,0x33,0x4,0x3e,0x4,0x40,0x4,0x38,
- 0x4,0x38,0x0,0x20,0x0,0x5b,0x0,0x4f,0x0,0x70,0x0,0x74,0x0,0x69,0x0,0x6f,
- 0x0,0x6e,0x0,0x73,0x0,0x5d,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4,0x3b,
- 0x4,0x30,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x2e,0x0,0x69,
- 0x0,0x6e,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x65,0x0,0x66,0x0,0x66,0x0,0x65,
- 0x0,0x63,0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x3d,0x0,0x20,0x0,0x27,0x4,0x3d,
- 0x4,0x30,0x4,0x37,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x35,0x0,0x27,
- 0x0,0x2c,0x0,0x20,0x4,0x47,0x4,0x42,0x4,0x3e,0x0,0x20,0x4,0x3e,0x4,0x42,
- 0x4,0x41,0x4,0x4b,0x4,0x3b,0x4,0x30,0x4,0x35,0x4,0x42,0x0,0x20,0x4,0x3a,
- 0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4,0x3b,0x4,0x43,0x0,0x20,0x0,0x6d,
- 0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x2f,0x0,0x3c,0x4,0x3d,0x4,0x30,0x4,0x37,
- 0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x35,0x0,0x3e,0x0,0x2f,0x0,0x65,
- 0x0,0x66,0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x73,0x0,0x2e,0x0,0x69,
- 0x0,0x6e,0x0,0x69,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0x13,
- 0x43,0x68,0x6f,0x6f,0x73,0x65,0x20,0x61,0x6e,0x20,0x65,0x66,0x66,0x65,0x63,0x74,
- 0x20,0x74,0x6f,0x20,0x70,0x6c,0x61,0x79,0x20,0x6f,0x6e,0x20,0x79,0x6f,0x75,0x72,
- 0x20,0x6e,0x65,0x78,0x74,0x20,0x73,0x70,0x6f,0x6b,0x65,0x6e,0x20,0x6d,0x65,0x73,
- 0x73,0x61,0x67,0x65,0x2e,0xa,0x54,0x68,0x65,0x20,0x65,0x66,0x66,0x65,0x63,0x74,
- 0x73,0x20,0x61,0x72,0x65,0x20,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x20,0x69,0x6e,
- 0x20,0x79,0x6f,0x75,0x72,0x20,0x74,0x68,0x65,0x6d,0x65,0x2f,0x65,0x66,0x66,0x65,
- 0x63,0x74,0x73,0x2f,0x65,0x66,0x66,0x65,0x63,0x74,0x73,0x2e,0x69,0x6e,0x69,0x2e,
- 0x20,0x59,0x6f,0x75,0x72,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x20,
- 0x63,0x61,0x6e,0x20,0x64,0x65,0x66,0x69,0x6e,0x65,0x20,0x63,0x75,0x73,0x74,0x6f,
- 0x6d,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x73,0x20,0x62,0x79,0xa,0x63,0x68,0x61,
- 0x72,0x2e,0x69,0x6e,0x69,0x20,0x5b,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x5d,0x20,
- 0x63,0x61,0x74,0x65,0x67,0x6f,0x72,0x79,0x2c,0x20,0x65,0x66,0x66,0x65,0x63,0x74,
- 0x73,0x20,0x3d,0x20,0x27,0x6d,0x69,0x73,0x63,0x6e,0x61,0x6d,0x65,0x27,0x20,0x77,
- 0x68,0x65,0x72,0x65,0x20,0x69,0x74,0x20,0x72,0x65,0x66,0x65,0x72,0x65,0x73,0x20,
- 0x74,0x6f,0x20,0x6d,0x69,0x73,0x63,0x2f,0x3c,0x6d,0x69,0x73,0x63,0x6e,0x61,0x6d,
- 0x65,0x3e,0x2f,0x65,0x66,0x66,0x65,0x63,0x74,0x73,0x2e,0x69,0x6e,0x69,0x20,0x74,
- 0x6f,0x20,0x72,0x65,0x61,0x64,0x20,0x74,0x68,0x65,0x20,0x65,0x66,0x66,0x65,0x63,
- 0x74,0x73,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0x14,0x4,0x12,0x4,0x4b,0x4,0x31,0x4,0x40,0x4,
- 0x30,0x4,0x42,0x4,0x4c,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x8,0x43,0x68,0x6f,0x6f,0x73,0x65,0x2e,0x2e,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0xbc,0x4,0x17,0x4,0x30,0x4,0x3a,0x4,0x40,0x4,0x4b,0x4,0x42,0x4,0x4c,0x0,
- 0x20,0x4,0x3e,0x4,0x3a,0x4,0x3d,0x4,0x3e,0x0,0x20,0x4,0x40,0x4,0x35,0x4,
- 0x34,0x4,0x30,0x4,0x3a,0x4,0x42,0x4,0x38,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,
- 0x30,0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,0x20,0x4,0x43,0x4,0x3b,0x4,0x38,0x4,
- 0x3a,0x4,0x38,0x0,0x2e,0x0,0xa,0x4,0x15,0x4,0x41,0x4,0x3b,0x4,0x38,0x0,
- 0x20,0x4,0x32,0x4,0x4b,0x0,0x20,0x4,0x3d,0x4,0x35,0x0,0x20,0x4,0x41,0x4,
- 0x3e,0x4,0x45,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x3b,0x4,0x38,0x0,
- 0x20,0x4,0x38,0x4,0x37,0x4,0x3c,0x4,0x35,0x4,0x3d,0x4,0x35,0x4,0x3d,0x4,
- 0x38,0x4,0x4f,0x0,0x2c,0x0,0x20,0x4,0x42,0x4,0x3e,0x0,0x20,0x4,0x43,0x4,
- 0x32,0x4,0x38,0x4,0x34,0x4,0x38,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x34,0x4,
- 0x38,0x4,0x30,0x4,0x3b,0x4,0x3e,0x4,0x33,0x4,0x3e,0x4,0x32,0x4,0x3e,0x4,
- 0x35,0x0,0x20,0x4,0x3e,0x4,0x3a,0x4,0x3d,0x4,0x3e,0x0,0x2e,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x60,0x43,0x6c,0x6f,0x73,0x65,0x20,0x74,0x68,0x65,
- 0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,
- 0x79,0x2f,0x65,0x64,0x69,0x74,0x69,0x6e,0x67,0x20,0x6f,0x76,0x65,0x72,0x6c,0x61,
- 0x79,0x2e,0xa,0x59,0x6f,0x75,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x70,
- 0x72,0x6f,0x6d,0x70,0x74,0x65,0x64,0x20,0x69,0x66,0x20,0x74,0x68,0x65,0x72,0x65,
- 0x27,0x73,0x20,0x61,0x6e,0x79,0x20,0x75,0x6e,0x73,0x61,0x76,0x65,0x64,0x20,0x63,
- 0x68,0x61,0x6e,0x67,0x65,0x73,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x2c,0x4,0x21,0x4,0x32,0x4,
- 0x35,0x4,0x40,0x4,0x3d,0x4,0x43,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x32,0x4,
- 0x41,0x4,0x35,0x0,0x20,0x4,0x3a,0x4,0x30,0x4,0x42,0x4,0x35,0x4,0x33,0x4,
- 0x3e,0x4,0x40,0x4,0x38,0x4,0x38,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x17,0x43,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x20,0x41,0x6c,0x6c,0x20,0x43,0x61,
- 0x74,0x65,0x67,0x6f,0x72,0x69,0x65,0x73,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,
- 0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x88,0x4,0x12,0x4,0x4b,
- 0x0,0x20,0x4,0x32,0x4,0x38,0x4,0x34,0x4,0x38,0x4,0x42,0x4,0x35,0x0,0x20,
- 0x4,0x3e,0x4,0x31,0x4,0x49,0x4,0x38,0x4,0x39,0x0,0x20,0x4,0x41,0x4,0x3f,
- 0x4,0x38,0x4,0x41,0x4,0x3e,0x4,0x3a,0x0,0x20,0x4,0x43,0x4,0x3b,0x4,0x38,
- 0x4,0x3a,0x0,0x2e,0x0,0x20,0x4,0x1d,0x4,0x30,0x4,0x36,0x4,0x3c,0x4,0x38,
- 0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x37,0x4,0x34,0x4,0x35,0x4,0x41,0x4,0x4c,
- 0x0,0x20,0x4,0x34,0x4,0x3b,0x4,0x4f,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x3e,
- 0x4,0x41,0x4,0x3c,0x4,0x3e,0x4,0x42,0x4,0x40,0x4,0x30,0x0,0x20,0x4,0x41,
- 0x4,0x32,0x4,0x3e,0x4,0x38,0x4,0x45,0x0,0x20,0x4,0x43,0x4,0x3b,0x4,0x38,
- 0x4,0x3a,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x37,0x43,0x75,
- 0x72,0x72,0x65,0x6e,0x74,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x69,
- 0x73,0x20,0x67,0x6c,0x6f,0x62,0x61,0x6c,0x2e,0x20,0x43,0x6c,0x69,0x63,0x6b,0x20,
- 0x74,0x6f,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x20,0x74,0x6f,0x20,0x70,0x72,0x69,
- 0x76,0x61,0x74,0x65,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,
- 0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x86,0x4,0x12,0x4,0x4b,0x0,0x20,0x4,
- 0x32,0x4,0x38,0x4,0x34,0x4,0x38,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x41,0x4,
- 0x32,0x4,0x3e,0x4,0x39,0x0,0x20,0x4,0x41,0x4,0x3f,0x4,0x38,0x4,0x41,0x4,
- 0x3e,0x4,0x3a,0x0,0x20,0x4,0x43,0x4,0x3b,0x4,0x38,0x4,0x3a,0x0,0x2e,0x0,
- 0x20,0x4,0x1d,0x4,0x30,0x4,0x36,0x4,0x3c,0x4,0x38,0x4,0x42,0x4,0x35,0x0,
- 0x20,0x4,0x37,0x4,0x34,0x4,0x35,0x4,0x41,0x4,0x4c,0x0,0x20,0x4,0x34,0x4,
- 0x3b,0x4,0x4f,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,0x41,0x4,0x3c,0x4,
- 0x3e,0x4,0x42,0x4,0x40,0x4,0x30,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x49,0x4,
- 0x38,0x4,0x45,0x0,0x20,0x4,0x43,0x4,0x3b,0x4,0x38,0x4,0x3a,0x0,0x2e,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x37,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,
- 0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x69,0x73,0x20,0x70,0x72,0x69,
- 0x76,0x61,0x74,0x65,0x2e,0x20,0x43,0x6c,0x69,0x63,0x6b,0x20,0x74,0x6f,0x20,0x73,
- 0x77,0x69,0x74,0x63,0x68,0x20,0x74,0x6f,0x20,0x67,0x6c,0x6f,0x62,0x61,0x6c,0x2e,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0x32,0x4,0x1f,0x4,0x3e,0x4,0x3b,0x4,0x4c,0x4,0x37,0x4,0x3e,
- 0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x35,0x4,0x3b,0x4,0x4c,0x4,0x41,0x4,0x3a,
- 0x4,0x38,0x4,0x39,0x0,0x20,0x4,0x32,0x4,0x3e,0x4,0x37,0x4,0x33,0x4,0x3b,
- 0x4,0x30,0x4,0x41,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,
- 0x43,0x75,0x73,0x74,0x6f,0x6d,0x20,0x53,0x68,0x6f,0x75,0x74,0x21,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0x16,0x4,0x1e,0x4,0x48,0x4,0x42,0x4,0x40,0x4,0x30,0x4,0x44,0x4,0x3e,0x4,
- 0x32,0x4,0x30,0x4,0x42,0x4,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x18,0x44,0x65,0x63,0x72,0x65,0x61,0x73,0x65,0x20,0x74,0x68,0x65,0x20,0x68,0x65,
- 0x61,0x6c,0x74,0x68,0x20,0x62,0x61,0x72,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,
- 0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x18,0x4,0x3f,0x4,
- 0x3e,0x0,0x20,0x4,0x43,0x4,0x3c,0x4,0x3e,0x4,0x3b,0x4,0x47,0x4,0x30,0x4,
- 0x3d,0x4,0x38,0x4,0x4e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,
- 0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x2a,0x4,0x23,0x4,0x3d,0x4,0x38,
- 0x4,0x47,0x4,0x42,0x4,0x3e,0x4,0x36,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,
- 0x4,0x4d,0x4,0x42,0x4,0x43,0x0,0x20,0x4,0x43,0x4,0x3b,0x4,0x38,0x4,0x3a,
- 0x4,0x43,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x44,0x65,
- 0x73,0x74,0x72,0x6f,0x79,0x20,0x74,0x68,0x69,0x73,0x20,0x70,0x69,0x65,0x63,0x65,
- 0x20,0x6f,0x66,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x66,
- 0x4,0x1f,0x4,0x3e,0x4,0x3a,0x4,0x30,0x4,0x37,0x4,0x4b,0x4,0x32,0x4,0x30,
- 0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x3b,0x4,0x4c,0x4,0x37,
- 0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x35,0x4,0x3b,0x4,0x4c,0x4,0x41,
- 0x4,0x3a,0x4,0x38,0x4,0x35,0x0,0x20,0x4,0x38,0x4,0x3c,0x4,0x35,0x4,0x3d,
- 0x4,0x30,0x0,0x20,0x4,0x34,0x4,0x3b,0x4,0x4f,0x0,0x20,0x4,0x32,0x4,0x41,
- 0x4,0x35,0x4,0x45,0x0,0x20,0x4,0x38,0x4,0x33,0x4,0x40,0x4,0x3e,0x4,0x3a,
- 0x4,0x3e,0x4,0x32,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x38,
- 0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x63,0x75,0x73,0x74,0x6f,0x6d,0x69,0x7a,
- 0x65,0x64,0x20,0x73,0x68,0x6f,0x77,0x6e,0x61,0x6d,0x65,0x73,0x20,0x66,0x6f,0x72,
- 0x20,0x61,0x6c,0x6c,0x20,0x75,0x73,0x65,0x72,0x73,0x20,0x77,0x68,0x65,0x6e,0x20,
- 0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,
- 0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x5e,0x4,0x12,0x4,0x4b,
- 0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x3f,0x4,0x35,
- 0x4,0x40,0x4,0x41,0x4,0x3e,0x4,0x3d,0x4,0x30,0x4,0x36,0x4,0x35,0x4,0x39,
- 0x0,0x2c,0x0,0x20,0x4,0x3a,0x4,0x3e,0x4,0x42,0x4,0x3e,0x4,0x40,0x4,0x4b,
- 0x4,0x45,0x0,0x20,0x4,0x3d,0x4,0x43,0x4,0x36,0x4,0x3d,0x4,0x3e,0x0,0x20,
- 0x4,0x38,0x4,0x33,0x4,0x3d,0x4,0x3e,0x4,0x40,0x4,0x38,0x4,0x40,0x4,0x3e,
- 0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x37,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x74,0x68,0x65,0x20,
- 0x6c,0x69,0x73,0x74,0x20,0x6f,0x66,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,
- 0x72,0x20,0x66,0x6f,0x6c,0x64,0x65,0x72,0x73,0x20,0x79,0x6f,0x75,0x20,0x77,0x69,
- 0x73,0x68,0x20,0x74,0x6f,0x20,0x6d,0x75,0x74,0x65,0x2e,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x74,0x4,
- 0x1f,0x4,0x3e,0x4,0x3a,0x4,0x30,0x4,0x37,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,
- 0x20,0x4,0x41,0x4,0x3f,0x4,0x38,0x4,0x41,0x4,0x3e,0x4,0x3a,0x0,0x20,0x4,
- 0x3f,0x4,0x35,0x4,0x40,0x4,0x41,0x4,0x3e,0x4,0x3d,0x4,0x30,0x4,0x36,0x4,
- 0x35,0x4,0x39,0x0,0x2c,0x0,0x20,0x4,0x41,0x0,0x20,0x4,0x3a,0x4,0x3e,0x4,
- 0x42,0x4,0x3e,0x4,0x40,0x4,0x4b,0x4,0x3c,0x4,0x38,0x0,0x20,0x4,0x3c,0x4,
- 0x3e,0x4,0x36,0x4,0x3d,0x4,0x3e,0x0,0x20,0x4,0x32,0x4,0x41,0x4,0x42,0x4,
- 0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x40,0x4,0x4f,0x4,0x34,0x4,0x3e,0x4,
- 0x3c,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2c,0x44,0x69,0x73,
- 0x70,0x6c,0x61,0x79,0x20,0x74,0x68,0x65,0x20,0x6c,0x69,0x73,0x74,0x20,0x6f,0x66,
- 0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x73,0x20,0x74,0x6f,0x20,0x70,
- 0x61,0x69,0x72,0x20,0x77,0x69,0x74,0x68,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,
- 0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xfc,0x4,0x17,0x4,
- 0x30,0x4,0x33,0x4,0x3b,0x4,0x43,0x4,0x48,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,
- 0x20,0x4,0x32,0x4,0x4b,0x4,0x37,0x4,0x3e,0x4,0x32,0x4,0x4b,0x0,0x20,0x4,
- 0x3c,0x4,0x3e,0x4,0x34,0x4,0x35,0x4,0x40,0x4,0x30,0x4,0x42,0x4,0x3e,0x4,
- 0x40,0x4,0x30,0x0,0x3a,0x0,0x20,0x4,0x32,0x4,0x4b,0x0,0x20,0x4,0x3d,0x4,
- 0x35,0x0,0x20,0x4,0x31,0x4,0x43,0x4,0x34,0x4,0x35,0x4,0x42,0x4,0x35,0x0,
- 0x20,0x4,0x3f,0x4,0x3e,0x4,0x3b,0x4,0x43,0x4,0x47,0x4,0x30,0x4,0x42,0x4,
- 0x4c,0x0,0x20,0x4,0x37,0x4,0x32,0x4,0x43,0x4,0x3a,0x4,0x3e,0x4,0x32,0x4,
- 0x4b,0x4,0x35,0x0,0x20,0x4,0x3e,0x4,0x3f,0x4,0x3e,0x4,0x32,0x4,0x35,0x4,
- 0x49,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,0x2c,0x0,0xa,0x4,0x30,0x0,
- 0x20,0x4,0x3e,0x4,0x3a,0x4,0x3d,0x4,0x3e,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,
- 0x38,0x4,0x3b,0x4,0x3e,0x4,0x36,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,
- 0x20,0x4,0x3d,0x4,0x35,0x0,0x20,0x4,0x31,0x4,0x43,0x4,0x34,0x4,0x35,0x4,
- 0x42,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x38,0x4,0x32,0x4,0x3b,0x4,0x35,0x4,
- 0x3a,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x3a,0x0,0x20,0x4,0x41,0x4,
- 0x35,0x4,0x31,0x4,0x35,0x0,0x20,0x4,0x32,0x4,0x3d,0x4,0x38,0x4,0x3c,0x4,
- 0x30,0x4,0x3d,0x4,0x38,0x4,0x35,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x71,0x44,0x6f,0x20,0x6e,0x6f,0x74,0x20,0x6c,0x69,0x73,0x74,0x65,0x6e,
- 0x20,0x74,0x6f,0x20,0x6d,0x6f,0x64,0x20,0x63,0x61,0x6c,0x6c,0x73,0x20,0x77,0x68,
- 0x65,0x6e,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2c,0x20,0x70,0x72,0x65,0x76,
- 0x65,0x6e,0x74,0x69,0x6e,0x67,0x20,0x74,0x68,0x65,0x6d,0x20,0x66,0x72,0x6f,0x6d,
- 0x20,0x70,0x6c,0x61,0x79,0x69,0x6e,0x67,0x20,0x73,0x6f,0x75,0x6e,0x64,0x73,0x20,
- 0x6f,0x72,0x20,0x66,0x6f,0x63,0x75,0x73,0x69,0x6e,0x67,0x20,0x61,0x74,0x74,0x65,
- 0x6e,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x6e,0x20,0x74,0x68,0x65,0x20,0x77,0x69,0x6e,
- 0x64,0x6f,0x77,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x4a,0x4,0x25,0x4,0x3e,0x4,0x42,0x4,0x38,
- 0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x41,0x4,0x3e,0x4,0x45,0x4,0x40,0x4,0x30,
- 0x4,0x3d,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x32,0x4,0x3d,0x4,0x35,
- 0x4,0x41,0x4,0x51,0x4,0x3d,0x4,0x3d,0x4,0x4b,0x4,0x35,0x0,0x20,0x4,0x38,
- 0x4,0x37,0x4,0x3c,0x4,0x35,0x4,0x3d,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x4f,
- 0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x44,0x6f,0x20,0x79,
- 0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65,0x20,
- 0x79,0x6f,0x75,0x72,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x73,0x3f,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0x4a,0x4,0x25,0x4,0x3e,0x4,0x42,0x4,0x38,0x4,0x42,0x4,0x35,0x0,0x20,0x4,
- 0x41,0x4,0x3e,0x4,0x45,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x42,0x4,
- 0x4c,0x0,0x20,0x4,0x32,0x4,0x3d,0x4,0x35,0x4,0x41,0x4,0x51,0x4,0x3d,0x4,
- 0x3d,0x4,0x4b,0x4,0x35,0x0,0x20,0x4,0x38,0x4,0x37,0x4,0x3c,0x4,0x35,0x4,
- 0x3d,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x21,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x69,0x73,0x68,
- 0x20,0x74,0x6f,0x20,0x6b,0x65,0x65,0x70,0x20,0x79,0x6f,0x75,0x72,0x20,0x63,0x68,
- 0x61,0x6e,0x67,0x65,0x73,0x3f,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xc,0x4,0x1e,0x4,0x48,0x4,0x38,
- 0x4,0x31,0x4,0x3a,0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,
- 0x45,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,
- 0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x28,0x4,0x23,0x4,0x3b,0x4,0x38,0x4,
- 0x3a,0x4,0x30,0x0,0x20,0x4,0x31,0x4,0x4b,0x4,0x3b,0x4,0x30,0x0,0x20,0x4,
- 0x38,0x4,0x37,0x4,0x3c,0x4,0x35,0x4,0x3d,0x4,0x35,0x4,0x3d,0x4,0x30,0x0,
- 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x76,0x69,0x64,0x65,
- 0x6e,0x63,0x65,0x20,0x68,0x61,0x73,0x20,0x62,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x64,
- 0x69,0x66,0x69,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x30,0x4,0x20,0x4,0x30,0x4,0x37,
- 0x4,0x32,0x4,0x35,0x4,0x40,0x4,0x3d,0x4,0x43,0x4,0x42,0x4,0x4c,0x0,0x20,
- 0x4,0x32,0x4,0x41,0x4,0x35,0x0,0x20,0x4,0x3a,0x4,0x30,0x4,0x42,0x4,0x35,
- 0x4,0x33,0x4,0x3e,0x4,0x40,0x4,0x38,0x4,0x38,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x15,0x45,0x78,0x70,0x61,0x6e,0x64,0x20,0x41,0x6c,0x6c,0x20,0x43,
- 0x61,0x74,0x65,0x67,0x6f,0x72,0x69,0x65,0x73,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,
- 0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x2c,0x4,0x1f,0x4,
- 0x3e,0x4,0x41,0x4,0x42,0x4,0x35,0x4,0x3f,0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,
- 0x3e,0x4,0x35,0x0,0x20,0x4,0x3d,0x4,0x30,0x4,0x40,0x4,0x30,0x4,0x41,0x4,
- 0x42,0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x35,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x7,0x46,0x61,0x64,0x65,0x20,0x49,0x6e,0x7,0x0,0x0,0x0,0x9,0x43,
- 0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x56,0x4,0x1f,
- 0x4,0x3e,0x4,0x41,0x4,0x42,0x4,0x35,0x4,0x3f,0x4,0x35,0x4,0x3d,0x4,0x3d,
- 0x4,0x3e,0x4,0x35,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x42,0x4,0x43,0x4,0x45,
- 0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x35,
- 0x4,0x34,0x4,0x4b,0x4,0x34,0x4,0x43,0x4,0x49,0x4,0x35,0x4,0x39,0x0,0x20,
- 0x4,0x3a,0x4,0x3e,0x4,0x3c,0x4,0x3f,0x4,0x3e,0x4,0x37,0x4,0x38,0x4,0x46,
- 0x4,0x38,0x4,0x38,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x46,0x61,
- 0x64,0x65,0x20,0x4f,0x75,0x74,0x20,0x50,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x7,
- 0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,
- 0x0,0x0,0x10,0x4,0x1e,0x4,0x42,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x38,0x4,
- 0x42,0x4,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x6c,0x69,
- 0x70,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,
- 0x3,0x0,0x0,0x0,0x36,0x4,0x13,0x4,0x35,0x4,0x3d,0x4,0x35,0x4,0x40,0x4,
- 0x30,0x4,0x46,0x4,0x38,0x4,0x4f,0x0,0x20,0x4,0x3f,0x4,0x35,0x4,0x40,0x4,
- 0x41,0x4,0x3e,0x4,0x3d,0x4,0x30,0x4,0x36,0x4,0x35,0x4,0x39,0x0,0x3a,0x0,
- 0xa,0x0,0x25,0x0,0x31,0x0,0x2f,0x0,0x25,0x0,0x32,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x17,0x47,0x65,0x6e,0x65,0x72,0x61,0x74,0x69,0x6e,0x67,0x20,
- 0x63,0x68,0x61,0x72,0x73,0x3a,0xa,0x25,0x31,0x2f,0x25,0x32,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x1a,
- 0x4,0x1d,0x4,0x35,0x0,0x20,0x4,0x31,0x4,0x35,0x4,0x41,0x4,0x3f,0x4,0x3e,
- 0x4,0x3a,0x4,0x3e,0x4,0x38,0x4,0x42,0x4,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x5,0x47,0x75,0x61,0x72,0x64,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,
- 0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x10,0x4,0x12,0x4,
- 0x38,0x4,0x3d,0x4,0x3e,0x4,0x32,0x4,0x35,0x4,0x3d,0x0,0x21,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x47,0x75,0x69,0x6c,0x74,0x79,0x21,0x7,0x0,
- 0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,
- 0x0,0xa,0x4,0x21,0x4,0x22,0x4,0x1e,0x4,0x1f,0x0,0x21,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x8,0x48,0x4f,0x4c,0x44,0x20,0x49,0x54,0x21,0x7,0x0,
- 0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,
- 0x0,0xa,0x4,0x21,0x4,0x42,0x4,0x3e,0x4,0x3f,0x0,0x21,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x8,0x48,0x6f,0x6c,0x64,0x20,0x49,0x74,0x21,0x7,0x0,
- 0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,
- 0x0,0xd0,0x4,0x15,0x4,0x41,0x4,0x3b,0x4,0x38,0x0,0x20,0x4,0x32,0x4,0x3a,
- 0x4,0x3b,0x4,0x4e,0x4,0x47,0x4,0x35,0x4,0x3d,0x4,0x30,0x0,0x20,0x4,0x3f,
- 0x4,0x40,0x4,0x35,0x4,0x34,0x4,0x32,0x4,0x30,0x4,0x40,0x4,0x38,0x4,0x42,
- 0x4,0x35,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x30,0x4,0x4f,0x0,0x20,0x4,0x30,
- 0x4,0x3d,0x4,0x38,0x4,0x3c,0x4,0x30,0x4,0x46,0x4,0x38,0x4,0x4f,0x0,0x3a,
- 0x0,0xa,0x4,0x32,0x4,0x4b,0x4,0x32,0x4,0x3e,0x4,0x34,0x4,0x38,0x4,0x42,
- 0x4,0x4c,0x0,0x20,0x4,0x42,0x4,0x35,0x4,0x3a,0x4,0x41,0x4,0x42,0x0,0x2c,
- 0x0,0x20,0x4,0x3d,0x4,0x35,0x0,0x20,0x4,0x34,0x4,0x3e,0x4,0x36,0x4,0x38,
- 0x4,0x34,0x4,0x30,0x4,0x4f,0x4,0x41,0x4,0x4c,0x0,0x20,0x4,0x3e,0x4,0x3a,
- 0x4,0x3e,0x4,0x3d,0x4,0x47,0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,0x20,
- 0x4,0x3f,0x4,0x40,0x4,0x35,0x4,0x34,0x4,0x32,0x4,0x30,0x4,0x40,0x4,0x38,
- 0x4,0x42,0x4,0x35,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x3e,0x4,0x39,0x0,0x20,
- 0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x3c,0x4,0x30,0x4,0x46,0x4,0x38,0x4,0x38,
- 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5e,0x49,0x66,0x20,0x70,
- 0x72,0x65,0x61,0x6e,0x69,0x6d,0x20,0x69,0x73,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,
- 0x64,0x2c,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x74,0x68,0x65,0x20,0x69,
- 0x6e,0x70,0x75,0x74,0x20,0x74,0x65,0x78,0x74,0x20,0x69,0x6d,0x6d,0x65,0x64,0x69,
- 0x61,0x74,0x65,0x6c,0x79,0x20,0x61,0x73,0x20,0x74,0x68,0x65,0x20,0x61,0x6e,0x69,
- 0x6d,0x61,0x74,0x69,0x6f,0x6e,0x20,0x70,0x6c,0x61,0x79,0x73,0x20,0x63,0x6f,0x6e,
- 0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x6c,0x79,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,
- 0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x26,0x4,0x18,
- 0x4,0x37,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x36,0x4,0x35,0x4,0x3d,
- 0x4,0x38,0x4,0x4f,0x0,0x20,0x0,0x28,0x0,0x2a,0x0,0x2e,0x0,0x70,0x0,0x6e,
- 0x0,0x67,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x49,0x6d,
- 0x61,0x67,0x65,0x73,0x20,0x28,0x2a,0x2e,0x70,0x6e,0x67,0x29,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x1c,
- 0x4,0x13,0x4,0x3e,0x4,0x32,0x4,0x3e,0x4,0x40,0x4,0x38,0x4,0x42,0x4,0x4c,
- 0x0,0x20,0x4,0x41,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x43,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x9,0x49,0x6d,0x6d,0x65,0x64,0x69,0x61,0x74,0x65,0x7,
- 0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,
- 0x0,0x0,0x10,0x4,0x1f,0x4,0x3e,0x4,0x3e,0x4,0x49,0x4,0x40,0x4,0x38,0x4,
- 0x42,0x4,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x49,0x6e,0x63,
- 0x72,0x65,0x61,0x73,0x65,0x20,0x74,0x68,0x65,0x20,0x68,0x65,0x61,0x6c,0x74,0x68,
- 0x20,0x62,0x61,0x72,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,
- 0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x22,0x4,0x24,0x4,0x30,0x4,0x39,0x4,
- 0x3b,0x4,0x4b,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x28,0x0,
- 0x2a,0x0,0x2e,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x11,0x49,0x6e,0x69,0x20,0x46,0x69,0x6c,0x65,0x73,0x20,0x28,
- 0x2a,0x2e,0x69,0x6e,0x69,0x29,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x7e,0x4,0x1f,0x4,0x3e,0x4,0x3b,
- 0x4,0x43,0x4,0x47,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x43,0x4,0x32,
- 0x4,0x35,0x4,0x34,0x4,0x3e,0x4,0x3c,0x4,0x3b,0x4,0x35,0x4,0x3d,0x4,0x38,
- 0x4,0x4f,0x0,0x20,0x4,0x3e,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x41,0x4,0x35,
- 0x4,0x34,0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x4f,0x4,0x45,0x0,0x2e,0x0,0xa,
- 0x0,0x28,0x4,0x21,0x4,0x3c,0x0,0x2e,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x34,
- 0x4,0x40,0x4,0x3e,0x4,0x31,0x4,0x3d,0x4,0x35,0x4,0x35,0x0,0x20,0x4,0x32,
- 0x0,0x20,0x4,0x3d,0x4,0x30,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x39,
- 0x4,0x3a,0x4,0x30,0x4,0x45,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x5a,0x4c,0x65,0x74,0x73,0x20,0x79,0x6f,0x75,0x20,0x72,0x65,0x63,0x65,0x69,
- 0x76,0x65,0x20,0x63,0x61,0x73,0x65,0x20,0x61,0x6c,0x65,0x72,0x74,0x73,0x20,0x77,
- 0x68,0x65,0x6e,0x20,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x2e,0xa,0x28,0x59,0x6f,
- 0x75,0x20,0x63,0x61,0x6e,0x20,0x73,0x65,0x74,0x20,0x79,0x6f,0x75,0x72,0x20,0x70,
- 0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,
- 0x65,0x20,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x21,0x29,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x3c,
- 0x4,0x17,0x4,0x30,0x4,0x33,0x4,0x40,0x4,0x43,0x4,0x37,0x4,0x38,0x4,0x42,
- 0x4,0x4c,0x0,0x20,0x4,0x43,0x4,0x3b,0x4,0x38,0x4,0x3a,0x4,0x43,0x0,0x20,
- 0x4,0x38,0x4,0x37,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4,0x3b,0x4,0x30,
- 0x0,0x20,0x0,0x2e,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x2e,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x20,0x4c,0x6f,0x61,0x64,0x20,0x65,0x76,0x69,0x64,0x65,
- 0x6e,0x63,0x65,0x20,0x66,0x72,0x6f,0x6d,0x20,0x61,0x6e,0x20,0x2e,0x69,0x6e,0x69,
- 0x20,0x66,0x69,0x6c,0x65,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xc,0x4,0x1c,0x4,0x30,0x4,0x41,
- 0x4,0x42,0x4,0x35,0x4,0x40,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,
- 0x4d,0x61,0x73,0x74,0x65,0x72,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x12,0x4,0x21,0x4,0x3e,0x4,0x3e,
- 0x4,0x31,0x4,0x49,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x35,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0x56,0x4,0x1e,0x4,0x42,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x38,0x4,0x42,0x4,
- 0x4c,0x0,0x20,0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x3c,0x4,0x30,0x4,0x46,0x4,
- 0x38,0x4,0x38,0x0,0x20,0x4,0x3f,0x4,0x35,0x4,0x40,0x4,0x41,0x4,0x3e,0x4,
- 0x3d,0x4,0x30,0x4,0x36,0x4,0x30,0x0,0x20,0x4,0x3f,0x4,0x3e,0x0,0x20,0x4,
- 0x33,0x4,0x3e,0x4,0x40,0x4,0x38,0x4,0x37,0x4,0x3e,0x4,0x3d,0x4,0x42,0x4,
- 0x30,0x4,0x3b,0x4,0x38,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x2c,0x4d,0x69,0x72,0x72,0x6f,0x72,0x20,0x79,0x6f,0x75,0x72,0x20,0x63,0x68,0x61,
- 0x72,0x61,0x63,0x74,0x65,0x72,0x27,0x73,0x20,0x65,0x6d,0x6f,0x74,0x65,0x73,0x20,
- 0x77,0x68,0x65,0x6e,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2e,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0xc,0x4,0x1c,0x4,0x43,0x4,0x37,0x4,0x4b,0x4,0x3a,0x4,0x30,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x4d,0x75,0x73,0x69,0x63,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xe,
- 0x4,0x1d,0x4,0x38,0x4,0x3a,0x4,0x3d,0x4,0x35,0x4,0x39,0x4,0x3c,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e,0x61,0x6d,0x65,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x52,
- 0x4,0x1d,0x4,0x30,0x4,0x37,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x35,
- 0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x31,0x0,0xa,0x4,0x18,0x4,0x37,0x4,0x3e,
- 0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x36,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x35,
- 0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x32,0x0,0xa,0x4,0x1e,0x4,0x3f,0x4,0x38,
- 0x4,0x41,0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x35,0x0,0x3a,0x0,0xa,0x0,0x25,
- 0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x22,0x4e,0x61,0x6d,0x65,
- 0x3a,0x20,0x25,0x31,0xa,0x49,0x6d,0x61,0x67,0x65,0x3a,0x20,0x25,0x32,0xa,0x44,
- 0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3a,0xa,0x25,0x33,0x7,0x0,
- 0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,
- 0x0,0x54,0x4,0x1e,0x4,0x42,0x4,0x3a,0x4,0x40,0x4,0x3e,0x4,0x39,0x4,0x42,
- 0x4,0x35,0x0,0x20,0x0,0x25,0x0,0x31,0x0,0x20,0x4,0x34,0x4,0x3b,0x4,0x4f,
- 0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x3b,0x4,0x43,0x4,0x47,0x4,0x35,0x4,0x3d,
- 0x4,0x38,0x4,0x4f,0x0,0x20,0x4,0x3c,0x4,0x30,0x4,0x42,0x4,0x35,0x4,0x40,
- 0x4,0x38,0x4,0x30,0x4,0x3b,0x4,0x3e,0x4,0x32,0x0,0x20,0x4,0x34,0x4,0x35,
- 0x4,0x3b,0x4,0x30,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,
- 0x4e,0x61,0x76,0x69,0x67,0x61,0x74,0x65,0x20,0x74,0x6f,0x20,0x25,0x31,0x20,0x66,
- 0x6f,0x72,0x20,0x74,0x68,0x65,0x20,0x43,0x4d,0x20,0x64,0x6f,0x63,0x2e,0x7,0x0,
- 0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,
- 0x0,0x6,0x4,0x1d,0x4,0x35,0x4,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x4,0x4e,0x6f,0x6e,0x65,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x14,0x4,0x1f,0x4,0x20,0x4,0x1e,
- 0x4,0x22,0x4,0x15,0x4,0x21,0x4,0x22,0x4,0x23,0x4,0x2e,0x0,0x21,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x4f,0x42,0x4a,0x45,0x43,0x54,0x49,0x4f,
- 0x4e,0x21,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,
- 0x1,0x3,0x0,0x0,0x0,0x14,0x4,0x1f,0x4,0x40,0x4,0x3e,0x4,0x42,0x4,0x35,
- 0x4,0x41,0x4,0x42,0x4,0x43,0x4,0x4e,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0xa,0x4f,0x62,0x6a,0x65,0x63,0x74,0x69,0x6f,0x6e,0x21,0x7,0x0,
- 0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,
- 0x0,0x46,0x4,0x12,0x4,0x30,0x4,0x3c,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x3f,
- 0x4,0x40,0x4,0x35,0x4,0x42,0x4,0x38,0x4,0x3b,0x4,0x38,0x0,0x20,0x4,0x3e,
- 0x4,0x42,0x4,0x3f,0x4,0x40,0x4,0x30,0x4,0x32,0x4,0x3b,0x4,0x4f,0x4,0x42,
- 0x4,0x4c,0x0,0x20,0x4,0x41,0x4,0x3e,0x4,0x3e,0x4,0x31,0x4,0x49,0x4,0x35,
- 0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x13,0x4f,0x6f,0x70,0x73,0x2c,0x20,0x79,0x6f,0x75,0x27,0x72,0x65,0x20,0x6d,
- 0x75,0x74,0x65,0x64,0x21,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,
- 0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x2a,0x4,0x17,0x4,0x30,0x4,0x33,0x4,
- 0x40,0x4,0x43,0x4,0x37,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x41,0x4,
- 0x3f,0x4,0x38,0x4,0x41,0x4,0x3e,0x4,0x3a,0x0,0x20,0x4,0x43,0x4,0x3b,0x4,
- 0x38,0x4,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,
- 0x6e,0x20,0x49,0x6e,0x76,0x65,0x6e,0x74,0x6f,0x72,0x79,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xc,0x4,
- 0x1f,0x4,0x30,0x4,0x40,0x4,0x3e,0x4,0x3b,0x4,0x4c,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x8,0x50,0x61,0x73,0x73,0x77,0x6f,0x72,0x64,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0x1e,0x4,0x17,0x4,0x30,0x4,0x49,0x4,0x38,0x4,0x49,0x4,0x51,0x4,0x3d,0x0,
- 0x20,0x4,0x3f,0x4,0x30,0x4,0x40,0x4,0x3e,0x4,0x3b,0x4,0x35,0x4,0x3c,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x50,0x61,0x73,0x73,0x77,0x6f,0x72,
- 0x64,0x65,0x64,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0x3a,0x4,0x12,0x4,0x3a,0x4,0x3b,0x4,0x4e,0x4,
- 0x47,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x41,0x4,0x3b,0x4,0x43,0x4,
- 0x47,0x4,0x30,0x4,0x39,0x4,0x3d,0x4,0x43,0x4,0x4e,0x0,0x20,0x4,0x3a,0x4,
- 0x3e,0x4,0x3c,0x4,0x3f,0x4,0x3e,0x4,0x37,0x4,0x38,0x4,0x46,0x4,0x38,0x4,
- 0x4e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x50,0x6c,0x61,0x79,0x20,
- 0x52,0x61,0x6e,0x64,0x6f,0x6d,0x20,0x53,0x6f,0x6e,0x67,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x98,0x4,
- 0x1f,0x4,0x3e,0x4,0x3a,0x4,0x30,0x4,0x37,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,
- 0x20,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x3e,0x4,0x32,0x4,0x43,0x4,0x4e,0x0,
- 0x20,0x4,0x3f,0x4,0x40,0x4,0x35,0x4,0x34,0x4,0x32,0x4,0x30,0x4,0x40,0x4,
- 0x38,0x4,0x42,0x4,0x35,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x43,0x4,0x4e,0x0,
- 0x20,0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x3c,0x4,0x30,0x4,0x46,0x4,0x38,0x4,
- 0x4e,0x0,0x2c,0x0,0xa,0x4,0x41,0x4,0x3e,0x4,0x3e,0x4,0x42,0x4,0x32,0x4,
- 0x35,0x4,0x42,0x4,0x41,0x4,0x42,0x4,0x32,0x4,0x43,0x4,0x4e,0x4,0x49,0x4,
- 0x43,0x4,0x4e,0x0,0x20,0x4,0x32,0x4,0x4b,0x4,0x31,0x4,0x40,0x4,0x30,0x4,
- 0x3d,0x4,0x3d,0x4,0x3e,0x4,0x39,0x0,0x20,0x4,0x4d,0x4,0x3c,0x4,0x3e,0x4,
- 0x46,0x4,0x38,0x4,0x38,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x42,0x50,0x6c,0x61,0x79,0x20,0x61,0x20,0x73,0x69,0x6e,0x67,0x6c,0x65,0x2d,0x73,
- 0x68,0x6f,0x74,0x20,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x20,0x61,0x73,
- 0x20,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x20,0x62,0x79,0x20,0x74,0x68,0x65,0x20,
- 0x65,0x6d,0x6f,0x74,0x65,0x20,0x77,0x68,0x65,0x6e,0x20,0x63,0x68,0x65,0x63,0x6b,
- 0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0xa2,0x4,0x1f,0x4,0x3e,0x4,0x3a,0x4,0x30,0x4,
- 0x37,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x32,0x4,0x41,0x4,0x3f,0x4,
- 0x4b,0x4,0x48,0x4,0x3a,0x4,0x43,0x0,0x20,0x4,0x38,0x0,0x20,0x4,0x32,0x4,
- 0x3e,0x4,0x41,0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,0x38,0x4,0x37,0x4,0x32,0x4,
- 0x35,0x4,0x41,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x37,0x4,0x32,0x4,0x43,0x4,
- 0x3a,0x0,0x20,0x4,0x3e,0x4,0x37,0x4,0x30,0x4,0x40,0x4,0x35,0x4,0x3d,0x4,
- 0x38,0x4,0x4f,0x0,0x20,0x4,0x32,0x4,0x3e,0x0,0x20,0x4,0x32,0x4,0x40,0x4,
- 0x35,0x4,0x3c,0x4,0x4f,0x0,0x20,0x4,0x32,0x4,0x4b,0x4,0x32,0x4,0x3e,0x4,
- 0x34,0x4,0x30,0x0,0x20,0x4,0x41,0x4,0x3b,0x4,0x35,0x4,0x34,0x4,0x43,0x4,
- 0x4e,0x4,0x49,0x4,0x35,0x4,0x39,0x0,0x20,0x4,0x40,0x4,0x35,0x4,0x3f,0x4,
- 0x3b,0x4,0x38,0x4,0x3a,0x4,0x38,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x5d,0x50,0x6c,0x61,0x79,0x20,0x72,0x65,0x61,0x6c,0x69,0x7a,0x61,0x74,
- 0x69,0x6f,0x6e,0x20,0x73,0x6f,0x75,0x6e,0x64,0x20,0x61,0x6e,0x64,0x20,0x61,0x6e,
- 0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x76,
- 0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x20,0x6f,0x6e,0x20,0x74,0x68,0x65,0x20,0x6e,
- 0x65,0x78,0x74,0x20,0x73,0x70,0x6f,0x6b,0x65,0x6e,0x20,0x6d,0x65,0x73,0x73,0x61,
- 0x67,0x65,0x20,0x77,0x68,0x65,0x6e,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2e,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0x1c,0x4,0x1f,0x4,0x40,0x4,0x35,0x4,0x34,0x0,0x2e,0x0,0x20,
- 0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x3c,0x4,0x30,0x4,0x46,0x4,0x38,0x4,0x4f,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x50,0x72,0x65,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0x1c,0x4,0x1f,0x4,0x40,0x4,0x35,0x4,0x34,0x0,0x2e,0x0,0x20,0x4,0x30,0x4,
- 0x3d,0x4,0x38,0x4,0x3c,0x4,0x30,0x4,0x46,0x4,0x38,0x4,0x38,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x50,0x72,0x65,0x61,0x6e,0x69,0x6d,0x7,0x0,
- 0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,
- 0x0,0x96,0x4,0x1f,0x4,0x3e,0x4,0x3a,0x4,0x30,0x4,0x37,0x4,0x30,0x4,0x42,
- 0x4,0x4c,0x0,0x20,0x4,0x4d,0x4,0x42,0x4,0x43,0x0,0x20,0x4,0x43,0x4,0x3b,
- 0x4,0x38,0x4,0x3a,0x4,0x43,0x0,0x20,0x4,0x32,0x4,0x41,0x4,0x35,0x4,0x3c,
- 0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x38,0x4,0x41,0x4,0x43,0x4,0x42,0x4,0x41,
- 0x4,0x42,0x4,0x32,0x4,0x43,0x4,0x4e,0x4,0x49,0x4,0x38,0x4,0x3c,0x0,0x20,
- 0x4,0x32,0x4,0x3c,0x4,0x35,0x4,0x41,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x41,
- 0x0,0x20,0x4,0x32,0x4,0x30,0x4,0x48,0x4,0x38,0x4,0x3c,0x0,0x20,0x4,0x41,
- 0x4,0x3b,0x4,0x35,0x4,0x34,0x4,0x43,0x4,0x4e,0x4,0x49,0x4,0x38,0x4,0x3c,
- 0x0,0x20,0x4,0x41,0x4,0x3e,0x4,0x3e,0x4,0x31,0x4,0x49,0x4,0x35,0x4,0x3d,
- 0x4,0x38,0x4,0x35,0x4,0x3c,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x46,0x50,0x72,0x65,0x73,0x65,0x6e,0x74,0x20,0x74,0x68,0x69,0x73,0x20,0x70,
- 0x69,0x65,0x63,0x65,0x20,0x6f,0x66,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,
- 0x20,0x74,0x6f,0x20,0x65,0x76,0x65,0x72,0x79,0x6f,0x6e,0x65,0x20,0x6f,0x6e,0x20,
- 0x79,0x6f,0x75,0x72,0x20,0x6e,0x65,0x78,0x74,0x20,0x73,0x70,0x6f,0x6b,0x65,0x6e,
- 0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,
- 0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x10,0x4,0x1f,0x4,0x40,
- 0x4,0x38,0x4,0x47,0x4,0x38,0x4,0x3d,0x4,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x7,0x52,0x65,0x61,0x73,0x6f,0x6e,0x3a,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0x6c,0x4,0x1f,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x37,0x4,0x30,0x4,0x33,0x4,
- 0x40,0x4,0x43,0x4,0x37,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x42,0x4,
- 0x35,0x4,0x3c,0x4,0x43,0x0,0x20,0x4,0x38,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,
- 0x3d,0x4,0x3e,0x4,0x32,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x32,0x4,
- 0x41,0x4,0x35,0x0,0x20,0x4,0x4d,0x4,0x3b,0x4,0x35,0x4,0x3c,0x4,0x35,0x4,
- 0x3d,0x4,0x42,0x4,0x4b,0x0,0x20,0x4,0x38,0x4,0x3d,0x4,0x42,0x4,0x35,0x4,
- 0x40,0x4,0x44,0x4,0x35,0x4,0x39,0x4,0x41,0x4,0x30,0x0,0x2e,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x3d,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x74,
- 0x68,0x65,0x20,0x74,0x68,0x65,0x6d,0x65,0x20,0x61,0x6e,0x64,0x20,0x75,0x70,0x64,
- 0x61,0x74,0x65,0x20,0x61,0x6c,0x6c,0x20,0x6f,0x66,0x20,0x74,0x68,0x65,0x20,0x75,
- 0x69,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x20,0x74,0x6f,0x20,0x6d,0x61,
- 0x74,0x63,0x68,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x24,0x4,0x1f,0x4,0x35,0x4,0x40,0x4,0x35,
- 0x4,0x37,0x4,0x30,0x4,0x33,0x4,0x40,0x4,0x43,0x4,0x37,0x4,0x38,0x4,0x42,
- 0x4,0x4c,0x0,0x20,0x4,0x42,0x4,0x35,0x4,0x3c,0x4,0x43,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0xc,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20,0x74,0x68,0x65,
- 0x6d,0x65,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,
- 0x1,0x3,0x0,0x0,0x0,0xc2,0x4,0x23,0x4,0x34,0x4,0x30,0x4,0x3b,0x4,0x38,
- 0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x32,0x4,0x4b,0x4,0x31,0x4,0x40,0x4,0x30,
- 0x4,0x3d,0x4,0x3d,0x4,0x3e,0x4,0x33,0x4,0x3e,0x0,0x20,0x4,0x34,0x4,0x3b,
- 0x4,0x4f,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x34,0x4,0x3c,0x4,0x35,0x4,0x3d,
- 0x4,0x4b,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x20,0x4,0x3f,0x4,0x35,
- 0x4,0x40,0x4,0x41,0x4,0x3e,0x4,0x3d,0x4,0x30,0x4,0x36,0x4,0x30,0x0,0x20,
- 0x4,0x38,0x0,0x20,0x4,0x32,0x4,0x35,0x4,0x40,0x4,0x3d,0x4,0x43,0x4,0x42,
- 0x4,0x4c,0x4,0x41,0x4,0x4f,0x0,0x20,0x4,0x3a,0x0,0x20,0x4,0x3f,0x4,0x30,
- 0x4,0x3f,0x4,0x3a,0x4,0x35,0x0,0x20,0x4,0x38,0x4,0x37,0x4,0x3d,0x4,0x30,
- 0x4,0x47,0x4,0x30,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x3e,0x0,0x20,0x4,0x32,
- 0x4,0x4b,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x3e,0x4,0x33,
- 0x4,0x3e,0x0,0x20,0x4,0x3f,0x4,0x35,0x4,0x40,0x4,0x41,0x4,0x3e,0x4,0x3d,
- 0x4,0x30,0x4,0x36,0x4,0x30,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x60,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x63,0x75,0x72,
- 0x72,0x65,0x6e,0x74,0x6c,0x79,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,
- 0x69,0x6e,0x69,0x73,0x77,0x61,0x70,0x20,0x66,0x72,0x6f,0x6d,0x20,0x74,0x68,0x65,
- 0x20,0x6c,0x69,0x73,0x74,0x20,0x61,0x6e,0x64,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,
- 0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,
- 0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x20,0x66,0x6f,0x6c,0x64,0x65,
- 0x72,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,
- 0x1,0x3,0x0,0x0,0x0,0x44,0x4,0x23,0x4,0x34,0x4,0x30,0x4,0x3b,0x4,0x38,
- 0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x32,0x4,0x4b,0x4,0x31,0x4,0x40,0x4,0x30,
- 0x4,0x3d,0x4,0x3d,0x4,0x4b,0x4,0x39,0x0,0x20,0x4,0x37,0x4,0x32,0x4,0x43,
- 0x4,0x3a,0x4,0x3e,0x4,0x32,0x4,0x3e,0x4,0x39,0x0,0x20,0x4,0x4d,0x4,0x44,
- 0x4,0x44,0x4,0x35,0x4,0x3a,0x4,0x42,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x2b,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x63,
- 0x75,0x72,0x72,0x65,0x6e,0x74,0x6c,0x79,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,
- 0x64,0x20,0x73,0x6f,0x75,0x6e,0x64,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x2e,0x7,
- 0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,
- 0x0,0x0,0x4a,0x4,0x1f,0x4,0x40,0x4,0x38,0x4,0x32,0x4,0x3b,0x4,0x35,0x4,
- 0x47,0x4,0x4c,0x0,0x20,0x4,0x32,0x4,0x3d,0x4,0x38,0x4,0x3c,0x4,0x30,0x4,
- 0x3d,0x4,0x38,0x4,0x35,0x0,0x20,0x4,0x3c,0x4,0x3e,0x4,0x34,0x4,0x35,0x4,
- 0x40,0x4,0x30,0x4,0x42,0x4,0x3e,0x4,0x40,0x4,0x30,0x0,0x20,0x4,0x41,0x4,
- 0x35,0x4,0x40,0x4,0x32,0x4,0x35,0x4,0x40,0x4,0x30,0x0,0x2e,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x38,0x52,0x65,0x71,0x75,0x65,0x73,0x74,0x20,0x74,
- 0x68,0x65,0x20,0x61,0x74,0x74,0x65,0x6e,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x66,0x20,
- 0x74,0x68,0x65,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x73,0x65,0x72,0x76,
- 0x65,0x72,0x27,0x73,0x20,0x6d,0x6f,0x64,0x65,0x72,0x61,0x74,0x6f,0x72,0x2e,0x7,
- 0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,
- 0x0,0x0,0x3c,0x4,0x21,0x4,0x31,0x4,0x40,0x4,0x3e,0x4,0x41,0x4,0x38,0x4,
- 0x42,0x4,0x4c,0x0,0x20,0x4,0x44,0x4,0x3e,0x4,0x3d,0x0,0x20,0x4,0x32,0x4,
- 0x30,0x4,0x48,0x4,0x35,0x4,0x33,0x4,0x3e,0x0,0x20,0x4,0x3f,0x4,0x35,0x4,
- 0x40,0x4,0x41,0x4,0x3e,0x4,0x3d,0x4,0x30,0x4,0x36,0x4,0x30,0x0,0x2e,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3f,0x52,0x65,0x73,0x65,0x74,0x20,0x79,
- 0x6f,0x75,0x72,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x27,0x73,0x20,
- 0x73,0x75,0x70,0x70,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x61,0x72,0x79,0x20,0x62,0x61,
- 0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x20,0x74,0x6f,0x20,0x69,0x74,0x73,0x20,
- 0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,
- 0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x38,0x4,0x12,0x4,0x35,
- 0x4,0x40,0x4,0x3d,0x4,0x43,0x4,0x42,0x4,0x4c,0x4,0x41,0x4,0x4f,0x0,0x20,
- 0x4,0x3a,0x0,0x20,0x4,0x41,0x4,0x3f,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x43,
- 0x0,0x20,0x4,0x41,0x4,0x35,0x4,0x40,0x4,0x32,0x4,0x35,0x4,0x40,0x4,0x3e,
- 0x4,0x32,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1f,0x52,0x65,
- 0x74,0x75,0x72,0x6e,0x20,0x62,0x61,0x63,0x6b,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,
- 0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x20,0x6c,0x69,0x73,0x74,0x2e,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0x2a,0x4,0x21,0x4,0x3e,0x4,0x45,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x38,0x4,
- 0x42,0x4,0x4c,0x0,0x20,0x4,0x41,0x4,0x3f,0x4,0x38,0x4,0x41,0x4,0x3e,0x4,
- 0x3a,0x0,0x20,0x4,0x43,0x4,0x3b,0x4,0x38,0x4,0x3a,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0xe,0x53,0x61,0x76,0x65,0x20,0x49,0x6e,0x76,0x65,0x6e,0x74,
- 0x6f,0x72,0x79,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0x8a,0x4,0x21,0x4,0x3e,0x4,0x45,0x4,0x40,0x4,
- 0x30,0x4,0x3d,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x32,0x4,0x41,0x4,
- 0x35,0x0,0x20,0x4,0x38,0x4,0x37,0x4,0x3c,0x4,0x35,0x4,0x3d,0x4,0x35,0x4,
- 0x3d,0x4,0x38,0x4,0x4f,0x0,0x2c,0x0,0x20,0x4,0x32,0x4,0x3d,0x4,0x35,0x4,
- 0x41,0x4,0x51,0x4,0x3d,0x4,0x3d,0x4,0x4b,0x4,0x35,0x0,0x20,0x4,0x32,0x0,
- 0x20,0x4,0x43,0x4,0x3b,0x4,0x38,0x4,0x3a,0x4,0x43,0x0,0x2c,0x0,0x20,0x4,
- 0x38,0x0,0x20,0x4,0x3e,0x4,0x42,0x4,0x3f,0x4,0x40,0x4,0x30,0x4,0x32,0x4,
- 0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x35,0x4,0x51,0x0,0x20,0x4,0x3d,0x4,
- 0x30,0x0,0x20,0x4,0x41,0x4,0x35,0x4,0x40,0x4,0x32,0x4,0x35,0x4,0x40,0x0,
- 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x48,0x53,0x61,0x76,0x65,0x20,
- 0x61,0x6e,0x79,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x73,0x20,0x6d,0x61,0x64,0x65,
- 0x20,0x74,0x6f,0x20,0x74,0x68,0x69,0x73,0x20,0x70,0x69,0x65,0x63,0x65,0x20,0x6f,
- 0x66,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x61,0x6e,0x64,0x20,0x73,
- 0x65,0x6e,0x64,0x20,0x74,0x68,0x65,0x6d,0x20,0x74,0x6f,0x20,0x73,0x65,0x72,0x76,
- 0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0x38,0x4,0x21,0x4,0x3e,0x4,0x45,0x4,0x40,0x4,
- 0x30,0x4,0x3d,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x43,0x4,0x3b,0x4,
- 0x38,0x4,0x3a,0x4,0x43,0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x44,0x4,0x30,0x4,
- 0x39,0x4,0x3b,0x0,0x20,0x0,0x2e,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x2e,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x53,0x61,0x76,0x65,0x20,0x65,0x76,
- 0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x2e,0x69,0x6e,
- 0x69,0x20,0x66,0x69,0x6c,0x65,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xa,0x4,0x1f,0x4,0x3e,0x4,
- 0x38,0x4,0x41,0x4,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53,
- 0x65,0x61,0x72,0x63,0x68,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,
- 0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x64,0x4,0x12,0x4,0x4b,0x4,0x31,0x4,
- 0x35,0x4,0x40,0x4,0x38,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x35,0x4,
- 0x40,0x4,0x41,0x4,0x3e,0x4,0x3d,0x4,0x30,0x4,0x36,0x4,0x30,0x0,0x2c,0x0,
- 0x20,0x4,0x40,0x4,0x4f,0x4,0x34,0x4,0x3e,0x4,0x3c,0x0,0x20,0x4,0x41,0x0,
- 0x20,0x4,0x3a,0x4,0x3e,0x4,0x42,0x4,0x3e,0x4,0x40,0x4,0x4b,0x4,0x3c,0x0,
- 0x20,0x4,0x45,0x4,0x3e,0x4,0x42,0x4,0x38,0x4,0x42,0x4,0x35,0x0,0x20,0x4,
- 0x32,0x4,0x41,0x4,0x42,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x2e,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x29,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x61,0x20,
- 0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x20,0x79,0x6f,0x75,0x20,0x77,0x69,
- 0x73,0x68,0x20,0x74,0x6f,0x20,0x70,0x61,0x69,0x72,0x20,0x77,0x69,0x74,0x68,0x2e,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0xc,0x4,0x21,0x4,0x35,0x4,0x40,0x4,0x32,0x4,0x35,0x4,0x40,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53,0x65,0x72,0x76,0x65,0x72,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x2,0x96,0x4,0x12,0x4,0x4b,0x4,0x31,0x4,0x35,0x4,0x40,0x4,0x38,
- 0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x37,0x4,0x32,0x4,0x43,0x4,0x3a,0x0,0x2c,
- 0x0,0x20,0x4,0x3a,0x4,0x3e,0x4,0x42,0x4,0x3e,0x4,0x40,0x4,0x4b,0x4,0x39,
- 0x0,0x20,0x4,0x3d,0x4,0x43,0x4,0x36,0x4,0x3d,0x4,0x3e,0x0,0x20,0x4,0x32,
- 0x4,0x3e,0x4,0x41,0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,0x38,0x4,0x37,0x4,0x32,
- 0x4,0x35,0x4,0x41,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x41,0x4,0x3e,0x0,0x20,
- 0x4,0x41,0x4,0x3b,0x4,0x35,0x4,0x34,0x4,0x43,0x4,0x4e,0x4,0x49,0x4,0x35,
- 0x4,0x39,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x35,0x4,0x34,0x0,0x2e,0x0,0x20,
- 0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x3c,0x4,0x30,0x4,0x46,0x4,0x38,0x4,0x35,
- 0x4,0x39,0x0,0x2e,0x0,0x20,0x0,0xa,0x4,0x15,0x4,0x41,0x4,0x3b,0x4,0x38,
- 0x0,0x20,0x4,0x32,0x4,0x4b,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x3e,
- 0x0,0x20,0x0,0x22,0x4,0x3f,0x4,0x3e,0x0,0x20,0x4,0x43,0x4,0x3c,0x4,0x3e,
- 0x4,0x3b,0x4,0x47,0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x4e,0x0,0x22,0x0,0x2c,
- 0x0,0x20,0x4,0x32,0x4,0x4b,0x0,0x20,0x4,0x43,0x4,0x41,0x4,0x3b,0x4,0x4b,
- 0x4,0x48,0x4,0x38,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x37,0x4,0x32,0x4,0x43,
- 0x4,0x3a,0x0,0x2c,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x34,0x4,0x30,0x4,0x3d,
- 0x4,0x3d,0x4,0x4b,0x4,0x39,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x35,0x4,0x34,
- 0x0,0x2e,0x0,0x20,0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x3c,0x4,0x30,0x4,0x46,
- 0x4,0x38,0x4,0x35,0x4,0x39,0x0,0x20,0x0,0x28,0x4,0x35,0x4,0x41,0x4,0x3b,
- 0x4,0x38,0x0,0x20,0x4,0x3e,0x4,0x3d,0x0,0x20,0x4,0x35,0x4,0x41,0x4,0x42,
- 0x4,0x4c,0x0,0x29,0x0,0x2e,0x0,0xa,0x4,0x12,0x4,0x4b,0x4,0x31,0x4,0x35,
- 0x4,0x40,0x4,0x38,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x38,0x4,0x3b,0x4,0x38,
- 0x0,0x20,0x4,0x32,0x4,0x32,0x4,0x35,0x4,0x34,0x4,0x38,0x4,0x42,0x4,0x35,
- 0x0,0x20,0x4,0x3d,0x4,0x30,0x4,0x37,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x38,
- 0x4,0x35,0x0,0x20,0x4,0x37,0x4,0x32,0x4,0x43,0x4,0x3a,0x4,0x30,0x0,0x20,
- 0x4,0x38,0x0,0x20,0x4,0x3d,0x4,0x30,0x4,0x36,0x4,0x3c,0x4,0x38,0x4,0x42,
- 0x4,0x35,0x0,0x20,0x0,0x45,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x3b,
- 0x0,0x20,0x4,0x3d,0x4,0x30,0x4,0x36,0x4,0x3c,0x4,0x38,0x4,0x42,0x4,0x35,
- 0x0,0x20,0x0,0x5b,0x0,0x58,0x0,0x5d,0x0,0x2c,0x0,0x20,0x4,0x47,0x4,0x42,
- 0x4,0x3e,0x4,0x31,0x4,0x4b,0x0,0x20,0x4,0x43,0x4,0x34,0x4,0x30,0x4,0x3b,
- 0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x2e,0x0,0x20,0x0,0xa,0x4,0x18,0x4,0x37,
- 0x4,0x3c,0x4,0x35,0x4,0x3d,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,0x20,
- 0x4,0x41,0x4,0x3e,0x4,0x45,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x4f,0x4,0x4e,
- 0x4,0x42,0x4,0x41,0x4,0x4f,0x0,0x20,0x4,0x3f,0x4,0x3e,0x0,0x20,0x4,0x41,
- 0x4,0x3b,0x4,0x35,0x4,0x34,0x4,0x43,0x4,0x4e,0x4,0x49,0x4,0x35,0x4,0x3c,
- 0x4,0x43,0x0,0x20,0x4,0x3f,0x4,0x43,0x4,0x42,0x4,0x38,0x0,0x3a,0x0,0x20,
- 0x0,0x62,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x2f,0x0,0x63,0x0,0x68,0x0,0x61,
- 0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x2f,
- 0x0,0x3c,0x4,0x38,0x4,0x3c,0x4,0x4f,0x0,0x5f,0x4,0x3f,0x4,0x35,0x4,0x40,
- 0x4,0x41,0x4,0x3e,0x4,0x3d,0x4,0x30,0x4,0x36,0x4,0x30,0x0,0x3e,0x0,0x2f,
- 0x0,0x73,0x0,0x6f,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x6c,0x0,0x69,0x0,0x73,
- 0x0,0x74,0x0,0x2e,0x0,0x69,0x0,0x6e,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0xe1,0x53,0x65,0x74,0x20,0x61,0x20,0x73,0x6f,0x75,0x6e,0x64,0x20,
- 0x65,0x66,0x66,0x65,0x63,0x74,0x20,0x74,0x6f,0x20,0x70,0x6c,0x61,0x79,0x20,0x6f,
- 0x6e,0x20,0x79,0x6f,0x75,0x72,0x20,0x6e,0x65,0x78,0x74,0x20,0x27,0x50,0x72,0x65,
- 0x61,0x6e,0x69,0x6d,0x27,0x2e,0x20,0x4c,0x65,0x61,0x76,0x69,0x6e,0x67,0x20,0x69,
- 0x74,0x20,0x6f,0x6e,0x20,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x20,0x77,0x69,0x6c,
- 0x6c,0x20,0x75,0x73,0x65,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x6f,0x74,0x65,0x2d,
- 0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x20,0x73,0x6f,0x75,0x6e,0x64,0x20,0x28,0x69,
- 0x66,0x20,0x61,0x6e,0x79,0x29,0x2e,0xa,0x45,0x64,0x69,0x74,0x20,0x62,0x79,0x20,
- 0x74,0x79,0x70,0x69,0x6e,0x67,0x20,0x61,0x6e,0x64,0x20,0x70,0x72,0x65,0x73,0x73,
- 0x69,0x6e,0x67,0x20,0x45,0x6e,0x74,0x65,0x72,0x2c,0x20,0x5b,0x58,0x5d,0x20,0x74,
- 0x6f,0x20,0x72,0x65,0x6d,0x6f,0x76,0x65,0x2e,0x20,0x54,0x68,0x69,0x73,0x20,0x73,
- 0x61,0x76,0x65,0x73,0x20,0x74,0x6f,0x20,0x79,0x6f,0x75,0x72,0x20,0x62,0x61,0x73,
- 0x65,0x2f,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x73,0x2f,0x3c,0x63,0x68,
- 0x61,0x72,0x6e,0x61,0x6d,0x65,0x3e,0x2f,0x73,0x6f,0x75,0x6e,0x64,0x6c,0x69,0x73,
- 0x74,0x2e,0x69,0x6e,0x69,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,
- 0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x1,0xce,0x4,0x12,0x4,0x3a,0x4,0x3b,0x4,
- 0x4e,0x4,0x47,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x42,0x0,0x2e,0x4,
- 0x3d,0x0,0x2e,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x34,0x4,0x3c,0x4,0x35,0x4,
- 0x3d,0x4,0x43,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x20,0x20,0x13,0x0,
- 0x20,0x4,0x30,0x4,0x3b,0x4,0x4c,0x4,0x42,0x4,0x35,0x4,0x40,0x4,0x3d,0x4,
- 0x30,0x4,0x42,0x4,0x38,0x4,0x32,0x4,0x3d,0x4,0x43,0x4,0x4e,0x0,0x20,0x4,
- 0x3f,0x4,0x30,0x4,0x3f,0x4,0x3a,0x4,0x43,0x0,0x20,0x4,0x3f,0x4,0x35,0x4,
- 0x40,0x4,0x41,0x4,0x3e,0x4,0x3d,0x4,0x30,0x4,0x36,0x4,0x30,0x0,0x2c,0x0,
- 0x20,0x4,0x3a,0x0,0x20,0x4,0x3a,0x4,0x3e,0x4,0x42,0x4,0x3e,0x4,0x40,0x4,
- 0x3e,0x4,0x39,0x0,0x20,0x4,0x31,0x4,0x43,0x4,0x34,0x4,0x35,0x4,0x42,0x0,
- 0x20,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x49,0x4,0x30,0x4,0x42,0x4,
- 0x4c,0x4,0x41,0x4,0x4f,0x0,0x20,0x4,0x42,0x4,0x35,0x4,0x3a,0x4,0x43,0x4,
- 0x49,0x4,0x38,0x4,0x39,0x0,0x20,0x4,0x3f,0x4,0x35,0x4,0x40,0x4,0x41,0x4,
- 0x3e,0x4,0x3d,0x4,0x30,0x4,0x36,0x0,0x2e,0x0,0xa,0x4,0x12,0x4,0x32,0x4,
- 0x35,0x4,0x34,0x4,0x38,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x38,0x4,0x3c,0x4,
- 0x4f,0x0,0x20,0x4,0x3f,0x4,0x35,0x4,0x40,0x4,0x41,0x4,0x3e,0x4,0x3d,0x4,
- 0x30,0x4,0x36,0x4,0x30,0x0,0x20,0x4,0x38,0x0,0x20,0x4,0x3d,0x4,0x30,0x4,
- 0x36,0x4,0x3c,0x4,0x38,0x4,0x42,0x4,0x35,0x0,0x20,0x0,0x45,0x0,0x6e,0x0,
- 0x74,0x0,0x65,0x0,0x72,0x0,0x3b,0x0,0x20,0x4,0x3d,0x4,0x30,0x4,0x36,0x4,
- 0x3c,0x4,0x38,0x4,0x42,0x4,0x35,0x0,0x20,0x0,0x5b,0x0,0x58,0x0,0x5d,0x0,
- 0x2c,0x0,0x20,0x4,0x47,0x4,0x42,0x4,0x3e,0x4,0x31,0x4,0x4b,0x0,0x20,0x4,
- 0x43,0x4,0x34,0x4,0x30,0x4,0x3b,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x2e,0x0,
- 0xa,0x4,0x18,0x4,0x37,0x4,0x3c,0x4,0x35,0x4,0x3d,0x4,0x35,0x4,0x3d,0x4,
- 0x38,0x4,0x4f,0x0,0x20,0x4,0x41,0x4,0x3e,0x4,0x45,0x4,0x40,0x4,0x30,0x4,
- 0x3d,0x4,0x4f,0x4,0x4e,0x4,0x42,0x4,0x41,0x4,0x4f,0x0,0x20,0x4,0x3f,0x4,
- 0x3e,0x0,0x20,0x4,0x41,0x4,0x3b,0x4,0x35,0x4,0x34,0x4,0x43,0x4,0x4e,0x4,
- 0x49,0x4,0x35,0x4,0x3c,0x4,0x43,0x0,0x20,0x4,0x3f,0x4,0x43,0x4,0x42,0x4,
- 0x38,0x0,0x3a,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x2f,0x0,
- 0x69,0x0,0x6e,0x0,0x69,0x0,0x73,0x0,0x77,0x0,0x61,0x0,0x70,0x0,0x73,0x0,
- 0x2e,0x0,0x69,0x0,0x6e,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0xb4,0x53,0x65,0x74,0x20,0x61,0x6e,0x20,0x27,0x69,0x6e,0x69,0x73,0x77,0x61,0x70,
- 0x27,0x2c,0x20,0x6f,0x72,0x20,0x61,0x6e,0x20,0x61,0x6c,0x74,0x65,0x72,0x6e,0x61,
- 0x74,0x69,0x76,0x65,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x20,0x66,
- 0x6f,0x6c,0x64,0x65,0x72,0x20,0x74,0x6f,0x20,0x72,0x65,0x66,0x65,0x72,0x20,0x74,
- 0x6f,0x20,0x66,0x72,0x6f,0x6d,0x20,0x79,0x6f,0x75,0x72,0x20,0x63,0x75,0x72,0x72,
- 0x65,0x6e,0x74,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x2e,0xa,0x45,
- 0x64,0x69,0x74,0x20,0x62,0x79,0x20,0x74,0x79,0x70,0x69,0x6e,0x67,0x20,0x61,0x6e,
- 0x64,0x20,0x70,0x72,0x65,0x73,0x73,0x69,0x6e,0x67,0x20,0x45,0x6e,0x74,0x65,0x72,
- 0x2c,0x20,0x5b,0x58,0x5d,0x20,0x74,0x6f,0x20,0x72,0x65,0x6d,0x6f,0x76,0x65,0x2e,
- 0x20,0x54,0x68,0x69,0x73,0x20,0x73,0x61,0x76,0x65,0x73,0x20,0x74,0x6f,0x20,0x79,
- 0x6f,0x75,0x72,0x20,0x62,0x61,0x73,0x65,0x2f,0x69,0x6e,0x69,0x73,0x77,0x61,0x70,
- 0x73,0x2e,0x69,0x6e,0x69,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,
- 0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x8e,0x4,0x12,0x4,0x4b,0x4,0x31,0x4,
- 0x35,0x4,0x40,0x4,0x38,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x4d,0x4,0x3c,0x4,
- 0x3e,0x4,0x46,0x4,0x38,0x4,0x4e,0x0,0x20,0x4,0x34,0x4,0x3b,0x4,0x4f,0x0,
- 0x20,0x4,0x3e,0x4,0x42,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x36,0x4,
- 0x35,0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x38,0x0,
- 0x20,0x4,0x32,0x4,0x4b,0x4,0x32,0x4,0x3e,0x4,0x34,0x4,0x35,0x0,0x20,0x4,
- 0x32,0x4,0x30,0x4,0x48,0x4,0x35,0x4,0x33,0x4,0x3e,0x0,0x20,0x4,0x41,0x4,
- 0x3b,0x4,0x35,0x4,0x34,0x4,0x43,0x4,0x4e,0x4,0x49,0x4,0x35,0x4,0x33,0x4,
- 0x3e,0x0,0x20,0x4,0x41,0x4,0x3e,0x4,0x3e,0x4,0x31,0x4,0x49,0x4,0x35,0x4,
- 0x3d,0x4,0x38,0x4,0x4f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x38,0x53,0x65,0x74,0x20,0x79,0x6f,0x75,0x72,0x20,0x63,0x68,0x61,0x72,0x61,0x63,
- 0x74,0x65,0x72,0x27,0x73,0x20,0x65,0x6d,0x6f,0x74,0x65,0x20,0x74,0x6f,0x20,0x70,
- 0x6c,0x61,0x79,0x20,0x6f,0x6e,0x20,0x79,0x6f,0x75,0x72,0x20,0x6e,0x65,0x78,0x74,
- 0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,
- 0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x48,0x4,0x23,0x4,
- 0x41,0x4,0x42,0x4,0x30,0x4,0x3d,0x4,0x3e,0x4,0x32,0x4,0x38,0x4,0x42,0x4,
- 0x4c,0x0,0x20,0x4,0x44,0x4,0x3e,0x4,0x3d,0x0,0x20,0x4,0x34,0x4,0x3b,0x4,
- 0x4f,0x0,0x20,0x4,0x32,0x4,0x30,0x4,0x48,0x4,0x35,0x4,0x33,0x4,0x3e,0x0,
- 0x20,0x4,0x3f,0x4,0x35,0x4,0x40,0x4,0x41,0x4,0x3e,0x4,0x3d,0x4,0x30,0x4,
- 0x36,0x4,0x30,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x53,
- 0x65,0x74,0x20,0x79,0x6f,0x75,0x72,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,
- 0x72,0x27,0x73,0x20,0x73,0x75,0x70,0x70,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x61,0x72,
- 0x79,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2e,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0x12,0x4,0x1d,0x4,0x30,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x39,0x4,
- 0x3a,0x4,0x38,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x74,
- 0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,
- 0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x1a,0x4,0x17,0x4,0x32,0x4,0x43,0x4,
- 0x3a,0x0,0x2e,0x0,0x20,0x4,0x4d,0x4,0x44,0x4,0x44,0x4,0x35,0x4,0x3a,0x4,
- 0x42,0x4,0x4b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x53,0x66,0x78,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0x62,0x4,0x1f,0x4,0x3e,0x4,0x42,0x4,0x40,0x4,0x4f,0x4,0x41,
- 0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x4d,0x4,0x3a,0x4,0x40,0x4,0x30,0x4,0x3d,
- 0x0,0x20,0x4,0x32,0x4,0x3e,0x0,0x20,0x4,0x32,0x4,0x40,0x4,0x35,0x4,0x3c,
- 0x4,0x4f,0x0,0x20,0x4,0x32,0x4,0x4b,0x4,0x32,0x4,0x3e,0x4,0x34,0x4,0x30,
- 0x0,0x20,0x4,0x41,0x4,0x3b,0x4,0x35,0x4,0x34,0x4,0x43,0x4,0x4e,0x4,0x49,
- 0x4,0x35,0x4,0x39,0x0,0x20,0x4,0x40,0x4,0x35,0x4,0x3f,0x4,0x3b,0x4,0x38,
- 0x4,0x3a,0x4,0x38,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x35,
- 0x53,0x68,0x61,0x6b,0x65,0x20,0x74,0x68,0x65,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,
- 0x20,0x6f,0x6e,0x20,0x6e,0x65,0x78,0x74,0x20,0x73,0x70,0x6f,0x6b,0x65,0x6e,0x20,
- 0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x77,0x68,0x65,0x6e,0x20,0x63,0x68,0x65,
- 0x63,0x6b,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,
- 0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x6,0x4,0x18,0x4,0x3c,0x4,0x4f,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x68,0x6f,0x77,0x6e,0x61,0x6d,
- 0x65,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,
- 0x3,0x0,0x0,0x0,0x18,0x4,0x1f,0x4,0x3e,0x4,0x3b,0x4,0x4c,0x4,0x37,0x0,
- 0x2e,0x0,0x20,0x4,0x38,0x4,0x3c,0x4,0x35,0x4,0x3d,0x4,0x30,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x53,0x68,0x6f,0x77,0x6e,0x61,0x6d,0x65,0x73,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0xe,0x4,0x17,0x4,0x40,0x4,0x38,0x4,0x42,0x4,0x35,0x4,0x3b,
- 0x4,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x53,0x70,0x65,0x63,
- 0x74,0x61,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,
- 0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x36,0x4,0x1f,0x4,0x40,0x4,0x35,0x4,
- 0x40,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x42,0x4,0x35,0x4,
- 0x3a,0x4,0x43,0x4,0x49,0x4,0x43,0x4,0x4e,0x0,0x20,0x4,0x3a,0x4,0x3e,0x4,
- 0x3c,0x4,0x3f,0x4,0x3e,0x4,0x37,0x4,0x38,0x4,0x46,0x4,0x38,0x4,0x4e,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x53,0x74,0x6f,0x70,0x20,0x43,0x75,
- 0x72,0x72,0x65,0x6e,0x74,0x20,0x53,0x6f,0x6e,0x67,0x7,0x0,0x0,0x0,0x9,0x43,
- 0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x92,0x4,0x21,
- 0x4,0x3e,0x4,0x45,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x35,0x4,0x3d,0x4,0x38,
- 0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,0x48,0x4,0x3b,0x4,0x3e,
- 0x0,0x20,0x4,0x43,0x4,0x41,0x4,0x3f,0x4,0x35,0x4,0x48,0x4,0x3d,0x4,0x3e,
- 0x0,0x2e,0x0,0x20,0x4,0x21,0x4,0x41,0x4,0x4b,0x4,0x3b,0x4,0x3a,0x4,0x38,
- 0x0,0x20,0x4,0x3d,0x4,0x30,0x0,0x20,0x4,0x34,0x4,0x3e,0x4,0x3a,0x4,0x43,
- 0x4,0x3c,0x4,0x35,0x4,0x3d,0x4,0x42,0x4,0x4b,0x0,0x20,0x4,0x3c,0x4,0x3e,
- 0x4,0x36,0x4,0x3d,0x4,0x3e,0x0,0x20,0x4,0x40,0x4,0x35,0x4,0x34,0x4,0x30,
- 0x4,0x3a,0x4,0x42,0x4,0x38,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x42,
- 0x4,0x4c,0x0,0x20,0x4,0x32,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x2e,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x36,0x53,0x75,0x63,0x63,0x65,0x73,
- 0x66,0x75,0x6c,0x6c,0x79,0x20,0x73,0x61,0x76,0x65,0x64,0x2c,0x20,0x65,0x64,0x69,
- 0x74,0x20,0x64,0x6f,0x63,0x20,0x61,0x6e,0x64,0x20,0x63,0x6d,0x64,0x6f,0x63,0x20,
- 0x6c,0x69,0x6e,0x6b,0x20,0x6f,0x6e,0x20,0x74,0x68,0x65,0x20,0x69,0x6e,0x69,0x21,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0x5c,0x4,0x1f,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x3a,0x4,0x3b,
- 0x4,0x4e,0x4,0x47,0x4,0x38,0x4,0x42,0x4,0x4c,0x4,0x41,0x4,0x4f,0x0,0x20,
- 0x4,0x3c,0x4,0x35,0x4,0x36,0x4,0x34,0x4,0x43,0x0,0x20,0x4,0x41,0x4,0x3f,
- 0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x30,0x4,0x3c,0x4,0x38,0x0,0x20,0x4,0x3c,
- 0x4,0x43,0x4,0x37,0x4,0x4b,0x4,0x3a,0x4,0x38,0x0,0x20,0x4,0x38,0x0,0x20,
- 0x4,0x3b,0x4,0x3e,0x4,0x3a,0x4,0x30,0x4,0x46,0x4,0x38,0x4,0x39,0x0,0x2e,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x53,0x77,0x69,0x74,0x63,0x68,
- 0x20,0x62,0x65,0x74,0x77,0x65,0x65,0x6e,0x20,0x41,0x72,0x65,0x61,0x73,0x20,0x61,
- 0x6e,0x64,0x20,0x4d,0x75,0x73,0x69,0x63,0x20,0x6c,0x69,0x73,0x74,0x73,0x7,0x0,
- 0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,
- 0x0,0x30,0x4,0x1f,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x39,0x4,0x42,0x4,0x38,
- 0x0,0x20,0x4,0x3a,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x49,0x4,0x35,0x4,0x3c,
- 0x4,0x43,0x0,0x20,0x4,0x41,0x4,0x3f,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x43,
- 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x53,0x77,0x69,0x74,
- 0x63,0x68,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x74,0x6f,0x20,0x67,
- 0x6c,0x6f,0x62,0x61,0x6c,0x20,0x69,0x6e,0x76,0x65,0x6e,0x74,0x6f,0x72,0x79,0x2e,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0x30,0x4,0x1f,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x39,0x4,0x42,
- 0x4,0x38,0x0,0x20,0x4,0x3a,0x0,0x20,0x4,0x41,0x4,0x32,0x4,0x3e,0x4,0x35,
- 0x4,0x3c,0x4,0x43,0x0,0x20,0x4,0x41,0x4,0x3f,0x4,0x38,0x4,0x41,0x4,0x3a,
- 0x4,0x43,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x25,0x53,0x77,
- 0x69,0x74,0x63,0x68,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x74,0x6f,
- 0x20,0x70,0x72,0x69,0x76,0x61,0x74,0x65,0x20,0x69,0x6e,0x76,0x65,0x6e,0x74,0x6f,
- 0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x21,0x4,0x38,0x4,0x3d,0x4,0x45,0x4,
- 0x40,0x4,0x3e,0x4,0x3d,0x4,0x38,0x4,0x37,0x4,0x38,0x4,0x40,0x4,0x3e,0x4,
- 0x32,0x4,0x30,0x4,0x42,0x4,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0xb,0x53,0x79,0x6e,0x63,0x68,0x72,0x6f,0x6e,0x69,0x7a,0x65,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x8,
- 0x4,0x12,0x4,0x1e,0x4,0x22,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0xa,0x54,0x41,0x4b,0x45,0x20,0x54,0x48,0x41,0x54,0x21,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x8,
- 0x4,0x12,0x4,0x3e,0x4,0x42,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0xa,0x54,0x61,0x6b,0x65,0x20,0x54,0x68,0x61,0x74,0x21,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xa,
- 0x4,0x17,0x4,0x30,0x4,0x3d,0x4,0x4f,0x4,0x42,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x5,0x54,0x61,0x6b,0x65,0x6e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,
- 0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x34,0x4,0x21,0x4,
- 0x3b,0x4,0x38,0x4,0x48,0x4,0x3a,0x4,0x3e,0x4,0x3c,0x0,0x20,0x4,0x34,0x4,
- 0x3b,0x4,0x38,0x4,0x3d,0x4,0x3d,0x4,0x3e,0x4,0x35,0x0,0x20,0x4,0x41,0x4,
- 0x3e,0x4,0x3e,0x4,0x31,0x4,0x49,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x35,0x0,
- 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x54,0x68,0x65,0x20,0x6d,
- 0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x69,0x73,0x20,0x74,0x6f,0x6f,0x20,0x6c,0x6f,
- 0x6e,0x67,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0x74,0x4,0x12,0x0,0x20,0x4,0x43,0x4,0x3b,0x4,
- 0x38,0x4,0x3a,0x4,0x43,0x0,0x2c,0x0,0x20,0x4,0x3a,0x4,0x3e,0x4,0x42,0x4,
- 0x3e,0x4,0x40,0x4,0x43,0x4,0x4e,0x0,0x20,0x4,0x32,0x4,0x4b,0x0,0x20,0x4,
- 0x40,0x4,0x35,0x4,0x34,0x4,0x30,0x4,0x3a,0x4,0x42,0x4,0x38,0x4,0x40,0x4,
- 0x3e,0x4,0x32,0x4,0x30,0x4,0x3b,0x4,0x38,0x0,0x2c,0x0,0x20,0x4,0x31,0x4,
- 0x4b,0x4,0x3b,0x4,0x38,0x0,0x20,0x4,0x32,0x4,0x3d,0x4,0x35,0x4,0x41,0x4,
- 0x35,0x4,0x3d,0x4,0x4b,0x0,0x20,0x4,0x38,0x4,0x37,0x4,0x3c,0x4,0x35,0x4,
- 0x3d,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x36,0x54,0x68,0x65,0x20,0x70,0x69,0x65,0x63,0x65,0x20,0x6f,
- 0x66,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x79,0x6f,0x75,0x27,0x76,
- 0x65,0x20,0x62,0x65,0x65,0x6e,0x20,0x65,0x64,0x69,0x74,0x69,0x6e,0x67,0x20,0x68,
- 0x61,0x73,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x76,0x4,
- 0x10,0x4,0x3d,0x4,0x38,0x4,0x3c,0x4,0x30,0x4,0x46,0x4,0x38,0x4,0x4f,0x0,
- 0x20,0x4,0x31,0x4,0x43,0x4,0x34,0x4,0x35,0x4,0x42,0x0,0x20,0x4,0x3f,0x4,
- 0x3e,0x4,0x3a,0x4,0x30,0x4,0x37,0x4,0x30,0x4,0x3d,0x4,0x30,0x0,0x20,0x4,
- 0x32,0x0,0x20,0x4,0x38,0x4,0x33,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x3e,0x4,
- 0x3c,0x0,0x20,0x4,0x47,0x4,0x30,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x41,0x4,
- 0x40,0x4,0x30,0x4,0x37,0x4,0x43,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x41,0x4,
- 0x3b,0x4,0x35,0x0,0x20,0x4,0x3d,0x4,0x30,0x4,0x36,0x4,0x30,0x4,0x42,0x4,
- 0x38,0x4,0x4f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x49,0x54,
- 0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,
- 0x20,0x74,0x68,0x65,0x20,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x20,0x69,
- 0x6e,0x20,0x74,0x68,0x65,0x20,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x20,0x61,
- 0x73,0x20,0x73,0x6f,0x6f,0x6e,0x20,0x61,0x73,0x20,0x69,0x74,0x20,0x69,0x73,0x20,
- 0x70,0x72,0x65,0x73,0x73,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,
- 0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x1,0x7c,0x4,0x1f,0x4,0x3e,
- 0x4,0x3a,0x4,0x30,0x4,0x37,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x32,
- 0x0,0x20,0x4,0x38,0x4,0x33,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x3e,0x4,0x3c,
- 0x0,0x20,0x4,0x47,0x4,0x30,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x43,0x4,0x3d,
- 0x4,0x38,0x4,0x3a,0x4,0x30,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x43,0x4,0x4e,
- 0x0,0x20,0x4,0x34,0x4,0x3b,0x4,0x4f,0x0,0x20,0x4,0x3f,0x4,0x35,0x4,0x40,
- 0x4,0x41,0x4,0x3e,0x4,0x3d,0x4,0x30,0x4,0x36,0x4,0x30,0x0,0x20,0x4,0x30,
- 0x4,0x3d,0x4,0x38,0x4,0x3c,0x4,0x30,0x4,0x46,0x4,0x38,0x4,0x4e,0x0,0x20,
- 0x4,0x41,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x43,0x0,0x20,0x4,0x3f,0x4,0x3e,
- 0x4,0x41,0x4,0x3b,0x4,0x35,0x0,0x20,0x4,0x3d,0x4,0x30,0x4,0x36,0x4,0x30,
- 0x4,0x42,0x4,0x38,0x4,0x4f,0x0,0x2e,0x0,0xa,0x4,0x14,0x4,0x3b,0x4,0x4f,
- 0x0,0x20,0x4,0x34,0x4,0x3e,0x4,0x31,0x4,0x30,0x4,0x32,0x4,0x3b,0x4,0x35,
- 0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,0x20,0x4,0x42,0x4,0x30,0x4,0x3a,0x4,0x3e,
- 0x4,0x39,0x0,0x20,0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x3c,0x4,0x30,0x4,0x46,
- 0x4,0x38,0x4,0x38,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x3c,0x4,0x35,0x4,0x41,
- 0x4,0x42,0x4,0x38,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x3f,
- 0x4,0x30,0x4,0x3f,0x4,0x3a,0x4,0x43,0x0,0x20,0x4,0x3f,0x4,0x35,0x4,0x40,
- 0x4,0x41,0x4,0x3e,0x4,0x3d,0x4,0x30,0x4,0x36,0x4,0x30,0x0,0x20,0x4,0x44,
- 0x4,0x30,0x4,0x39,0x4,0x3b,0x4,0x4b,0x0,0x20,0x0,0x63,0x0,0x75,0x0,0x73,
- 0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0x2e,0x0,0x77,0x0,0x65,0x0,0x62,0x0,0x70,
- 0x0,0x2f,0x0,0x61,0x0,0x70,0x0,0x6e,0x0,0x67,0x0,0x2f,0x0,0x67,0x0,0x69,
- 0x0,0x66,0x0,0x2f,0x0,0x70,0x0,0x6e,0x0,0x67,0x0,0x20,0x4,0x38,0x0,0x20,
- 0x0,0x63,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0x2e,0x0,0x77,
- 0x0,0x61,0x0,0x76,0x0,0x2f,0x0,0x6f,0x0,0x67,0x0,0x67,0x0,0x2f,0x0,0x6f,
- 0x0,0x70,0x0,0x75,0x0,0x73,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0xd6,0x54,0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x64,0x69,0x73,0x70,
- 0x6c,0x61,0x79,0x20,0x74,0x68,0x65,0x20,0x63,0x75,0x73,0x74,0x6f,0x6d,0x20,0x63,
- 0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x2d,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,
- 0x20,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x20,0x69,0x6e,0x20,0x74,0x68,
- 0x65,0x20,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x20,0x61,0x73,0x20,0x73,0x6f,
- 0x6f,0x6e,0x20,0x61,0x73,0x20,0x69,0x74,0x20,0x69,0x73,0x20,0x70,0x72,0x65,0x73,
- 0x73,0x65,0x64,0x2e,0xa,0x54,0x6f,0x20,0x6d,0x61,0x6b,0x65,0x20,0x6f,0x6e,0x65,
- 0x2c,0x20,0x79,0x6f,0x75,0x72,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,
- 0x27,0x73,0x20,0x66,0x6f,0x6c,0x64,0x65,0x72,0x20,0x6d,0x75,0x73,0x74,0x20,0x63,
- 0x6f,0x6e,0x74,0x61,0x69,0x6e,0x20,0x63,0x75,0x73,0x74,0x6f,0x6d,0x2e,0x5b,0x77,
- 0x65,0x62,0x70,0x2f,0x61,0x70,0x6e,0x67,0x2f,0x67,0x69,0x66,0x2f,0x70,0x6e,0x67,
- 0x5d,0x20,0x61,0x6e,0x64,0x20,0x63,0x75,0x73,0x74,0x6f,0x6d,0x2e,0x5b,0x77,0x61,
- 0x76,0x2f,0x6f,0x67,0x67,0x2f,0x6f,0x70,0x75,0x73,0x5d,0x20,0x73,0x6f,0x75,0x6e,
- 0x64,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,
- 0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xa,0x4,0x21,0x4,0x37,
- 0x4,0x30,0x4,0x34,0x4,0x38,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,
- 0x54,0x6f,0x20,0x62,0x65,0x68,0x69,0x6e,0x64,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,
- 0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xe,0x4,0x21,0x4,
- 0x3f,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x34,0x4,0x38,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x8,0x54,0x6f,0x20,0x66,0x72,0x6f,0x6e,0x74,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0x68,0x4,0x1f,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x3a,0x4,0x3b,0x4,0x4e,0x4,
- 0x47,0x4,0x30,0x4,0x42,0x4,0x35,0x4,0x3b,0x4,0x4c,0x0,0x20,0x4,0x3c,0x4,
- 0x35,0x4,0x36,0x4,0x34,0x4,0x43,0x0,0x20,0x4,0x47,0x4,0x30,0x4,0x42,0x4,
- 0x3e,0x4,0x3c,0x0,0x20,0x4,0x41,0x4,0x35,0x4,0x40,0x4,0x32,0x4,0x35,0x4,
- 0x40,0x4,0x30,0x0,0x20,0x4,0x38,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x49,0x4,
- 0x38,0x4,0x3c,0x0,0x20,0x4,0x47,0x4,0x30,0x4,0x42,0x4,0x3e,0x4,0x3c,0x0,
- 0x20,0x0,0x41,0x0,0x4f,0x0,0x32,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x2f,0x54,0x6f,0x67,0x67,0x6c,0x65,0x20,0x62,0x65,0x74,0x77,0x65,0x65,
- 0x6e,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x20,0x63,0x68,0x61,0x74,0x20,0x61,0x6e,
- 0x64,0x20,0x67,0x6c,0x6f,0x62,0x61,0x6c,0x20,0x41,0x4f,0x32,0x20,0x63,0x68,0x61,
- 0x74,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,
- 0x1,0x3,0x0,0x0,0x0,0x78,0x4,0x1d,0x4,0x35,0x0,0x20,0x4,0x43,0x4,0x34,
- 0x4,0x30,0x4,0x3b,0x4,0x3e,0x4,0x41,0x4,0x4c,0x0,0x20,0x4,0x37,0x4,0x30,
- 0x4,0x33,0x4,0x40,0x4,0x43,0x4,0x37,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,
- 0x4,0x34,0x4,0x35,0x4,0x3b,0x4,0x3e,0x0,0x21,0x0,0x20,0x4,0x12,0x4,0x32,
- 0x4,0x35,0x4,0x34,0x4,0x38,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x38,0x4,0x3c,
- 0x4,0x4f,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4,0x3b,0x4,0x30,0x0,0x20,
- 0x4,0x31,0x4,0x35,0x4,0x37,0x0,0x20,0x4,0x40,0x4,0x30,0x4,0x41,0x4,0x48,
- 0x4,0x38,0x4,0x40,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,0x2e,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x51,0x54,0x6f,0x6f,0x20,0x6d,0x61,0x6e,0x79,
- 0x20,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x20,0x74,0x6f,0x20,0x6c,0x6f,
- 0x61,0x64,0x20,0x61,0x20,0x63,0x61,0x73,0x65,0x21,0x20,0x59,0x6f,0x75,0x20,0x6f,
- 0x6e,0x6c,0x79,0x20,0x6e,0x65,0x65,0x64,0x20,0x6f,0x6e,0x65,0x20,0x66,0x69,0x6c,
- 0x65,0x6e,0x61,0x6d,0x65,0x2c,0x20,0x77,0x69,0x74,0x68,0x6f,0x75,0x74,0x20,0x65,
- 0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,
- 0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x94,0x4,0x23,0x4,
- 0x31,0x4,0x35,0x4,0x34,0x4,0x38,0x4,0x42,0x4,0x35,0x4,0x41,0x4,0x4c,0x0,
- 0x2c,0x0,0x20,0x4,0x47,0x4,0x42,0x4,0x3e,0x0,0x20,0x4,0x38,0x4,0x3c,0x4,
- 0x4f,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4,0x3b,0x4,0x30,0x0,0x20,0x4,
- 0x32,0x4,0x32,0x4,0x35,0x4,0x34,0x4,0x35,0x4,0x3d,0x4,0x3e,0x0,0x20,0x4,
- 0x31,0x4,0x35,0x4,0x37,0x0,0x20,0x4,0x40,0x4,0x30,0x4,0x41,0x4,0x48,0x4,
- 0x38,0x4,0x40,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,0x20,0x4,0x38,0x0,
- 0x20,0x4,0x43,0x4,0x3a,0x4,0x30,0x4,0x37,0x4,0x30,0x4,0x3d,0x0,0x20,0x4,
- 0x41,0x4,0x42,0x4,0x30,0x4,0x42,0x4,0x43,0x4,0x41,0x0,0x20,0x4,0x37,0x4,
- 0x30,0x4,0x3b,0x4,0x30,0x0,0x20,0x4,0x41,0x4,0x43,0x4,0x34,0x4,0x30,0x0,
- 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x67,0x54,0x6f,0x6f,0x20,0x6d,
- 0x61,0x6e,0x79,0x20,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,0x74,0x73,0x20,0x74,0x6f,
- 0x20,0x73,0x61,0x76,0x65,0x20,0x61,0x20,0x63,0x61,0x73,0x65,0x21,0x20,0x59,0x6f,
- 0x75,0x20,0x6f,0x6e,0x6c,0x79,0x20,0x6e,0x65,0x65,0x64,0x20,0x61,0x20,0x66,0x69,
- 0x6c,0x65,0x6e,0x61,0x6d,0x65,0x20,0x77,0x69,0x74,0x68,0x6f,0x75,0x74,0x20,0x65,
- 0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64,0x20,0x74,0x68,0x65,
- 0x20,0x63,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x20,0x73,0x74,0x61,0x74,0x75,
- 0x73,0x21,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,
- 0x1,0x3,0x0,0x0,0x0,0x3e,0x4,0x1f,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x3d,
- 0x4,0x35,0x4,0x41,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x43,0x4,0x3b,0x4,0x38,
- 0x4,0x3a,0x4,0x43,0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x49,
- 0x4,0x38,0x4,0x39,0x0,0x20,0x4,0x41,0x4,0x3f,0x4,0x38,0x4,0x41,0x4,0x3e,
- 0x4,0x3a,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x26,0x54,0x72,
- 0x61,0x6e,0x73,0x66,0x65,0x72,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,
- 0x74,0x6f,0x20,0x67,0x6c,0x6f,0x62,0x61,0x6c,0x20,0x69,0x6e,0x76,0x65,0x6e,0x74,
- 0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x3c,0x4,0x1f,0x4,0x35,0x4,0x40,0x4,0x35,
- 0x4,0x3d,0x4,0x35,0x4,0x41,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x43,0x4,0x3b,
- 0x4,0x38,0x4,0x3a,0x4,0x43,0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x41,0x4,0x32,
- 0x4,0x3e,0x4,0x39,0x0,0x20,0x4,0x41,0x4,0x3f,0x4,0x38,0x4,0x41,0x4,0x3e,
- 0x4,0x3a,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x54,0x72,
- 0x61,0x6e,0x73,0x66,0x65,0x72,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,
- 0x74,0x6f,0x20,0x70,0x72,0x69,0x76,0x61,0x74,0x65,0x20,0x69,0x6e,0x76,0x65,0x6e,
- 0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,
- 0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x6,0x4,0x3d,0x0,0x2f,0x4,0x34,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x55,0x4e,0x4b,0x4e,0x4f,0x57,0x4e,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0xa8,0x4,0x1a,0x4,0x3e,0x4,0x33,0x4,0x34,0x4,0x30,0x0,0x20,
- 0x4,0x4d,0x4,0x42,0x4,0x30,0x0,0x20,0x4,0x3e,0x4,0x3f,0x4,0x46,0x4,0x38,
- 0x4,0x4f,0x0,0x20,0x4,0x32,0x4,0x3a,0x4,0x3b,0x4,0x4e,0x4,0x47,0x4,0x35,
- 0x4,0x3d,0x4,0x30,0x0,0x2c,0x0,0x20,0x4,0x32,0x4,0x30,0x4,0x48,0x4,0x35,
- 0x0,0x20,0x4,0x41,0x4,0x3b,0x4,0x35,0x4,0x34,0x4,0x43,0x4,0x4e,0x4,0x49,
- 0x4,0x35,0x4,0x35,0x0,0x20,0x4,0x41,0x4,0x3e,0x4,0x3e,0x4,0x31,0x4,0x49,
- 0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x35,0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x38,
- 0x4,0x33,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x3e,0x4,0x3c,0x0,0x20,0x4,0x47,
- 0x4,0x30,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x31,0x4,0x43,0x4,0x34,0x4,0x35,
- 0x4,0x42,0x0,0x20,0x4,0x41,0x0,0x20,0x4,0x32,0x4,0x3e,0x4,0x37,0x4,0x33,
- 0x4,0x3b,0x4,0x30,0x4,0x41,0x4,0x3e,0x4,0x3c,0x0,0x21,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x47,0x57,0x68,0x65,0x6e,0x20,0x74,0x68,0x69,0x73,0x20,
- 0x69,0x73,0x20,0x74,0x75,0x72,0x6e,0x65,0x64,0x20,0x6f,0x6e,0x2c,0x20,0x79,0x6f,
- 0x75,0x72,0x20,0x6e,0x65,0x78,0x74,0x20,0x69,0x6e,0x2d,0x63,0x68,0x61,0x72,0x61,
- 0x63,0x74,0x65,0x72,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x77,0x69,0x6c,
- 0x6c,0x20,0x62,0x65,0x20,0x61,0x20,0x73,0x68,0x6f,0x75,0x74,0x21,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0x64,0x4,0x1f,0x4,0x30,0x4,0x3f,0x4,0x3a,0x4,0x30,0x0,0x20,0x0,0x60,0x0,
- 0x62,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x2f,0x0,0x63,0x0,0x61,0x0,0x73,0x0,
- 0x65,0x0,0x73,0x0,0x2f,0x0,0x60,0x0,0x20,0x4,0x3e,0x4,0x42,0x4,0x41,0x4,
- 0x43,0x4,0x42,0x4,0x41,0x4,0x42,0x4,0x32,0x4,0x43,0x4,0x35,0x4,0x42,0x0,
- 0x2e,0x0,0x20,0x4,0x1e,0x4,0x3d,0x4,0x30,0x0,0x20,0x4,0x31,0x4,0x4b,0x4,
- 0x3b,0x4,0x30,0x0,0x20,0x4,0x41,0x4,0x3e,0x4,0x37,0x4,0x34,0x4,0x30,0x4,
- 0x3d,0x4,0x30,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x91,0x59,
- 0x6f,0x75,0x20,0x64,0x6f,0x6e,0x27,0x74,0x20,0x68,0x61,0x76,0x65,0x20,0x61,0x20,
- 0x60,0x62,0x61,0x73,0x65,0x2f,0x63,0x61,0x73,0x65,0x73,0x2f,0x60,0x20,0x66,0x6f,
- 0x6c,0x64,0x65,0x72,0x21,0x20,0x49,0x74,0x20,0x77,0x61,0x73,0x20,0x6a,0x75,0x73,
- 0x74,0x20,0x6d,0x61,0x64,0x65,0x20,0x66,0x6f,0x72,0x20,0x79,0x6f,0x75,0x2c,0x20,
- 0x62,0x75,0x74,0x20,0x73,0x65,0x65,0x69,0x6e,0x67,0x20,0x61,0x73,0x20,0x69,0x74,
- 0x20,0x57,0x41,0x53,0x20,0x6a,0x75,0x73,0x74,0x20,0x6d,0x61,0x64,0x65,0x20,0x66,
- 0x6f,0x72,0x20,0x79,0x6f,0x75,0x2c,0x20,0x69,0x74,0x27,0x73,0x20,0x6c,0x69,0x6b,
- 0x65,0x6c,0x79,0x20,0x74,0x68,0x61,0x74,0x20,0x79,0x6f,0x75,0x20,0x73,0x6f,0x6d,
- 0x65,0x68,0x6f,0x77,0x20,0x64,0x65,0x6c,0x65,0x74,0x65,0x64,0x20,0x69,0x74,0x2e,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0xca,0x4,0x24,0x4,0x30,0x4,0x39,0x4,0x3b,0x0,0x20,0x4,0x41,
- 0x0,0x20,0x4,0x34,0x4,0x35,0x4,0x3b,0x4,0x3e,0x4,0x3c,0x0,0x20,0x4,0x3d,
- 0x4,0x35,0x0,0x20,0x4,0x3d,0x4,0x30,0x4,0x39,0x4,0x34,0x4,0x35,0x4,0x3d,
- 0x0,0x2e,0x0,0x20,0x4,0x15,0x4,0x41,0x4,0x3b,0x4,0x38,0x0,0x20,0x4,0x3d,
- 0x4,0x30,0x4,0x39,0x4,0x34,0x4,0x51,0x4,0x42,0x4,0x35,0x0,0x2c,0x0,0x20,
- 0x4,0x3f,0x4,0x3e,0x4,0x3b,0x4,0x3e,0x4,0x36,0x4,0x38,0x4,0x42,0x4,0x35,
- 0x0,0x20,0x4,0x35,0x4,0x33,0x4,0x3e,0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x3f,
- 0x4,0x30,0x4,0x3f,0x4,0x3a,0x4,0x43,0x0,0x20,0x0,0x60,0x0,0x62,0x0,0x61,
- 0x0,0x73,0x0,0x65,0x0,0x2f,0x0,0x63,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x73,
- 0x0,0x2f,0x0,0x60,0x0,0x2c,0x0,0x20,0x4,0x3a,0x4,0x3e,0x4,0x42,0x4,0x3e,
- 0x4,0x40,0x4,0x43,0x4,0x4e,0x0,0x20,0x4,0x3c,0x4,0x4b,0x0,0x20,0x4,0x34,
- 0x4,0x3b,0x4,0x4f,0x0,0x20,0x4,0x32,0x4,0x30,0x4,0x41,0x0,0x20,0x4,0x41,
- 0x4,0x3e,0x4,0x37,0x4,0x34,0x4,0x30,0x4,0x3b,0x4,0x38,0x0,0x2e,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xae,0x59,0x6f,0x75,0x20,0x64,0x6f,0x6e,0x27,
- 0x74,0x20,0x68,0x61,0x76,0x65,0x20,0x61,0x20,0x60,0x62,0x61,0x73,0x65,0x2f,0x63,
- 0x61,0x73,0x65,0x73,0x2f,0x60,0x20,0x66,0x6f,0x6c,0x64,0x65,0x72,0x21,0x20,0x49,
- 0x74,0x20,0x77,0x61,0x73,0x20,0x6a,0x75,0x73,0x74,0x20,0x6d,0x61,0x64,0x65,0x20,
- 0x66,0x6f,0x72,0x20,0x79,0x6f,0x75,0x2c,0x20,0x62,0x75,0x74,0x20,0x73,0x65,0x65,
- 0x69,0x6e,0x67,0x20,0x61,0x73,0x20,0x69,0x74,0x20,0x57,0x41,0x53,0x20,0x6a,0x75,
- 0x73,0x74,0x20,0x6d,0x61,0x64,0x65,0x20,0x66,0x6f,0x72,0x20,0x79,0x6f,0x75,0x2c,
- 0x20,0x69,0x74,0x27,0x73,0x20,0x6c,0x69,0x6b,0x65,0x6c,0x79,0x20,0x74,0x68,0x65,
- 0x20,0x63,0x61,0x73,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x79,0x6f,0x75,0x27,0x72,
- 0x65,0x20,0x6c,0x6f,0x6f,0x6b,0x69,0x6e,0x67,0x20,0x66,0x6f,0x72,0x20,0x63,0x61,
- 0x6e,0x27,0x74,0x20,0x62,0x65,0x20,0x66,0x6f,0x75,0x6e,0x64,0x20,0x69,0x6e,0x20,
- 0x74,0x68,0x65,0x72,0x65,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x1a,0x4,0x12,0x4,0x30,0x4,0x41,
- 0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x31,0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x3b,
- 0x4,0x38,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x59,0x6f,
- 0x75,0x20,0x68,0x61,0x76,0x65,0x20,0x62,0x65,0x65,0x6e,0x20,0x62,0x61,0x6e,0x6e,
- 0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x23,0x4,0x3a,0x4,0x30,0x4,0x36,0x4,
- 0x38,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x38,0x4,0x47,0x4,
- 0x38,0x4,0x3d,0x4,0x43,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x1a,0x59,0x6f,0x75,0x20,0x6d,0x75,0x73,0x74,0x20,0x70,0x72,0x6f,0x76,0x69,0x64,
- 0x65,0x20,0x61,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x1,0x86,0x4,
- 0x23,0x4,0x3a,0x4,0x30,0x4,0x36,0x4,0x38,0x4,0x42,0x4,0x35,0x0,0x20,0x4,
- 0x38,0x4,0x3c,0x4,0x4f,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4,0x3b,0x4,
- 0x30,0x0,0x20,0x4,0x41,0x0,0x20,0x4,0x34,0x4,0x35,0x4,0x3b,0x4,0x3e,0x4,
- 0x3c,0x0,0x20,0x0,0x28,0x4,0x31,0x4,0x35,0x4,0x37,0x0,0x20,0x4,0x40,0x4,
- 0x30,0x4,0x41,0x4,0x48,0x4,0x38,0x4,0x40,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,
- 0x4f,0x0,0x29,0x0,0x20,0x4,0x34,0x4,0x3b,0x4,0x4f,0x0,0x20,0x4,0x37,0x4,
- 0x30,0x4,0x33,0x4,0x40,0x4,0x43,0x4,0x37,0x4,0x3a,0x4,0x38,0x0,0x2e,0x0,
- 0xa,0x4,0x23,0x4,0x31,0x4,0x35,0x4,0x34,0x4,0x38,0x4,0x42,0x4,0x35,0x4,
- 0x41,0x4,0x4c,0x0,0x2c,0x0,0x20,0x4,0x47,0x4,0x42,0x4,0x3e,0x0,0x20,0x4,
- 0x3e,0x4,0x3d,0x0,0x20,0x4,0x40,0x4,0x30,0x4,0x41,0x4,0x3f,0x4,0x3e,0x4,
- 0x3b,0x4,0x3e,0x4,0x36,0x4,0x35,0x4,0x3d,0x0,0x20,0x4,0x32,0x0,0x20,0x4,
- 0x3f,0x4,0x30,0x4,0x3f,0x4,0x3a,0x4,0x35,0x0,0x20,0x0,0x60,0x0,0x62,0x0,
- 0x61,0x0,0x73,0x0,0x65,0x0,0x2f,0x0,0x63,0x0,0x61,0x0,0x73,0x0,0x65,0x0,
- 0x73,0x0,0x60,0x0,0x2c,0x0,0x20,0x4,0x38,0x0,0x20,0x4,0x47,0x4,0x42,0x4,
- 0x3e,0x0,0x20,0x4,0x4d,0x4,0x42,0x4,0x3e,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,
- 0x30,0x4,0x32,0x4,0x38,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x3e,0x0,0x20,0x4,
- 0x3e,0x4,0x42,0x4,0x44,0x4,0x3e,0x4,0x40,0x4,0x3c,0x4,0x30,0x4,0x42,0x4,
- 0x38,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4b,0x4,
- 0x39,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4,0x3b,0x0,0x20,0x0,0x2e,0x0,
- 0x69,0x0,0x6e,0x0,0x69,0x0,0x2e,0x0,0xa,0x4,0x12,0x4,0x4b,0x0,0x20,0x4,
- 0x3c,0x4,0x3e,0x4,0x36,0x4,0x35,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x37,0x4,
- 0x30,0x4,0x33,0x4,0x40,0x4,0x43,0x4,0x37,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,
- 0x20,0x4,0x41,0x4,0x3b,0x4,0x35,0x4,0x34,0x4,0x43,0x4,0x4e,0x4,0x49,0x4,
- 0x38,0x4,0x35,0x0,0x20,0x4,0x34,0x4,0x35,0x4,0x3b,0x4,0x30,0x0,0x3a,0x0,
- 0x20,0x0,0x25,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xae,0x59,
- 0x6f,0x75,0x20,0x6e,0x65,0x65,0x64,0x20,0x74,0x6f,0x20,0x67,0x69,0x76,0x65,0x20,
- 0x61,0x20,0x66,0x69,0x6c,0x65,0x6e,0x61,0x6d,0x65,0x20,0x74,0x6f,0x20,0x6c,0x6f,
- 0x61,0x64,0x20,0x28,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x20,0x6e,0x6f,
- 0x74,0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x29,0x21,0x20,0x4d,0x61,0x6b,0x65,0x20,
- 0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x61,0x74,0x20,0x69,0x74,0x20,0x69,0x73,0x20,
- 0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x60,0x62,0x61,0x73,0x65,0x2f,0x63,0x61,0x73,
- 0x65,0x73,0x2f,0x60,0x20,0x66,0x6f,0x6c,0x64,0x65,0x72,0x2c,0x20,0x61,0x6e,0x64,
- 0x20,0x74,0x68,0x61,0x74,0x20,0x69,0x74,0x20,0x69,0x73,0x20,0x61,0x20,0x63,0x6f,
- 0x72,0x72,0x65,0x63,0x74,0x6c,0x79,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x74,0x65,
- 0x64,0x20,0x69,0x6e,0x69,0x2e,0xa,0x43,0x61,0x73,0x65,0x73,0x20,0x79,0x6f,0x75,
- 0x20,0x63,0x61,0x6e,0x20,0x6c,0x6f,0x61,0x64,0x3a,0x20,0x25,0x31,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0x7c,0x4,0x12,0x4,0x32,0x4,0x35,0x4,0x34,0x4,0x38,0x4,0x42,0x4,0x35,0x0,
- 0x20,0x4,0x38,0x4,0x3c,0x4,0x4f,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4,
- 0x3b,0x4,0x30,0x0,0x20,0x0,0x28,0x4,0x31,0x4,0x35,0x4,0x37,0x0,0x20,0x4,
- 0x40,0x4,0x30,0x4,0x41,0x4,0x48,0x4,0x38,0x4,0x40,0x4,0x35,0x4,0x3d,0x4,
- 0x38,0x4,0x4f,0x0,0x29,0x0,0x20,0x4,0x38,0x0,0x20,0x4,0x43,0x4,0x3a,0x4,
- 0x30,0x4,0x36,0x4,0x38,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x41,0x4,0x42,0x4,
- 0x30,0x4,0x42,0x4,0x43,0x4,0x41,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x3b,0x4,
- 0x30,0x0,0x20,0x4,0x41,0x4,0x43,0x4,0x34,0x4,0x30,0x0,0x2e,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x54,0x59,0x6f,0x75,0x20,0x6e,0x65,0x65,0x64,0x20,
- 0x74,0x6f,0x20,0x67,0x69,0x76,0x65,0x20,0x61,0x20,0x66,0x69,0x6c,0x65,0x6e,0x61,
- 0x6d,0x65,0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x28,0x65,0x78,0x74,0x65,
- 0x6e,0x73,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x6e,0x65,0x65,0x64,0x65,0x64,
- 0x29,0x20,0x61,0x6e,0x64,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x75,0x72,0x74,0x72,
- 0x6f,0x6f,0x6d,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x21,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x52,0x4,
- 0x22,0x4,0x35,0x4,0x3f,0x4,0x35,0x4,0x40,0x4,0x4c,0x0,0x20,0x4,0x43,0x0,
- 0x20,0x4,0x32,0x4,0x30,0x4,0x41,0x0,0x20,0x4,0x35,0x4,0x41,0x4,0x42,0x4,
- 0x4c,0x0,0x20,0x4,0x3a,0x4,0x3d,0x4,0x3e,0x4,0x3f,0x4,0x3a,0x4,0x30,0x0,
- 0x20,0x0,0x22,0x4,0x1d,0x4,0x35,0x0,0x20,0x4,0x31,0x4,0x35,0x4,0x41,0x4,
- 0x3f,0x4,0x3e,0x4,0x3a,0x4,0x3e,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x22,0x0,
- 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2d,0x59,0x6f,0x75,0x20,0x77,
- 0x65,0x72,0x65,0x20,0x67,0x72,0x61,0x6e,0x74,0x65,0x64,0x20,0x74,0x68,0x65,0x20,
- 0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x20,0x4d,0x6f,0x64,0x63,0x61,0x6c,0x6c,0x73,
- 0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,
- 0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x3c,0x4,0x12,0x4,0x30,
- 0x4,0x48,0x4,0x35,0x0,0x20,0x4,0x34,0x4,0x35,0x4,0x3b,0x4,0x3e,0x0,0x20,
- 0x0,0x22,0x0,0x25,0x0,0x31,0x0,0x22,0x0,0x20,0x4,0x31,0x4,0x4b,0x4,0x3b,
- 0x4,0x3e,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x33,0x4,0x40,0x4,0x43,0x4,0x36,
- 0x4,0x35,0x4,0x3d,0x4,0x3e,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x1a,0x59,0x6f,0x75,0x72,0x20,0x63,0x61,0x73,0x65,0x20,0x22,0x25,0x31,0x22,
- 0x20,0x77,0x61,0x73,0x20,0x6c,0x6f,0x61,0x64,0x65,0x64,0x21,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x1e,
- 0x0,0x5b,0x4,0x1d,0x4,0x15,0x0,0x20,0x4,0x1d,0x4,0x10,0x4,0x19,0x4,0x14,
- 0x4,0x15,0x4,0x1d,0x4,0x1e,0x0,0x5d,0x0,0x20,0x0,0x25,0x0,0x31,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x5b,0x4d,0x49,0x53,0x53,0x49,0x4e,0x47,
- 0x5d,0x20,0x25,0x31,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x5b,0x4,0x22,0x4,0x20,0x4,0x10,
- 0x4,0x1d,0x4,0x21,0x4,0x1b,0x4,0x2f,0x4,0x26,0x4,0x18,0x4,0x2f,0x0,0x5d,
- 0x0,0x20,0x0,0x25,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,
- 0x5b,0x53,0x54,0x52,0x45,0x41,0x4d,0x5d,0x20,0x25,0x31,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x2a,0x4,
- 0x32,0x4,0x3a,0x4,0x3b,0x4,0x4e,0x4,0x47,0x4,0x38,0x4,0x3b,0x0,0x28,0x4,
- 0x30,0x0,0x29,0x0,0x20,0x4,0x3a,0x4,0x3e,0x4,0x3c,0x4,0x3f,0x4,0x3e,0x4,
- 0x37,0x4,0x38,0x4,0x46,0x4,0x38,0x4,0x4e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x11,0x68,0x61,0x73,0x20,0x70,0x6c,0x61,0x79,0x65,0x64,0x20,0x61,0x20,
- 0x73,0x6f,0x6e,0x67,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x24,0x4,0x3f,0x4,0x40,0x4,0x35,0x4,0x34,
- 0x4,0x4a,0x4,0x4f,0x4,0x32,0x4,0x38,0x4,0x3b,0x0,0x28,0x4,0x30,0x0,0x29,
- 0x0,0x20,0x4,0x43,0x4,0x3b,0x4,0x38,0x4,0x3a,0x4,0x43,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x16,0x68,0x61,0x73,0x20,0x70,0x72,0x65,0x73,0x65,0x6e,
- 0x74,0x65,0x64,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x26,
- 0x4,0x3e,0x4,0x41,0x4,0x42,0x4,0x30,0x4,0x3d,0x4,0x3e,0x4,0x32,0x4,0x38,
- 0x4,0x3b,0x0,0x28,0x4,0x30,0x0,0x29,0x0,0x20,0x4,0x3c,0x4,0x43,0x4,0x37,
- 0x4,0x4b,0x4,0x3a,0x4,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,
- 0x68,0x61,0x73,0x20,0x73,0x74,0x6f,0x70,0x70,0x65,0x64,0x20,0x74,0x68,0x65,0x20,
- 0x6d,0x75,0x73,0x69,0x63,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,
- 0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x18,0x4,0x32,0x4,0x4b,0x4,0x3a,0x4,
- 0x40,0x4,0x38,0x4,0x3a,0x4,0x3d,0x4,0x43,0x4,0x3b,0x0,0x28,0x4,0x30,0x0,
- 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x73,0x68,0x6f,0x75,0x74,
- 0x73,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,
- 0x3,0x0,0x0,0x0,0x26,0x4,0x24,0x4,0x30,0x4,0x39,0x4,0x3b,0x4,0x4b,0x0,
- 0x20,0x4,0x34,0x4,0x35,0x4,0x3c,0x4,0x3e,0x0,0x20,0x0,0x28,0x0,0x2a,0x0,
- 0x2e,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x13,0x44,0x65,0x6d,0x6f,0x20,0x46,0x69,0x6c,0x65,0x73,0x20,
- 0x28,0x2a,0x2e,0x64,0x65,0x6d,0x6f,0x29,0x7,0x0,0x0,0x0,0xa,0x44,0x65,0x6d,
- 0x6f,0x53,0x65,0x72,0x76,0x65,0x72,0x1,0x3,0x0,0x0,0x0,0x1c,0x4,0x17,0x4,
- 0x30,0x4,0x33,0x4,0x40,0x4,0x43,0x4,0x37,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,
- 0x20,0x4,0x34,0x4,0x35,0x4,0x3c,0x4,0x3e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x9,0x4c,0x6f,0x61,0x64,0x20,0x44,0x65,0x6d,0x6f,0x7,0x0,0x0,0x0,
- 0xa,0x44,0x65,0x6d,0x6f,0x53,0x65,0x72,0x76,0x65,0x72,0x1,0x3,0x0,0x0,0xa,
- 0xc0,0x0,0x3c,0x0,0x68,0x0,0x32,0x0,0x3e,0x0,0x41,0x0,0x74,0x0,0x74,0x0,
- 0x6f,0x0,0x72,0x0,0x6e,0x0,0x65,0x0,0x79,0x0,0x20,0x0,0x4f,0x0,0x6e,0x0,
- 0x6c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x25,0x0,0x31,0x0,0x3c,0x0,
- 0x2f,0x0,0x68,0x0,0x32,0x0,0x3e,0x4,0x21,0x4,0x38,0x4,0x3c,0x4,0x43,0x4,
- 0x3b,0x4,0x4f,0x4,0x42,0x4,0x3e,0x4,0x40,0x0,0x20,0x4,0x34,0x4,0x40,0x4,
- 0x30,0x4,0x3c,0x4,0x4b,0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x37,0x4,0x30,0x4,
- 0x3b,0x4,0x35,0x0,0x20,0x4,0x41,0x4,0x43,0x4,0x34,0x4,0x30,0x0,0x2e,0x0,
- 0x3c,0x0,0x70,0x0,0x3e,0x0,0x3c,0x0,0x62,0x0,0x3e,0x4,0x18,0x4,0x41,0x4,
- 0x45,0x4,0x3e,0x4,0x34,0x4,0x3d,0x4,0x4b,0x4,0x39,0x0,0x20,0x4,0x3a,0x4,
- 0x3e,0x4,0x34,0x0,0x3a,0x0,0x3c,0x0,0x2f,0x0,0x62,0x0,0x3e,0x0,0x20,0x0,
- 0x3c,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x3d,0x0,
- 0x27,0x0,0x68,0x0,0x74,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x3a,0x0,0x2f,0x0,
- 0x2f,0x0,0x67,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x75,0x0,0x62,0x0,0x2e,0x0,
- 0x63,0x0,0x6f,0x0,0x6d,0x0,0x2f,0x0,0x41,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,
- 0x72,0x0,0x6e,0x0,0x65,0x0,0x79,0x0,0x4f,0x0,0x6e,0x0,0x6c,0x0,0x69,0x0,
- 0x6e,0x0,0x65,0x0,0x2f,0x0,0x41,0x0,0x4f,0x0,0x32,0x0,0x2d,0x0,0x43,0x0,
- 0x6c,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x27,0x0,0x3e,0x0,0x68,0x0,
- 0x74,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x3a,0x0,0x2f,0x0,0x2f,0x0,0x67,0x0,
- 0x69,0x0,0x74,0x0,0x68,0x0,0x75,0x0,0x62,0x0,0x2e,0x0,0x63,0x0,0x6f,0x0,
- 0x6d,0x0,0x2f,0x0,0x41,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6e,0x0,
- 0x65,0x0,0x79,0x0,0x4f,0x0,0x6e,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,
- 0x2f,0x0,0x41,0x0,0x4f,0x0,0x32,0x0,0x2d,0x0,0x43,0x0,0x6c,0x0,0x69,0x0,
- 0x65,0x0,0x6e,0x0,0x74,0x0,0x3c,0x0,0x2f,0x0,0x61,0x0,0x3e,0x0,0x3c,0x0,
- 0x70,0x0,0x3e,0x0,0x3c,0x0,0x62,0x0,0x3e,0x4,0x1e,0x4,0x41,0x4,0x3d,0x4,
- 0x3e,0x4,0x32,0x4,0x3d,0x4,0x30,0x4,0x4f,0x0,0x20,0x4,0x40,0x4,0x30,0x4,
- 0x37,0x4,0x40,0x4,0x30,0x4,0x31,0x4,0x3e,0x4,0x42,0x4,0x3a,0x4,0x30,0x0,
- 0x3a,0x0,0x3c,0x0,0x2f,0x0,0x62,0x0,0x3e,0x0,0x3c,0x0,0x62,0x0,0x72,0x0,
- 0x3e,0x0,0x4f,0x0,0x6d,0x0,0x6e,0x0,0x69,0x0,0x54,0x0,0x72,0x0,0x6f,0x0,
- 0x69,0x0,0x64,0x0,0x2c,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,
- 0x65,0x0,0x64,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,
- 0x64,0x0,0x2c,0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x0,0x67,0x0,0x62,0x0,
- 0x79,0x0,0x74,0x0,0x65,0x0,0x31,0x0,0x2c,0x0,0x20,0x0,0x67,0x0,0x61,0x0,
- 0x6d,0x0,0x65,0x0,0x62,0x0,0x6f,0x0,0x79,0x0,0x70,0x0,0x72,0x0,0x69,0x0,
- 0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x2c,0x0,0x20,0x0,0x43,0x0,0x65,0x0,
- 0x72,0x0,0x61,0x0,0x70,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x2c,0x0,0x20,0x0,
- 0x43,0x0,0x72,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x77,0x0,
- 0x61,0x0,0x72,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x72,0x0,0x2c,0x0,0x20,0x0,
- 0x49,0x0,0x61,0x0,0x6d,0x0,0x67,0x0,0x6f,0x0,0x6f,0x0,0x66,0x0,0x62,0x0,
- 0x61,0x0,0x6c,0x0,0x6c,0x0,0x2c,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x31,0x0,
- 0x74,0x0,0x69,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x3c,0x0,0x70,0x0,0x3e,0x0,
- 0x3c,0x0,0x62,0x0,0x3e,0x4,0x20,0x4,0x30,0x4,0x37,0x4,0x40,0x4,0x30,0x4,
- 0x31,0x4,0x3e,0x4,0x42,0x4,0x3a,0x4,0x30,0x0,0x20,0x4,0x3a,0x4,0x3b,0x4,
- 0x38,0x4,0x35,0x4,0x3d,0x4,0x42,0x4,0x30,0x0,0x3a,0x0,0x3c,0x0,0x2f,0x0,
- 0x62,0x0,0x3e,0x0,0x3c,0x0,0x62,0x0,0x72,0x0,0x3e,0x0,0x43,0x0,0x65,0x0,
- 0x6e,0x0,0x74,0x0,0x73,0x0,0x30,0x0,0x32,0x0,0x2c,0x0,0x20,0x0,0x77,0x0,
- 0x69,0x0,0x6e,0x0,0x64,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x6d,0x0,0x65,0x0,
- 0x72,0x0,0x2c,0x0,0x20,0x0,0x73,0x0,0x6b,0x0,0x79,0x0,0x65,0x0,0x64,0x0,
- 0x65,0x0,0x76,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x3c,0x0,0x70,0x0,0x3e,0x0,
- 0x3c,0x0,0x62,0x0,0x3e,0x4,0x22,0x4,0x35,0x4,0x41,0x4,0x42,0x4,0x38,0x4,
- 0x40,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x35,0x0,0x3a,0x0,
- 0x3c,0x0,0x2f,0x0,0x62,0x0,0x3e,0x0,0x3c,0x0,0x62,0x0,0x72,0x0,0x3e,0x0,
- 0x43,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x79,0x0,0x43,0x0,0x61,0x0,0x7a,0x0,
- 0x79,0x0,0x2c,0x0,0x20,0x0,0x43,0x0,0x65,0x0,0x64,0x0,0x72,0x0,0x69,0x0,
- 0x63,0x0,0x44,0x0,0x65,0x0,0x77,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x2c,0x0,
- 0x20,0x0,0x43,0x0,0x68,0x0,0x65,0x0,0x77,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,
- 0x65,0x0,0x20,0x0,0x54,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,
- 0x73,0x0,0x2c,0x0,0x20,0x0,0x43,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x79,0x0,
- 0x4a,0x0,0x43,0x0,0x2c,0x0,0x20,0x0,0x46,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,
- 0x6f,0x0,0x73,0x0,0x2c,0x0,0x20,0x0,0x46,0x0,0x75,0x0,0x72,0x0,0x79,0x0,
- 0x20,0x0,0x4d,0x0,0x63,0x0,0x46,0x0,0x6c,0x0,0x75,0x0,0x72,0x0,0x72,0x0,
- 0x79,0x0,0x2c,0x0,0x20,0x0,0x47,0x0,0x65,0x0,0x63,0x0,0x6b,0x0,0x2c,0x0,
- 0x20,0x0,0x47,0x0,0x69,0x0,0x6e,0x0,0x2d,0x0,0x47,0x0,0x69,0x0,0x2c,0x0,
- 0x20,0x0,0x4a,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x61,0x0,
- 0x2c,0x0,0x20,0x0,0x4d,0x0,0x69,0x0,0x6e,0x0,0x78,0x0,0x2c,0x0,0x20,0x0,
- 0x50,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,
- 0x52,0x0,0x6f,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x20,0x0,
- 0x4f,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x64,0x0,
- 0x2c,0x0,0x20,0x0,0x53,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,
- 0x6c,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x61,0x0,
- 0x6b,0x0,0x61,0x0,0x20,0x0,0x53,0x0,0x68,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,
- 0x29,0x0,0x2c,0x0,0x20,0x0,0x53,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x72,0x0,
- 0x61,0x0,0x2c,0x0,0x20,0x0,0x53,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x47,0x0,
- 0x75,0x0,0x79,0x0,0x2c,0x0,0x20,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x69,0x0,
- 0x74,0x0,0x61,0x0,0x73,0x0,0x2c,0x0,0x20,0x0,0x57,0x0,0x69,0x0,0x73,0x0,
- 0x6f,0x0,0x3c,0x0,0x70,0x0,0x3e,0x0,0x3c,0x0,0x62,0x0,0x3e,0x0,0x54,0x0,
- 0x72,0x0,0x61,0x0,0x6e,0x0,0x73,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x69,0x0,
- 0x6f,0x0,0x6e,0x0,0x73,0x0,0x3a,0x0,0x3c,0x0,0x2f,0x0,0x62,0x0,0x3e,0x0,
- 0x3c,0x0,0x62,0x0,0x72,0x0,0x3e,0x0,0x6b,0x0,0x2d,0x0,0x65,0x0,0x6d,0x0,
- 0x69,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x28,0x4,0x20,0x4,0x43,0x4,0x41,0x4,
- 0x41,0x4,0x3a,0x4,0x38,0x4,0x39,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x50,0x0,
- 0x79,0x0,0x72,0x0,0x61,0x0,0x71,0x0,0x20,0x0,0x28,0x0,0x50,0x0,0x6f,0x0,
- 0x6c,0x0,0x73,0x0,0x6b,0x0,0x69,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x73,0x0,
- 0x63,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0x6c,0x0,
- 0x6f,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x28,0x65,0xe5,0x67,0x2c,0x8a,
- 0x9e,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,
- 0x70,0x0,0x72,0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x28,0x4,0x20,0x4,0x43,0x4,
- 0x41,0x4,0x41,0x4,0x3a,0x4,0x38,0x4,0x39,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,
- 0x77,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x6d,0x0,
- 0x65,0x0,0x72,0x0,0x20,0x0,0x28,0x0,0x45,0x0,0x73,0x0,0x70,0x0,0x61,0x0,
- 0xf1,0x0,0x6f,0x0,0x6c,0x0,0x2c,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,
- 0x74,0x0,0x75,0x0,0x67,0x0,0x75,0x0,0xea,0x0,0x73,0x0,0x29,0x0,0x3c,0x0,
- 0x70,0x0,0x3e,0x0,0x3c,0x0,0x62,0x0,0x3e,0x4,0x11,0x4,0x3b,0x4,0x30,0x4,
- 0x33,0x4,0x3e,0x4,0x34,0x4,0x30,0x4,0x40,0x4,0x3d,0x4,0x3e,0x4,0x41,0x4,
- 0x42,0x4,0x38,0x0,0x3a,0x0,0x3c,0x0,0x2f,0x0,0x62,0x0,0x3e,0x0,0x3c,0x0,
- 0x62,0x0,0x72,0x0,0x3e,0x0,0x43,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x79,0x0,
- 0x4a,0x0,0x43,0x0,0x20,0x0,0x28,0x4,0x34,0x4,0x38,0x4,0x40,0x4,0x35,0x4,
- 0x3a,0x4,0x42,0x4,0x3e,0x4,0x40,0x0,0x20,0x4,0x3f,0x4,0x3e,0x0,0x20,0x4,
- 0x32,0x4,0x4b,0x4,0x3f,0x4,0x43,0x4,0x41,0x4,0x3a,0x4,0x43,0x0,0x20,0x4,
- 0x32,0x4,0x35,0x4,0x40,0x4,0x41,0x4,0x38,0x4,0x38,0x0,0x20,0x0,0x32,0x0,
- 0x2e,0x0,0x38,0x0,0x29,0x0,0x20,0x4,0x38,0x0,0x20,0x0,0x4d,0x0,0x61,0x0,
- 0x78,0x0,0x69,0x0,0x6d,0x0,0x75,0x0,0x6d,0x0,0x56,0x0,0x6f,0x0,0x6c,0x0,
- 0x74,0x0,0x79,0x0,0x20,0x0,0x28,0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,0x34,0x4,
- 0x32,0x4,0x38,0x4,0x36,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x35,0x0,0x20,0x4,
- 0x32,0x4,0x35,0x4,0x40,0x4,0x41,0x4,0x38,0x4,0x38,0x0,0x20,0x0,0x32,0x0,
- 0x2e,0x0,0x38,0x0,0x29,0x0,0x3b,0x0,0x20,0x0,0x52,0x0,0x65,0x0,0x6d,0x0,
- 0x79,0x0,0x2c,0x0,0x20,0x0,0x48,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6b,0x0,
- 0x69,0x0,0x2c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x75,0x0,0x72,0x0,0x74,0x0,
- 0x2d,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x0,0x73,0x0,
- 0x2e,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x28,0x4,0x41,0x4,0x3f,0x4,
- 0x40,0x4,0x30,0x4,0x39,0x4,0x42,0x4,0x4b,0x0,0x29,0x0,0x3b,0x0,0x20,0x0,
- 0x51,0x0,0x75,0x0,0x62,0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,
- 0x28,0x0,0x77,0x0,0x65,0x0,0x62,0x0,0x41,0x0,0x4f,0x0,0x29,0x0,0x3b,0x0,
- 0x20,0x0,0x52,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x28,0x4,0x32,0x4,0x35,0x4,
- 0x31,0x4,0x41,0x4,0x30,0x4,0x39,0x4,0x42,0x0,0x29,0x0,0x3b,0x0,0x20,0x0,
- 0x44,0x0,0x72,0x0,0x61,0x0,0x78,0x0,0x69,0x0,0x72,0x0,0x63,0x0,0x68,0x0,
- 0x20,0x0,0x28,0x4,0x34,0x4,0x38,0x4,0x37,0x4,0x30,0x4,0x39,0x4,0x3d,0x0,
- 0x20,0x4,0x38,0x4,0x3d,0x4,0x42,0x4,0x35,0x4,0x40,0x4,0x44,0x4,0x35,0x4,
- 0x39,0x4,0x41,0x4,0x30,0x0,0x29,0x0,0x3b,0x0,0x20,0x0,0x4c,0x0,0x65,0x0,
- 0x77,0x0,0x64,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,
- 0x64,0x0,0x20,0x0,0x41,0x0,0x72,0x0,0x67,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,
- 0x75,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x74,0x0,0x73,0x0,0x75,0x0,0x73,0x0,
- 0x65,0x0,0x72,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x29,0x0,0x3b,0x0,0x20,0x0,
- 0x46,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x63,0x0,0x79,0x0,0x2c,0x0,0x20,0x0,
- 0x4e,0x0,0x6f,0x0,0x65,0x0,0x76,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x2c,0x0,
- 0x20,0x0,0x43,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,
- 0x6f,0x0,0x73,0x0,0x73,0x0,0x79,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,
- 0x64,0x0,0x20,0x0,0x46,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x74,0x0,0x53,0x0,
- 0x6f,0x0,0x72,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x41,0x0,0x4f,0x0,0x31,0x0,
- 0x29,0x0,0x3b,0x0,0x20,0x4,0x34,0x4,0x35,0x4,0x40,0x4,0x36,0x4,0x30,0x4,
- 0x42,0x4,0x35,0x4,0x3b,0x4,0x38,0x0,0x20,0x4,0x41,0x4,0x35,0x4,0x40,0x4,
- 0x32,0x4,0x35,0x4,0x40,0x4,0x3e,0x4,0x32,0x0,0x2c,0x0,0x20,0x4,0x13,0x4,
- 0x1c,0x0,0x2c,0x0,0x20,0x4,0x1f,0x4,0x14,0x0,0x2c,0x0,0x20,0x4,0x41,0x4,
- 0x3e,0x4,0x37,0x4,0x34,0x4,0x30,0x4,0x42,0x4,0x35,0x4,0x3b,0x4,0x38,0x0,
- 0x20,0x4,0x3a,0x4,0x3e,0x4,0x3d,0x4,0x42,0x4,0x35,0x4,0x3d,0x4,0x42,0x4,
- 0x30,0x0,0x2c,0x0,0x20,0x4,0x38,0x0,0x20,0x4,0x32,0x4,0x41,0x4,0x51,0x0,
- 0x20,0x4,0x41,0x4,0x3e,0x4,0x3e,0x4,0x31,0x4,0x49,0x4,0x35,0x4,0x41,0x4,
- 0x42,0x4,0x32,0x4,0x3e,0x0,0x20,0x0,0x41,0x0,0x4f,0x0,0x32,0x0,0x21,0x0,
- 0x3c,0x0,0x70,0x0,0x3e,0x4,0x1f,0x4,0x40,0x4,0x3e,0x4,0x35,0x4,0x3a,0x4,
- 0x42,0x0,0x20,0x4,0x41,0x4,0x35,0x4,0x42,0x4,0x35,0x4,0x32,0x4,0x3e,0x4,
- 0x39,0x0,0x20,0x4,0x32,0x4,0x38,0x4,0x37,0x4,0x43,0x4,0x30,0x4,0x3b,0x4,
- 0x4c,0x4,0x3d,0x4,0x3e,0x4,0x39,0x0,0x20,0x4,0x3d,0x4,0x3e,0x4,0x32,0x4,
- 0x35,0x4,0x3b,0x4,0x3b,0x4,0x4b,0x0,0x20,0x0,0x41,0x0,0x74,0x0,0x74,0x0,
- 0x6f,0x0,0x72,0x0,0x6e,0x0,0x65,0x0,0x79,0x0,0x20,0x0,0x4f,0x0,0x6e,0x0,
- 0x6c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x63,0x0,0x29,0x0,
- 0x20,0x0,0x32,0x0,0x30,0x0,0x31,0x0,0x36,0x0,0x2d,0x0,0x32,0x0,0x30,0x0,
- 0x32,0x0,0x31,0x0,0x20,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x40,0x4,0x30,0x4,
- 0x31,0x4,0x3e,0x4,0x42,0x4,0x47,0x4,0x38,0x4,0x3a,0x4,0x38,0x0,0x20,0x0,
- 0x41,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6e,0x0,0x65,0x0,0x79,0x0,
- 0x20,0x0,0x4f,0x0,0x6e,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x2e,0x0,
- 0x20,0x4,0x1f,0x4,0x40,0x4,0x38,0x4,0x3c,0x4,0x35,0x4,0x3d,0x4,0x4f,0x4,
- 0x35,0x4,0x42,0x4,0x41,0x4,0x4f,0x0,0x20,0x4,0x3b,0x4,0x38,0x4,0x46,0x4,
- 0x35,0x4,0x3d,0x4,0x37,0x4,0x38,0x4,0x4f,0x0,0x20,0x4,0x3d,0x4,0x30,0x0,
- 0x20,0x4,0x3e,0x4,0x42,0x4,0x3a,0x4,0x40,0x4,0x4b,0x4,0x42,0x4,0x3e,0x4,
- 0x35,0x0,0x20,0x4,0x1f,0x4,0x1e,0x0,0x2e,0x0,0x20,0x4,0x12,0x4,0x41,0x4,
- 0x35,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,0x47,0x4,0x38,0x4,0x35,0x0,
- 0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4,0x3b,0x4,0x4b,0x0,0x20,0x4,0x4f,0x4,
- 0x32,0x4,0x3b,0x4,0x4f,0x4,0x4e,0x4,0x42,0x4,0x41,0x4,0x4f,0x0,0x20,0x4,
- 0x41,0x4,0x3e,0x4,0x31,0x4,0x41,0x4,0x42,0x4,0x32,0x4,0x35,0x4,0x3d,0x4,
- 0x3d,0x4,0x3e,0x4,0x41,0x4,0x42,0x4,0x4c,0x4,0x4e,0x0,0x20,0x4,0x38,0x4,
- 0x45,0x0,0x20,0x4,0x32,0x4,0x3b,0x4,0x30,0x4,0x34,0x4,0x35,0x4,0x3b,0x4,
- 0x4c,0x4,0x46,0x4,0x35,0x4,0x32,0x0,0x2e,0x0,0x3c,0x0,0x70,0x0,0x3e,0x4,
- 0x20,0x4,0x30,0x4,0x31,0x4,0x3e,0x4,0x42,0x4,0x30,0x4,0x35,0x4,0x42,0x0,
- 0x20,0x4,0x3d,0x4,0x30,0x0,0x20,0x0,0x51,0x0,0x74,0x0,0x20,0x4,0x32,0x4,
- 0x35,0x4,0x40,0x4,0x41,0x4,0x38,0x4,0x38,0x0,0x20,0x0,0x25,0x0,0x32,0x0,
- 0x20,0x4,0x41,0x0,0x20,0x4,0x30,0x4,0x43,0x4,0x34,0x4,0x38,0x4,0x3e,0x0,
- 0x2d,0x4,0x34,0x4,0x32,0x4,0x38,0x4,0x36,0x4,0x3a,0x4,0x3e,0x4,0x3c,0x0,
- 0x20,0x0,0x42,0x0,0x41,0x0,0x53,0x0,0x53,0x0,0x2e,0x0,0x3c,0x0,0x62,0x0,
- 0x72,0x0,0x3e,0x4,0x1f,0x4,0x3b,0x4,0x30,0x4,0x33,0x4,0x38,0x4,0x3d,0x0,
- 0x20,0x0,0x41,0x0,0x50,0x0,0x4e,0x0,0x47,0x0,0x20,0x4,0x37,0x4,0x30,0x4,
- 0x33,0x4,0x40,0x4,0x43,0x4,0x36,0x4,0x35,0x4,0x3d,0x0,0x3a,0x0,0x20,0x0,
- 0x25,0x0,0x33,0x0,0x3c,0x0,0x70,0x0,0x3e,0x4,0x21,0x4,0x31,0x4,0x3e,0x4,
- 0x40,0x4,0x3a,0x4,0x30,0x0,0x20,0x4,0x3e,0x4,0x42,0x0,0x20,0x0,0x25,0x0,
- 0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x5,0x81,0x3c,0x68,0x32,0x3e,0x41,
- 0x74,0x74,0x6f,0x72,0x6e,0x65,0x79,0x20,0x4f,0x6e,0x6c,0x69,0x6e,0x65,0x20,0x25,
- 0x31,0x3c,0x2f,0x68,0x32,0x3e,0x54,0x68,0x65,0x20,0x63,0x6f,0x75,0x72,0x74,0x72,
- 0x6f,0x6f,0x6d,0x20,0x64,0x72,0x61,0x6d,0x61,0x20,0x73,0x69,0x6d,0x75,0x6c,0x61,
- 0x74,0x6f,0x72,0x2e,0x3c,0x70,0x3e,0x3c,0x62,0x3e,0x53,0x6f,0x75,0x72,0x63,0x65,
- 0x20,0x63,0x6f,0x64,0x65,0x3a,0x3c,0x2f,0x62,0x3e,0x20,0x3c,0x61,0x20,0x68,0x72,
- 0x65,0x66,0x3d,0x27,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,
- 0x75,0x62,0x2e,0x63,0x6f,0x6d,0x2f,0x41,0x74,0x74,0x6f,0x72,0x6e,0x65,0x79,0x4f,
- 0x6e,0x6c,0x69,0x6e,0x65,0x2f,0x41,0x4f,0x32,0x2d,0x43,0x6c,0x69,0x65,0x6e,0x74,
- 0x27,0x3e,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75,0x62,
- 0x2e,0x63,0x6f,0x6d,0x2f,0x41,0x74,0x74,0x6f,0x72,0x6e,0x65,0x79,0x4f,0x6e,0x6c,
- 0x69,0x6e,0x65,0x2f,0x41,0x4f,0x32,0x2d,0x43,0x6c,0x69,0x65,0x6e,0x74,0x3c,0x2f,
- 0x61,0x3e,0x3c,0x70,0x3e,0x3c,0x62,0x3e,0x4d,0x61,0x6a,0x6f,0x72,0x20,0x64,0x65,
- 0x76,0x65,0x6c,0x6f,0x70,0x6d,0x65,0x6e,0x74,0x3a,0x3c,0x2f,0x62,0x3e,0x3c,0x62,
- 0x72,0x3e,0x4f,0x6d,0x6e,0x69,0x54,0x72,0x6f,0x69,0x64,0x2c,0x20,0x73,0x74,0x6f,
- 0x6e,0x65,0x64,0x44,0x69,0x73,0x63,0x6f,0x72,0x64,0x2c,0x20,0x6c,0x6f,0x6e,0x67,
- 0x62,0x79,0x74,0x65,0x31,0x2c,0x20,0x67,0x61,0x6d,0x65,0x62,0x6f,0x79,0x70,0x72,
- 0x69,0x6e,0x74,0x65,0x72,0x2c,0x20,0x43,0x65,0x72,0x61,0x70,0x74,0x65,0x72,0x2c,
- 0x20,0x43,0x72,0x79,0x73,0x74,0x61,0x6c,0x77,0x61,0x72,0x72,0x69,0x6f,0x72,0x2c,
- 0x20,0x49,0x61,0x6d,0x67,0x6f,0x6f,0x66,0x62,0x61,0x6c,0x6c,0x2c,0x20,0x69,0x6e,
- 0x31,0x74,0x69,0x61,0x74,0x65,0x3c,0x70,0x3e,0x3c,0x62,0x3e,0x43,0x6c,0x69,0x65,
- 0x6e,0x74,0x20,0x64,0x65,0x76,0x65,0x6c,0x6f,0x70,0x6d,0x65,0x6e,0x74,0x3a,0x3c,
- 0x2f,0x62,0x3e,0x3c,0x62,0x72,0x3e,0x43,0x65,0x6e,0x74,0x73,0x30,0x32,0x2c,0x20,
- 0x77,0x69,0x6e,0x64,0x72,0x61,0x6d,0x6d,0x65,0x72,0x2c,0x20,0x73,0x6b,0x79,0x65,
- 0x64,0x65,0x76,0x69,0x6e,0x67,0x3c,0x70,0x3e,0x3c,0x62,0x3e,0x51,0x41,0x20,0x74,
- 0x65,0x73,0x74,0x69,0x6e,0x67,0x3a,0x3c,0x2f,0x62,0x3e,0x3c,0x62,0x72,0x3e,0x43,
- 0x61,0x73,0x65,0x79,0x43,0x61,0x7a,0x79,0x2c,0x20,0x43,0x65,0x64,0x72,0x69,0x63,
- 0x44,0x65,0x77,0x69,0x74,0x74,0x2c,0x20,0x43,0x68,0x65,0x77,0x61,0x62,0x6c,0x65,
- 0x20,0x54,0x61,0x62,0x6c,0x65,0x74,0x73,0x2c,0x20,0x43,0x72,0x61,0x7a,0x79,0x4a,
- 0x43,0x2c,0x20,0x46,0x61,0x6e,0x74,0x6f,0x73,0x2c,0x20,0x46,0x75,0x72,0x79,0x20,
- 0x4d,0x63,0x46,0x6c,0x75,0x72,0x72,0x79,0x2c,0x20,0x47,0x65,0x63,0x6b,0x2c,0x20,
- 0x47,0x69,0x6e,0x2d,0x47,0x69,0x2c,0x20,0x4a,0x61,0x6d,0x61,0x6e,0x69,0x61,0x2c,
- 0x20,0x4d,0x69,0x6e,0x78,0x2c,0x20,0x50,0x61,0x6e,0x64,0x61,0x65,0x2c,0x20,0x52,
- 0x6f,0x62,0x6f,0x74,0x69,0x63,0x20,0x4f,0x76,0x65,0x72,0x6c,0x6f,0x72,0x64,0x2c,
- 0x20,0x53,0x68,0x61,0x64,0x6f,0x77,0x6c,0x69,0x6f,0x6e,0x73,0x20,0x28,0x61,0x6b,
- 0x61,0x20,0x53,0x68,0x61,0x6c,0x69,0x29,0x2c,0x20,0x53,0x69,0x65,0x72,0x72,0x61,
- 0x2c,0x20,0x53,0x6f,0x6d,0x65,0x47,0x75,0x79,0x2c,0x20,0x56,0x65,0x72,0x69,0x74,
- 0x61,0x73,0x2c,0x20,0x57,0x69,0x73,0x6f,0x3c,0x70,0x3e,0x3c,0x62,0x3e,0x54,0x72,
- 0x61,0x6e,0x73,0x6c,0x61,0x74,0x69,0x6f,0x6e,0x73,0x3a,0x3c,0x2f,0x62,0x3e,0x3c,
- 0x62,0x72,0x3e,0x6b,0x2d,0x65,0x6d,0x69,0x6b,0x6f,0x20,0x28,0xd0,0xa0,0xd1,0x83,
- 0xd1,0x81,0xd1,0x81,0xd0,0xba,0xd0,0xb8,0xd0,0xb9,0x29,0x2c,0x20,0x50,0x79,0x72,
- 0x61,0x71,0x20,0x28,0x50,0x6f,0x6c,0x73,0x6b,0x69,0x29,0x2c,0x20,0x73,0x63,0x61,
- 0x74,0x74,0x65,0x72,0x66,0x6c,0x6f,0x77,0x65,0x72,0x20,0x28,0xe6,0x97,0xa5,0xe6,
- 0x9c,0xac,0xe8,0xaa,0x9e,0x29,0x2c,0x20,0x76,0x69,0x6e,0x74,0x70,0x72,0x6f,0x78,
- 0x20,0x28,0xd0,0xa0,0xd1,0x83,0xd1,0x81,0xd1,0x81,0xd0,0xba,0xd0,0xb8,0xd0,0xb9,
- 0x29,0x2c,0x20,0x77,0x69,0x6e,0x64,0x72,0x61,0x6d,0x6d,0x65,0x72,0x20,0x28,0x45,
- 0x73,0x70,0x61,0xc3,0xb1,0x6f,0x6c,0x2c,0x20,0x50,0x6f,0x72,0x74,0x75,0x67,0x75,
- 0xc3,0xaa,0x73,0x29,0x3c,0x70,0x3e,0x3c,0x62,0x3e,0x53,0x70,0x65,0x63,0x69,0x61,
- 0x6c,0x20,0x74,0x68,0x61,0x6e,0x6b,0x73,0x3a,0x3c,0x2f,0x62,0x3e,0x3c,0x62,0x72,
- 0x3e,0x43,0x72,0x61,0x7a,0x79,0x4a,0x43,0x20,0x28,0x32,0x2e,0x38,0x20,0x72,0x65,
- 0x6c,0x65,0x61,0x73,0x65,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x29,0x20,
- 0x61,0x6e,0x64,0x20,0x4d,0x61,0x78,0x69,0x6d,0x75,0x6d,0x56,0x6f,0x6c,0x74,0x79,
- 0x20,0x28,0x32,0x2e,0x38,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20,0x70,0x72,
- 0x6f,0x6d,0x6f,0x74,0x69,0x6f,0x6e,0x29,0x3b,0x20,0x52,0x65,0x6d,0x79,0x2c,0x20,
- 0x48,0x69,0x62,0x69,0x6b,0x69,0x2c,0x20,0x63,0x6f,0x75,0x72,0x74,0x2d,0x72,0x65,
- 0x63,0x6f,0x72,0x64,0x73,0x2e,0x6e,0x65,0x74,0x20,0x28,0x73,0x70,0x72,0x69,0x74,
- 0x65,0x73,0x29,0x3b,0x20,0x51,0x75,0x62,0x72,0x69,0x63,0x6b,0x20,0x28,0x77,0x65,
- 0x62,0x41,0x4f,0x29,0x3b,0x20,0x52,0x75,0x65,0x20,0x28,0x77,0x65,0x62,0x73,0x69,
- 0x74,0x65,0x29,0x3b,0x20,0x44,0x72,0x61,0x78,0x69,0x72,0x63,0x68,0x20,0x28,0x55,
- 0x49,0x20,0x64,0x65,0x73,0x69,0x67,0x6e,0x29,0x3b,0x20,0x4c,0x65,0x77,0x64,0x74,
- 0x6f,0x6e,0x20,0x61,0x6e,0x64,0x20,0x41,0x72,0x67,0x6f,0x6e,0x65,0x75,0x73,0x20,
- 0x28,0x74,0x73,0x75,0x73,0x65,0x72,0x76,0x65,0x72,0x29,0x3b,0x20,0x46,0x69,0x65,
- 0x72,0x63,0x79,0x2c,0x20,0x4e,0x6f,0x65,0x76,0x61,0x69,0x6e,0x2c,0x20,0x43,0x72,
- 0x6f,0x6e,0x6e,0x69,0x63,0x6f,0x73,0x73,0x79,0x2c,0x20,0x61,0x6e,0x64,0x20,0x46,
- 0x61,0x6e,0x61,0x74,0x53,0x6f,0x72,0x73,0x20,0x28,0x41,0x4f,0x31,0x29,0x3b,0x20,
- 0x73,0x65,0x72,0x76,0x65,0x72,0x20,0x68,0x6f,0x73,0x74,0x73,0x2c,0x20,0x67,0x61,
- 0x6d,0x65,0x20,0x6d,0x61,0x73,0x74,0x65,0x72,0x73,0x2c,0x20,0x63,0x61,0x73,0x65,
- 0x20,0x6d,0x61,0x6b,0x65,0x72,0x73,0x2c,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,
- 0x20,0x63,0x72,0x65,0x61,0x74,0x6f,0x72,0x73,0x2c,0x20,0x61,0x6e,0x64,0x20,0x74,
- 0x68,0x65,0x20,0x77,0x68,0x6f,0x6c,0x65,0x20,0x41,0x4f,0x32,0x20,0x63,0x6f,0x6d,
- 0x6d,0x75,0x6e,0x69,0x74,0x79,0x21,0x3c,0x70,0x3e,0x54,0x68,0x65,0x20,0x41,0x74,
- 0x74,0x6f,0x72,0x6e,0x65,0x79,0x20,0x4f,0x6e,0x6c,0x69,0x6e,0x65,0x20,0x6e,0x65,
- 0x74,0x77,0x6f,0x72,0x6b,0x65,0x64,0x20,0x76,0x69,0x73,0x75,0x61,0x6c,0x20,0x6e,
- 0x6f,0x76,0x65,0x6c,0x20,0x70,0x72,0x6f,0x6a,0x65,0x63,0x74,0x20,0x69,0x73,0x20,
- 0x63,0x6f,0x70,0x79,0x72,0x69,0x67,0x68,0x74,0x20,0x28,0x63,0x29,0x20,0x32,0x30,
- 0x31,0x36,0x2d,0x32,0x30,0x32,0x31,0x20,0x41,0x74,0x74,0x6f,0x72,0x6e,0x65,0x79,
- 0x20,0x4f,0x6e,0x6c,0x69,0x6e,0x65,0x20,0x64,0x65,0x76,0x65,0x6c,0x6f,0x70,0x65,
- 0x72,0x73,0x2e,0x20,0x4f,0x70,0x65,0x6e,0x2d,0x73,0x6f,0x75,0x72,0x63,0x65,0x20,
- 0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x73,0x20,0x61,0x70,0x70,0x6c,0x79,0x2e,0x20,
- 0x41,0x6c,0x6c,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x61,0x73,0x73,0x65,0x74,0x73,
- 0x20,0x61,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x70,0x72,0x6f,0x70,0x65,0x72,0x74,
- 0x79,0x20,0x6f,0x66,0x20,0x74,0x68,0x65,0x69,0x72,0x20,0x72,0x65,0x73,0x70,0x65,
- 0x63,0x74,0x69,0x76,0x65,0x20,0x6f,0x77,0x6e,0x65,0x72,0x73,0x2e,0x3c,0x70,0x3e,
- 0x52,0x75,0x6e,0x6e,0x69,0x6e,0x67,0x20,0x6f,0x6e,0x20,0x51,0x74,0x20,0x76,0x65,
- 0x72,0x73,0x69,0x6f,0x6e,0x20,0x25,0x32,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,
- 0x65,0x20,0x42,0x41,0x53,0x53,0x20,0x61,0x75,0x64,0x69,0x6f,0x20,0x65,0x6e,0x67,
- 0x69,0x6e,0x65,0x2e,0x3c,0x62,0x72,0x3e,0x41,0x50,0x4e,0x47,0x20,0x70,0x6c,0x75,
- 0x67,0x69,0x6e,0x20,0x6c,0x6f,0x61,0x64,0x65,0x64,0x3a,0x20,0x25,0x33,0x3c,0x70,
- 0x3e,0x42,0x75,0x69,0x6c,0x74,0x20,0x6f,0x6e,0x20,0x25,0x34,0x7,0x0,0x0,0x0,
- 0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,0x0,0x0,0x16,0x4,0x1e,0x0,0x20,
- 0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,0x33,0x4,0x40,0x4,0x30,0x4,0x3c,0x4,0x3c,
- 0x4,0x35,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x41,0x62,0x6f,0x75,
- 0x74,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,0x0,0x0,
- 0x4a,0x4,0x18,0x4,0x37,0x4,0x3c,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x42,0x4,
- 0x4c,0x0,0x20,0x4,0x3f,0x4,0x30,0x4,0x40,0x4,0x30,0x4,0x3c,0x4,0x35,0x4,
- 0x42,0x4,0x40,0x4,0x4b,0x0,0x20,0x4,0x40,0x4,0x30,0x4,0x31,0x4,0x3e,0x4,
- 0x42,0x4,0x4b,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x38,0x4,0x3b,0x4,0x3e,0x4,
- 0x36,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x33,0x41,0x6c,0x6c,0x6f,0x77,0x73,0x20,0x79,0x6f,0x75,0x20,
- 0x74,0x6f,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x20,0x76,0x61,0x72,0x69,0x6f,0x75,
- 0x73,0x20,0x61,0x73,0x70,0x65,0x63,0x74,0x73,0x20,0x6f,0x66,0x20,0x74,0x68,0x65,
- 0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,0x2e,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,
- 0x62,0x79,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x41,0x0,0x74,0x0,0x74,0x0,0x6f,
- 0x0,0x72,0x0,0x6e,0x0,0x65,0x0,0x79,0x0,0x20,0x0,0x4f,0x0,0x6e,0x0,0x6c,
- 0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x25,0x0,0x31,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x12,0x41,0x74,0x74,0x6f,0x72,0x6e,0x65,0x79,0x20,0x4f,
- 0x6e,0x6c,0x69,0x6e,0x65,0x20,0x25,0x31,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,
- 0x62,0x79,0x1,0x3,0x0,0x0,0x0,0xc,0x4,0x1e,0x4,0x42,0x4,0x3c,0x4,0x35,
- 0x4,0x3d,0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x61,
- 0x6e,0x63,0x65,0x6c,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,
- 0x0,0x0,0x0,0xec,0x4,0x1a,0x4,0x30,0x4,0x36,0x4,0x35,0x4,0x42,0x4,0x41,
- 0x4,0x4f,0x0,0x2c,0x0,0x20,0x4,0x32,0x4,0x30,0x4,0x48,0x0,0x20,0x4,0x3a,
- 0x4,0x3b,0x4,0x38,0x4,0x35,0x4,0x3d,0x4,0x42,0x0,0x20,0x4,0x3d,0x4,0x35,
- 0x4,0x3f,0x4,0x40,0x4,0x30,0x4,0x32,0x4,0x38,0x4,0x3b,0x4,0x4c,0x4,0x3d,
- 0x4,0x3e,0x0,0x20,0x4,0x3d,0x4,0x30,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x3e,
- 0x4,0x35,0x4,0x3d,0x0,0x2e,0x0,0xa,0x4,0x12,0x4,0x4b,0x0,0x20,0x4,0x42,
- 0x4,0x3e,0x4,0x47,0x4,0x3d,0x4,0x3e,0x0,0x20,0x4,0x41,0x4,0x3a,0x4,0x30,
- 0x4,0x47,0x4,0x30,0x4,0x3b,0x4,0x38,0x0,0x20,0x4,0x32,0x4,0x41,0x4,0x35,
- 0x0,0x20,0x4,0x40,0x4,0x35,0x4,0x41,0x4,0x43,0x4,0x40,0x4,0x41,0x4,0x4b,
- 0x0,0x20,0x4,0x41,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x79,0x0,0x2e,
- 0x0,0x63,0x0,0x63,0x0,0x2f,0x0,0x67,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x6f,
- 0x0,0x2c,0x0,0x20,0x4,0x32,0x4,0x3a,0x4,0x3b,0x4,0x4e,0x4,0x47,0x4,0x30,
- 0x4,0x4f,0x0,0x20,0x4,0x3e,0x4,0x33,0x4,0x40,0x4,0x3e,0x4,0x3c,0x4,0x3d,
- 0x4,0x43,0x4,0x4e,0x0,0x20,0x4,0x3f,0x4,0x30,0x4,0x3f,0x4,0x3a,0x4,0x43,
- 0x0,0x20,0x0,0x60,0x0,0x62,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x60,0x0,0x3f,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x95,0x49,0x74,0x20,0x64,0x6f,0x65,
- 0x73,0x6e,0x27,0x74,0x20,0x6c,0x6f,0x6f,0x6b,0x20,0x6c,0x69,0x6b,0x65,0x20,0x79,
- 0x6f,0x75,0x72,0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,0x20,0x69,0x73,0x20,0x73,0x65,
- 0x74,0x20,0x75,0x70,0x20,0x63,0x6f,0x72,0x72,0x65,0x63,0x74,0x6c,0x79,0x2e,0xa,
- 0x44,0x69,0x64,0x20,0x79,0x6f,0x75,0x20,0x64,0x6f,0x77,0x6e,0x6c,0x6f,0x61,0x64,
- 0x20,0x61,0x6c,0x6c,0x20,0x72,0x65,0x73,0x6f,0x75,0x72,0x63,0x65,0x73,0x20,0x63,
- 0x6f,0x72,0x72,0x65,0x63,0x74,0x6c,0x79,0x20,0x66,0x72,0x6f,0x6d,0x20,0x74,0x69,
- 0x6e,0x79,0x2e,0x63,0x63,0x2f,0x67,0x65,0x74,0x61,0x6f,0x2c,0x20,0x69,0x6e,0x63,
- 0x6c,0x75,0x64,0x69,0x6e,0x67,0x20,0x74,0x68,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,
- 0x20,0x27,0x62,0x61,0x73,0x65,0x27,0x20,0x66,0x6f,0x6c,0x64,0x65,0x72,0x3f,0x7,
- 0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,0x0,0x0,0x10,0x4,
- 0x17,0x4,0x30,0x4,0x33,0x4,0x40,0x4,0x43,0x4,0x37,0x4,0x3a,0x4,0x30,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,
- 0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,0x0,0x0,0xe,
- 0x4,0x1d,0x4,0x38,0x4,0x3a,0x4,0x3d,0x4,0x35,0x4,0x39,0x4,0x3c,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e,0x61,0x6d,0x65,0x7,0x0,0x0,0x0,
- 0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,0x0,0x0,0x6,0x4,0x1d,0x4,0x35,
- 0x4,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4e,0x6f,0x7,0x0,
- 0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,0x0,0x0,0x12,0x4,0x1d,
- 0x4,0x35,0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x41,0x4,0x35,0x4,0x42,0x4,0x38,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4f,0x66,0x66,0x6c,0x69,0x6e,
- 0x65,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,0x0,0x0,
- 0x1a,0x4,0x1e,0x4,0x3d,0x4,0x3b,0x4,0x30,0x4,0x39,0x4,0x3d,0x0,0x3a,0x0,
- 0x20,0x0,0x25,0x0,0x31,0x0,0x2f,0x0,0x25,0x0,0x32,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0xd,0x4f,0x6e,0x6c,0x69,0x6e,0x65,0x3a,0x20,0x25,0x31,0x2f,
- 0x25,0x32,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,0x0,
- 0x0,0xa,0x4,0x1f,0x4,0x3e,0x4,0x38,0x4,0x41,0x4,0x3a,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x6,0x53,0x65,0x61,0x72,0x63,0x68,0x7,0x0,0x0,0x0,
- 0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,0x0,0x0,0x12,0x4,0x1d,0x4,0x30,
- 0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x39,0x4,0x3a,0x4,0x38,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,
- 0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,0x0,0x0,0x14,
- 0x4,0x12,0x4,0x35,0x4,0x40,0x4,0x41,0x4,0x38,0x4,0x4f,0x0,0x3a,0x0,0x20,
- 0x0,0x25,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x56,0x65,
- 0x72,0x73,0x69,0x6f,0x6e,0x3a,0x20,0x25,0x31,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,
- 0x62,0x62,0x79,0x1,0x3,0x0,0x0,0x0,0x4,0x4,0x14,0x4,0x30,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x59,0x65,0x73,0x7,0x0,0x0,0x0,0x5,0x4c,
- 0x6f,0x62,0x62,0x79,0x1,0x3,0x0,0x0,0x0,0x6,0x4,0x3d,0x0,0x2f,0x4,0x34,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x55,0x4e,0x4b,0x4e,0x4f,0x57,
- 0x4e,0x7,0x0,0x0,0x0,0xc,0x63,0x68,0x61,0x74,0x6c,0x6f,0x67,0x70,0x69,0x65,
- 0x63,0x65,0x1,0x3,0x0,0x0,0x0,0xc,0x4,0x1e,0x4,0x48,0x4,0x38,0x4,0x31,
- 0x4,0x3a,0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x45,0x72,
- 0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0xf,0x64,0x65,0x62,0x75,0x67,0x5f,0x66,0x75,
- 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x73,0x1,0x3,0x0,0x0,0x0,0x14,0x4,0x1e,0x4,
- 0x48,0x4,0x38,0x4,0x31,0x4,0x3a,0x4,0x30,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,
- 0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x45,0x72,0x72,0x6f,0x72,
- 0x3a,0x20,0x25,0x31,0x7,0x0,0x0,0x0,0xf,0x64,0x65,0x62,0x75,0x67,0x5f,0x66,
- 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x73,0x1,0x3,0x0,0x0,0x0,0x16,0x4,0x23,
- 0x4,0x32,0x4,0x35,0x4,0x34,0x4,0x3e,0x4,0x3c,0x4,0x3b,0x4,0x35,0x4,0x3d,
- 0x4,0x38,0x4,0x35,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4e,0x6f,
- 0x74,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0xf,0x64,0x65,0x62,0x75,0x67,0x5f,0x66,
- 0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x73,0x1,0x88,0x0,0x0,0x0,0xd,0x11,0x1,
- 0xfd,0x29,0xb,0xff,0x14,0x2,0x4,0xfd,0x2c,0xa,0x13,
- // /media/stoned/SHARED/Git/AO2-Client/resource/translations/ao_pt.qm
- 0x0,0x0,0x9f,0x1a,
- 0x3c,
- 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0xa7,
- 0x0,0x0,0x0,0x5,0x70,0x74,0x5f,0x42,0x52,0x42,0x0,0x0,0x7,0x88,0x0,0x0,
- 0x5,0x4f,0x0,0x0,0x95,0x63,0x0,0x0,0x44,0x3d,0x0,0x0,0x47,0x13,0x0,0x0,
- 0x48,0xa,0x0,0x0,0x15,0x57,0x0,0x0,0x57,0x85,0x0,0x0,0x6b,0xe1,0x0,0x0,
- 0x59,0xd8,0x0,0x0,0x78,0x32,0x0,0x0,0x5f,0xc3,0x0,0x0,0x96,0x9c,0x0,0x4,
- 0xd3,0x0,0x0,0x0,0x5f,0xaa,0x0,0x5,0x48,0x35,0x0,0x0,0x66,0xa7,0x0,0x5,
- 0x48,0x35,0x0,0x0,0x95,0x3d,0x0,0x5,0x56,0x45,0x0,0x0,0x67,0xdd,0x0,0x5,
- 0x7b,0xba,0x0,0x0,0x33,0x45,0x0,0x1d,0xb,0x21,0x0,0x0,0x96,0x63,0x0,0x33,
- 0x9c,0xa,0x0,0x0,0x1a,0xac,0x0,0x47,0x96,0xc4,0x0,0x0,0x91,0xe5,0x0,0x48,
- 0xba,0xff,0x0,0x0,0x13,0x61,0x0,0x49,0x30,0x73,0x0,0x0,0x4b,0xa1,0x0,0x4c,
- 0x99,0x62,0x0,0x0,0x5e,0x3,0x0,0x4c,0x99,0x62,0x0,0x0,0x96,0xe7,0x0,0x4e,
- 0xb8,0x84,0x0,0x0,0x60,0x35,0x0,0x54,0xc9,0xf3,0x0,0x0,0x66,0x84,0x0,0x5a,
- 0x81,0xbe,0x0,0x0,0x7c,0xd0,0x0,0x5b,0xee,0x2e,0x0,0x0,0x62,0xd2,0x0,0x5c,
- 0xcf,0x9e,0x0,0x0,0x60,0xd5,0x0,0x73,0x9c,0x8e,0x0,0x0,0x40,0x25,0x0,0x74,
- 0x22,0x2e,0x0,0x0,0x28,0x10,0x0,0x81,0x97,0x4e,0x0,0x0,0x39,0x38,0x0,0x8b,
- 0xa2,0x99,0x0,0x0,0x73,0x89,0x0,0x9a,0x6c,0xca,0x0,0x0,0x18,0x0,0x0,0xa0,
- 0x39,0x3e,0x0,0x0,0x50,0xc7,0x0,0xa5,0x9e,0x4e,0x0,0x0,0x0,0x58,0x0,0xb7,
- 0xb7,0x3e,0x0,0x0,0x76,0x78,0x0,0xc6,0xda,0xde,0x0,0x0,0x2b,0x33,0x0,0xd1,
- 0x29,0xfe,0x0,0x0,0x1c,0xcd,0x0,0xf4,0x21,0x9e,0x0,0x0,0x88,0x7,0x1,0x8,
- 0x6f,0x91,0x0,0x0,0x79,0x9c,0x1,0x8,0xc3,0x9a,0x0,0x0,0x17,0x63,0x1,0xb,
- 0xd3,0x5e,0x0,0x0,0x65,0xd4,0x1,0xe,0x4a,0x51,0x0,0x0,0x4e,0xee,0x1,0x11,
- 0x0,0x3,0x0,0x0,0x55,0xda,0x1,0x36,0x85,0x9e,0x0,0x0,0x56,0x47,0x1,0x6a,
- 0x19,0x1a,0x0,0x0,0x3d,0x2b,0x1,0x6d,0x91,0xe4,0x0,0x0,0x82,0x23,0x1,0x71,
- 0x35,0x8e,0x0,0x0,0x7c,0xff,0x1,0x71,0xfc,0x57,0x0,0x0,0x91,0x3e,0x1,0x90,
- 0x8a,0xff,0x0,0x0,0x93,0x31,0x1,0xc6,0x62,0xee,0x0,0x0,0x18,0xcf,0x1,0xd4,
- 0x4c,0xee,0x0,0x0,0x23,0xf5,0x1,0xec,0xca,0xde,0x0,0x0,0x4d,0xa2,0x1,0xf4,
- 0xee,0x2e,0x0,0x0,0x58,0x30,0x2,0x21,0x83,0xba,0x0,0x0,0x14,0x95,0x2,0x2a,
- 0xb9,0xea,0x0,0x0,0x3c,0x91,0x2,0x48,0x6f,0xbe,0x0,0x0,0x6e,0x5d,0x2,0x5b,
- 0x7c,0x2e,0x0,0x0,0x72,0xbc,0x2,0x61,0xf3,0x4e,0x0,0x0,0x3,0xe4,0x2,0x77,
- 0xf8,0xaa,0x0,0x0,0x13,0x94,0x2,0x7c,0x19,0x8a,0x0,0x0,0x14,0xe5,0x2,0x89,
- 0x29,0x7e,0x0,0x0,0x41,0x64,0x2,0x89,0xc1,0x81,0x0,0x0,0x8e,0xfb,0x2,0x92,
- 0x1b,0xfe,0x0,0x0,0x82,0x5f,0x2,0xb5,0x2d,0xae,0x0,0x0,0x4b,0xc4,0x2,0xc5,
- 0x76,0x61,0x0,0x0,0x0,0x0,0x2,0xc5,0x76,0x61,0x0,0x0,0x92,0xb1,0x2,0xc6,
- 0xd5,0xca,0x0,0x0,0x14,0x4d,0x2,0xe6,0xd3,0xa2,0x0,0x0,0x4d,0x2a,0x2,0xf7,
- 0xb3,0xca,0x0,0x0,0x2e,0x8f,0x3,0x3e,0x21,0x33,0x0,0x0,0x15,0x84,0x3,0x4c,
- 0x3,0x4e,0x0,0x0,0x57,0x12,0x3,0x4f,0x76,0x7e,0x0,0x0,0x72,0x2,0x3,0x57,
- 0xb0,0x17,0x0,0x0,0x1,0xbb,0x3,0x57,0xb0,0x17,0x0,0x0,0x95,0x8,0x3,0x69,
- 0x45,0x7a,0x0,0x0,0x3c,0xda,0x3,0xba,0xa8,0xe5,0x0,0x0,0x62,0xab,0x3,0xca,
- 0x97,0x85,0x0,0x0,0x65,0x9f,0x3,0xdb,0x87,0x6a,0x0,0x0,0x2e,0xdc,0x3,0xf4,
- 0x58,0xee,0x0,0x0,0x2a,0x9,0x3,0xf6,0xdf,0x45,0x0,0x0,0x6e,0x33,0x4,0x8,
- 0xf0,0xbe,0x0,0x0,0x71,0x10,0x4,0x49,0x96,0x8a,0x0,0x0,0x16,0x34,0x4,0x50,
- 0x17,0xc4,0x0,0x0,0x8,0xea,0x4,0x80,0xda,0x34,0x0,0x0,0x4d,0x6,0x4,0x82,
- 0xfd,0x59,0x0,0x0,0x70,0xc2,0x4,0x86,0xaf,0x2e,0x0,0x0,0xa,0xfd,0x4,0x87,
- 0xdc,0xba,0x0,0x0,0xe,0xf3,0x4,0x92,0x8,0xb2,0x0,0x0,0x5f,0xcc,0x4,0x92,
- 0x65,0x9a,0x0,0x0,0x3d,0x7f,0x4,0x93,0x7,0x6a,0x0,0x0,0x15,0x2d,0x4,0x98,
- 0x49,0xbc,0x0,0x0,0x93,0x1,0x4,0x98,0xa0,0x47,0x0,0x0,0x15,0xcd,0x4,0x98,
- 0xa0,0x47,0x0,0x0,0x4d,0xf4,0x4,0x9c,0x6,0xae,0x0,0x0,0x44,0xdd,0x4,0xd2,
- 0xef,0xfe,0x0,0x0,0x1a,0xea,0x4,0xe0,0xf6,0x35,0x0,0x0,0x6c,0x27,0x4,0xeb,
- 0x2f,0xa,0x0,0x0,0x2d,0xf7,0x4,0xf6,0x74,0xde,0x0,0x0,0x1b,0xe9,0x5,0x1b,
- 0xad,0x8a,0x0,0x0,0x2d,0x19,0x5,0x1c,0x96,0x5a,0x0,0x0,0x2d,0x4d,0x5,0x38,
- 0xaa,0xc2,0x0,0x0,0x65,0x7b,0x5,0x4c,0x9f,0x6a,0x0,0x0,0x2f,0xd9,0x5,0x56,
- 0xaf,0x95,0x0,0x0,0x97,0x3d,0x5,0x61,0x3,0x44,0x0,0x0,0xa,0xd,0x5,0x9b,
- 0x88,0x98,0x0,0x0,0x72,0x86,0x5,0x9b,0x88,0x98,0x0,0x0,0x95,0xf5,0x5,0x9c,
- 0x9c,0xc2,0x0,0x0,0x73,0x65,0x5,0xae,0xc3,0x8a,0x0,0x0,0x3e,0xad,0x5,0xcd,
- 0x30,0x15,0x0,0x0,0x95,0x85,0x6,0x26,0x54,0x91,0x0,0x0,0x60,0x99,0x6,0x2d,
- 0x36,0x3e,0x0,0x0,0x46,0xb1,0x6,0x60,0x3a,0x14,0x0,0x0,0x7f,0xc,0x6,0x73,
- 0x98,0x7e,0x0,0x0,0x85,0x9e,0x6,0x83,0xdc,0x2e,0x0,0x0,0x47,0x34,0x6,0x86,
- 0x8a,0xd9,0x0,0x0,0x63,0x3a,0x6,0x8b,0xb5,0x54,0x0,0x0,0x81,0xec,0x6,0xb6,
- 0x6c,0xfe,0x0,0x0,0x70,0x49,0x6,0xe4,0x3a,0x33,0x0,0x0,0x79,0x3a,0x6,0xf8,
- 0x3f,0x1e,0x0,0x0,0x5a,0xf0,0x7,0x1f,0x3b,0x1e,0x0,0x0,0x8c,0x3b,0x7,0x55,
- 0xb3,0xce,0x0,0x0,0x12,0x2f,0x7,0x5f,0x40,0x71,0x0,0x0,0x7c,0x94,0x7,0x6a,
- 0xd3,0xde,0x0,0x0,0x64,0xef,0x7,0x7e,0x12,0xce,0x0,0x0,0x7d,0x67,0x7,0x8b,
- 0x84,0xad,0x0,0x0,0x6c,0x2,0x7,0x93,0x1e,0x9e,0x0,0x0,0x77,0x4c,0x7,0xad,
- 0x58,0x6e,0x0,0x0,0x4c,0x97,0x7,0xd3,0x14,0x2e,0x0,0x0,0x3b,0x83,0x7,0xdc,
- 0x3d,0xbe,0x0,0x0,0x1e,0xa,0x7,0xe0,0x1a,0x4f,0x0,0x0,0x5d,0xb,0x7,0xf9,
- 0x3b,0xfa,0x0,0x0,0x8,0x37,0x8,0x2e,0x78,0xc4,0x0,0x0,0x4d,0x7c,0x8,0x3c,
- 0x76,0x59,0x0,0x0,0x18,0x8b,0x8,0x40,0xf,0xbe,0x0,0x0,0x83,0xe,0x8,0x72,
- 0x3c,0xfe,0x0,0x0,0x59,0x3f,0x8,0x82,0xd3,0xb4,0x0,0x0,0x9,0x44,0x8,0x99,
- 0x50,0xfe,0x0,0x0,0xf,0x53,0x8,0xaa,0xe3,0xe4,0x0,0x0,0x68,0xe6,0x8,0xb3,
- 0x26,0x9e,0x0,0x0,0x25,0xba,0x8,0xb8,0xa6,0x4a,0x0,0x0,0x6d,0x9,0x8,0xcb,
- 0x30,0x7e,0x0,0x0,0x54,0x80,0x8,0xdc,0xf5,0x2e,0x0,0x0,0x47,0x9b,0x8,0xe0,
- 0x7,0x3e,0x0,0x0,0x32,0x46,0x8,0xe0,0x7,0x3e,0x0,0x0,0x6d,0x3a,0x9,0x4,
- 0x4f,0x11,0x0,0x0,0x6,0x4,0x9,0x2d,0xc9,0x42,0x0,0x0,0x1,0xf8,0x9,0x3c,
- 0x6,0xae,0x0,0x0,0x4e,0x46,0x9,0x3d,0xef,0x3a,0x0,0x0,0x2f,0x7b,0x9,0x45,
- 0x92,0xfe,0x0,0x0,0x31,0x94,0x9,0x4c,0x8f,0x69,0x0,0x0,0x4a,0x6d,0x9,0x5c,
- 0xb,0x5e,0x0,0x0,0x7b,0x2a,0x9,0x65,0x8e,0x11,0x0,0x0,0x97,0x10,0x9,0x8a,
- 0x4,0xea,0x0,0x0,0x15,0xff,0x9,0xa2,0x27,0x1e,0x0,0x0,0x8b,0xe8,0x9,0xbb,
- 0x17,0xd1,0x0,0x0,0x7,0x43,0x9,0xc8,0xb4,0xb9,0x0,0x0,0x62,0x5f,0x9,0xf7,
- 0x73,0xca,0x0,0x0,0x2f,0x27,0x9,0xf8,0xba,0xe,0x0,0x0,0x5e,0x2e,0x9,0xfb,
- 0x69,0xba,0x0,0x0,0x17,0x4,0x9,0xfe,0x27,0x8a,0x0,0x0,0x13,0xef,0xa,0x21,
- 0x3c,0x1e,0x0,0x0,0x45,0x82,0xa,0x25,0xf3,0x8e,0x0,0x0,0x10,0xfc,0xa,0x30,
- 0x34,0xee,0x0,0x0,0x86,0xe1,0xa,0x30,0x34,0xee,0x0,0x0,0x96,0xbf,0xa,0x50,
- 0xfd,0xce,0x0,0x0,0x2,0xd0,0xa,0x7b,0x45,0x52,0x0,0x0,0x95,0xb4,0xa,0x85,
- 0xfd,0xa9,0x0,0x0,0x68,0x9a,0xa,0x9c,0x9,0x81,0x0,0x0,0x90,0xce,0xa,0xb0,
- 0xb4,0xb5,0x0,0x0,0x48,0x61,0xa,0xbc,0x8c,0x74,0x0,0x0,0x58,0x96,0xa,0xd7,
- 0x53,0x8a,0x0,0x0,0x2e,0x32,0xa,0xe3,0xe2,0x14,0x0,0x0,0x69,0x16,0xa,0xe5,
- 0x47,0xba,0x0,0x0,0x30,0x11,0xa,0xf8,0x17,0x4,0x0,0x0,0x9,0xa5,0xb,0x14,
- 0x21,0x9,0x0,0x0,0x49,0x3c,0xb,0x2a,0x64,0x7e,0x0,0x0,0x89,0xba,0xb,0x33,
- 0xc3,0x8e,0x0,0x0,0x5b,0x96,0xb,0xa7,0x67,0xe7,0x0,0x0,0xa,0x7c,0xb,0xaa,
- 0xd1,0x2,0x0,0x0,0x79,0x61,0xb,0xaf,0xbd,0x1,0x0,0x0,0x68,0x7,0xb,0xcc,
- 0x5d,0x2a,0x0,0x0,0x17,0xc6,0xb,0xd2,0xf0,0x2e,0x0,0x0,0x0,0xc5,0xb,0xf8,
- 0x7e,0x2e,0x0,0x0,0x5a,0x1b,0xc,0x1b,0xfe,0x7e,0x0,0x0,0x42,0xa6,0xc,0x38,
- 0x78,0xde,0x0,0x0,0x36,0x70,0xc,0x3a,0x32,0x3e,0x0,0x0,0x3e,0xef,0xc,0x46,
- 0x2c,0xc3,0x0,0x0,0x7a,0x9a,0xc,0x54,0x5d,0xa2,0x0,0x0,0x4e,0x18,0xc,0x55,
- 0xec,0x1e,0x0,0x0,0x30,0x87,0xc,0x65,0x27,0x6e,0x0,0x0,0x3d,0xc9,0xc,0x78,
- 0x8e,0x4e,0x0,0x0,0x69,0x98,0xc,0x7a,0x74,0xbe,0x0,0x0,0x5f,0x8,0xc,0x7f,
- 0xf2,0x1e,0x0,0x0,0x4a,0xa2,0xc,0xbb,0x1,0x73,0x0,0x0,0x3c,0x4b,0xc,0xbb,
- 0x1,0x73,0x0,0x0,0x78,0xc,0xc,0xbb,0x1,0x73,0x0,0x0,0x96,0x27,0xc,0xbd,
- 0x72,0x9e,0x0,0x0,0x90,0x33,0xc,0xe0,0xa9,0xbe,0x0,0x0,0x67,0x53,0xc,0xe2,
- 0xdf,0x55,0x0,0x0,0x58,0xd7,0xc,0xf9,0x5e,0xae,0x0,0x0,0x7e,0xd,0xd,0x4,
- 0x5f,0x59,0x0,0x0,0x63,0x93,0xd,0xf,0x4e,0x6e,0x0,0x0,0x37,0xd6,0xd,0x4c,
- 0x1d,0x31,0x0,0x0,0x68,0x41,0xd,0x58,0x98,0x6e,0x0,0x0,0x86,0x3e,0xd,0x9a,
- 0x50,0xf3,0x0,0x0,0x66,0xd1,0xd,0xd4,0x95,0x41,0x0,0x0,0x8c,0xad,0xd,0xd7,
- 0xfc,0x1e,0x0,0x0,0x21,0xdd,0xd,0xe6,0x8f,0x6a,0x0,0x0,0x18,0x2c,0xd,0xec,
- 0xf9,0xc3,0x0,0x0,0x5f,0x55,0xd,0xfd,0xd,0x22,0x0,0x0,0x7,0xe5,0xe,0x13,
- 0x1f,0xfe,0x0,0x0,0x35,0x4b,0xe,0x30,0x3,0xa5,0x0,0x0,0x91,0x89,0xe,0x30,
- 0x6d,0x3e,0x0,0x0,0x43,0xcb,0xe,0x44,0x82,0x3a,0x0,0x0,0x2d,0x85,0xe,0x7e,
- 0xd9,0xce,0x0,0x0,0x37,0x1b,0xe,0x87,0xe7,0x64,0x0,0x0,0x8,0x8a,0xe,0x89,
- 0xf0,0x4e,0x0,0x0,0x78,0x53,0xe,0x9f,0x90,0x9e,0x0,0x0,0x48,0x95,0xe,0x9f,
- 0x90,0x9e,0x0,0x0,0x92,0xe,0xe,0xa8,0x94,0x77,0x0,0x0,0x69,0x3e,0xe,0xb1,
- 0x2b,0xce,0x0,0x0,0x3f,0x90,0xe,0xb2,0x85,0xee,0x0,0x0,0x26,0xad,0xe,0xb4,
- 0x8c,0x1,0x0,0x0,0x6,0xa3,0xe,0xc0,0x3b,0xf1,0x0,0x0,0x60,0x64,0xe,0xd0,
- 0x9d,0x8e,0x0,0x0,0x6a,0x9e,0xe,0xdc,0xdd,0xce,0x0,0x0,0x20,0x97,0xe,0xf1,
- 0x38,0xce,0x0,0x0,0x6f,0x8f,0xe,0xff,0xbf,0x42,0x0,0x0,0x2,0x68,0xf,0x2,
- 0x2,0x21,0x0,0x0,0x84,0x37,0xf,0x47,0x35,0x8e,0x0,0x0,0x1f,0x45,0xf,0x48,
- 0xb8,0x5a,0x0,0x0,0x16,0x89,0xf,0x55,0xd9,0xd1,0x0,0x0,0x57,0xdd,0xf,0x60,
- 0xe2,0x5e,0x0,0x0,0x33,0x75,0xf,0x66,0x94,0x9e,0x0,0x0,0x54,0x46,0xf,0x6e,
- 0x43,0xa5,0x0,0x0,0x79,0x14,0xf,0xaf,0x1f,0x4f,0x0,0x0,0x5d,0x88,0xf,0xb3,
- 0xad,0xaa,0x0,0x0,0x32,0x4,0xf,0xc6,0x3f,0xf3,0x0,0x0,0x5e,0x9d,0xf,0xcb,
- 0x37,0xde,0x0,0x0,0x23,0x16,0xf,0xd2,0xf,0x4e,0x0,0x0,0x2c,0x52,0xf,0xd3,
- 0x69,0x3e,0x0,0x0,0x38,0xb2,0xf,0xe9,0x8a,0xbe,0x0,0x0,0x7b,0xc0,0xf,0xef,
- 0x55,0x95,0x0,0x0,0x7c,0x55,0xf,0xf4,0x81,0xe1,0x0,0x0,0x87,0x6,0xf,0xfd,
- 0x3b,0x5a,0x0,0x0,0xe,0x9f,0x69,0x0,0x0,0x97,0x67,0x3,0x0,0x0,0x0,0x24,
- 0x0,0x41,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6e,0x0,0x65,0x0,0x79,
- 0x0,0x20,0x0,0x4f,0x0,0x6e,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,
- 0x0,0x25,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x41,0x74,
- 0x74,0x6f,0x72,0x6e,0x65,0x79,0x20,0x4f,0x6e,0x6c,0x69,0x6e,0x65,0x20,0x25,0x31,
- 0x7,0x0,0x0,0x0,0xd,0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,
- 0x6f,0x6e,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x44,0x0,0x65,0x0,0x73,0x0,0x63,
- 0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x61,0x0,0x64,0x0,0x6f,
- 0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x76,
- 0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x19,0x44,0x69,0x73,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,
- 0x20,0x66,0x72,0x6f,0x6d,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x2e,0x7,0x0,0x0,
- 0x0,0xd,0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x1,
- 0x3,0x0,0x0,0x0,0x94,0x0,0x45,0x0,0x72,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,
- 0x61,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x63,0x0,
- 0x74,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,
- 0x65,0x0,0x72,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,
- 0x70,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x70,0x0,0x61,0x0,
- 0x6c,0x0,0x2e,0x0,0x20,0x0,0x54,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,
- 0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,
- 0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,
- 0x20,0x0,0x25,0x0,0x31,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x67,0x0,0x75,0x0,
- 0x6e,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x40,0x45,0x72,0x72,0x6f,0x72,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,
- 0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x6d,0x61,0x73,0x74,0x65,0x72,0x20,0x73,0x65,
- 0x72,0x76,0x65,0x72,0x2e,0x20,0x57,0x69,0x6c,0x6c,0x20,0x74,0x72,0x79,0x20,0x61,
- 0x67,0x61,0x69,0x6e,0x20,0x69,0x6e,0x20,0x25,0x31,0x20,0x73,0x65,0x63,0x6f,0x6e,
- 0x64,0x73,0x2e,0x7,0x0,0x0,0x0,0xd,0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,0x63,
- 0x61,0x74,0x69,0x6f,0x6e,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x43,0x0,0x61,0x0,
- 0x72,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,
- 0x7,0x0,0x0,0x0,0xd,0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,
- 0x6f,0x6e,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x72,
- 0x0,0x65,0x0,0x67,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x70,
- 0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x67,0x0,0x65,
- 0x0,0x6e,0x0,0x73,0x0,0x3a,0x0,0xa,0x0,0x25,0x0,0x31,0x0,0x2f,0x0,0x25,
- 0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x4c,0x6f,0x61,0x64,
- 0x69,0x6e,0x67,0x20,0x63,0x68,0x61,0x72,0x73,0x3a,0xa,0x25,0x31,0x2f,0x25,0x32,
- 0x7,0x0,0x0,0x0,0xd,0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,
- 0x6f,0x6e,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x72,
- 0x0,0x65,0x0,0x67,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x6d,
- 0x0,0xfa,0x0,0x73,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x73,0x0,0x3a,0x0,0xa,
- 0x0,0x25,0x0,0x31,0x0,0x2f,0x0,0x25,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x14,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x6d,0x75,0x73,0x69,
- 0x63,0x3a,0xa,0x25,0x31,0x2f,0x25,0x32,0x7,0x0,0x0,0x0,0xd,0x41,0x4f,0x41,
- 0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x1,0x3,0x0,0x0,0x0,0xa2,
- 0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x64,
- 0x0,0x65,0x0,0x73,0x0,0x61,0x0,0x74,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x69,
- 0x0,0x7a,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x21,0x0,0x20,0x0,0x53,0x0,0x75,
- 0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0xe3,0x0,0x6f,
- 0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x31,0x0,0xa,0x0,0x41,0x0,0x63,0x0,0x65,
- 0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x63,0x0,0x65,0x0,0x61,
- 0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6e,0x0,0x65,0x0,0x79,0x0,0x6f,
- 0x0,0x6e,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x2e,0x0,0x63,0x0,0x6f,
- 0x0,0x6d,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x61,
- 0x0,0x74,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x72,
- 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x50,0x4f,0x75,0x74,0x64,
- 0x61,0x74,0x65,0x64,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x21,0x20,0x59,0x6f,
- 0x75,0x72,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3a,0x20,0x25,0x31,0xa,0x50,
- 0x6c,0x65,0x61,0x73,0x65,0x20,0x67,0x6f,0x20,0x74,0x6f,0x20,0x61,0x63,0x65,0x61,
- 0x74,0x74,0x6f,0x72,0x6e,0x65,0x79,0x6f,0x6e,0x6c,0x69,0x6e,0x65,0x2e,0x63,0x6f,
- 0x6d,0x20,0x74,0x6f,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x2e,0x7,0x0,0x0,0x0,
- 0xd,0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x1,0x3,
- 0x0,0x0,0x0,0xdc,0x0,0x4f,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x72,0x0,0x65,
- 0x0,0x75,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x65,0x0,0x72,0x0,0x72,
- 0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x6f,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x74,
- 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x73,
- 0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,
- 0x0,0x72,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x73,
- 0x0,0x2e,0x0,0x20,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x66,0x0,0x69,
- 0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x61,0x0,0x20,
- 0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x78,0x0,0xe3,0x0,0x6f,0x0,0x20,
- 0x0,0xe0,0x0,0x20,0x0,0x49,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6e,
- 0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x72,
- 0x0,0x65,0x0,0x77,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x65,0x0,0x20,
- 0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x6f,
- 0x0,0x76,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x2e,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0x22,0x54,0x68,0x65,0x72,0x65,0x20,
- 0x77,0x61,0x73,0x20,0x61,0x6e,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x63,0x6f,0x6e,
- 0x6e,0x65,0x63,0x74,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x6d,
- 0x61,0x73,0x74,0x65,0x72,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x2e,0xa,0x57,0x65,
- 0x20,0x64,0x65,0x70,0x6c,0x6f,0x79,0x20,0x6d,0x75,0x6c,0x74,0x69,0x70,0x6c,0x65,
- 0x20,0x6d,0x61,0x73,0x74,0x65,0x72,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x73,0x20,
- 0x74,0x6f,0x20,0x6d,0x69,0x74,0x69,0x67,0x61,0x74,0x65,0x20,0x61,0x6e,0x79,0x20,
- 0x70,0x6f,0x73,0x73,0x69,0x62,0x6c,0x65,0x20,0x64,0x6f,0x77,0x6e,0x74,0x69,0x6d,
- 0x65,0x2c,0x20,0x62,0x75,0x74,0x20,0x74,0x68,0x65,0x20,0x63,0x6c,0x69,0x65,0x6e,
- 0x74,0x20,0x61,0x70,0x70,0x65,0x61,0x72,0x73,0x20,0x74,0x6f,0x20,0x68,0x61,0x76,
- 0x65,0x20,0x65,0x78,0x68,0x61,0x75,0x73,0x74,0x65,0x64,0x20,0x61,0x6c,0x6c,0x20,
- 0x70,0x6f,0x73,0x73,0x69,0x62,0x6c,0x65,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x73,
- 0x20,0x6f,0x66,0x20,0x66,0x69,0x6e,0x64,0x69,0x6e,0x67,0x20,0x61,0x6e,0x64,0x20,
- 0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x6f,0x6e,
- 0x65,0x2e,0xa,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x63,0x68,0x65,0x63,0x6b,0x20,
- 0x79,0x6f,0x75,0x72,0x20,0x49,0x6e,0x74,0x65,0x72,0x6e,0x65,0x74,0x20,0x63,0x6f,
- 0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64,0x20,0x66,0x69,0x72,
- 0x65,0x77,0x61,0x6c,0x6c,0x2c,0x20,0x61,0x6e,0x64,0x20,0x70,0x6c,0x65,0x61,0x73,
- 0x65,0x20,0x74,0x72,0x79,0x20,0x61,0x67,0x61,0x69,0x6e,0x2e,0x7,0x0,0x0,0x0,
- 0xd,0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x1,0x3,
- 0x0,0x0,0x0,0x54,0x0,0x56,0x0,0x6f,0x0,0x63,0x0,0xea,0x0,0x20,0x0,0x66,
- 0x0,0x6f,0x0,0x69,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x64,
- 0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x20,
- 0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x72,
- 0x0,0x2e,0x0,0xa,0x0,0x4d,0x0,0x6f,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,
- 0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x29,0x59,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x62,0x61,0x6e,0x6e,0x65,0x64,
- 0x20,0x6f,0x6e,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x2e,
- 0xa,0x52,0x65,0x61,0x73,0x6f,0x6e,0x3a,0x20,0x25,0x31,0x7,0x0,0x0,0x0,0xd,
- 0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x1,0x3,0x0,
- 0x0,0x0,0x4e,0x0,0x56,0x0,0x6f,0x0,0x63,0x0,0xea,0x0,0x20,0x0,0x66,0x0,
- 0x6f,0x0,0x69,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x64,0x0,
- 0x6f,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,
- 0x76,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x2e,0x0,0xa,0x0,0x4d,0x0,
- 0x6f,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,
- 0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x30,0x59,0x6f,0x75,0x20,0x68,
- 0x61,0x76,0x65,0x20,0x62,0x65,0x65,0x6e,0x20,0x62,0x61,0x6e,0x6e,0x65,0x64,0x20,
- 0x66,0x72,0x6f,0x6d,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x2e,
- 0xa,0x52,0x65,0x61,0x73,0x6f,0x6e,0x3a,0x20,0x25,0x31,0x7,0x0,0x0,0x0,0xd,
- 0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x1,0x3,0x0,
- 0x0,0x0,0x50,0x0,0x56,0x0,0x6f,0x0,0x63,0x0,0xea,0x0,0x20,0x0,0x66,0x0,
- 0x6f,0x0,0x69,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x70,0x0,0x75,0x0,0x6c,0x0,
- 0x73,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0,
- 0x72,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x2e,0x0,0xa,0x0,
- 0x4d,0x0,0x6f,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x3a,0x0,0x20,0x0,
- 0x25,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x30,0x59,0x6f,0x75,
- 0x20,0x68,0x61,0x76,0x65,0x20,0x62,0x65,0x65,0x6e,0x20,0x6b,0x69,0x63,0x6b,0x65,
- 0x64,0x20,0x66,0x72,0x6f,0x6d,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x72,0x76,0x65,
- 0x72,0x2e,0xa,0x52,0x65,0x61,0x73,0x6f,0x6e,0x3a,0x20,0x25,0x31,0x7,0x0,0x0,
- 0x0,0xd,0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x1,
- 0x3,0x0,0x0,0x0,0x1a,0x0,0x41,0x0,0x6e,0x0,0x75,0x0,0x6e,0x0,0x63,0x0,
- 0x69,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x73,0x0,0x6f,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x43,0x61,0x73,0x65,0x20,0x41,0x6e,
- 0x6e,0x6f,0x75,0x6e,0x63,0x65,0x72,0x7,0x0,0x0,0x0,0x15,0x41,0x4f,0x43,0x61,
- 0x73,0x65,0x41,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x72,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x54,0x0,0xed,0x0,0x74,0x0,0x75,0x0,
- 0x6c,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x61,0x0,
- 0x73,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x43,
- 0x61,0x73,0x65,0x20,0x74,0x69,0x74,0x6c,0x65,0x3a,0x7,0x0,0x0,0x0,0x15,0x41,
- 0x4f,0x43,0x61,0x73,0x65,0x41,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x72,0x44,0x69,
- 0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x50,0x0,0x72,0x0,0x65,
- 0x0,0x63,0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x2d,0x0,0x73,0x0,0x65,0x0,0x20,
- 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x44,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x73,
- 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x44,0x65,0x66,0x65,
- 0x6e,0x73,0x65,0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x7,0x0,0x0,0x0,0x15,0x41,
- 0x4f,0x43,0x61,0x73,0x65,0x41,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x72,0x44,0x69,
- 0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x50,0x0,0x72,0x0,0x65,
- 0x0,0x63,0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x2d,0x0,0x73,0x0,0x65,0x0,0x20,
- 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x4a,0x0,0x75,0x0,0xed,0x0,0x7a,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4a,0x75,0x64,0x67,0x65,0x20,0x6e,0x65,
- 0x65,0x64,0x65,0x64,0x7,0x0,0x0,0x0,0x15,0x41,0x4f,0x43,0x61,0x73,0x65,0x41,
- 0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x72,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,
- 0x0,0x0,0x0,0x2a,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x73,
- 0x0,0x61,0x0,0x2d,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,
- 0x0,0x4a,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x73,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x75,0x72,0x6f,0x72,0x73,0x20,0x6e,
- 0x65,0x65,0x64,0x65,0x64,0x7,0x0,0x0,0x0,0x15,0x41,0x4f,0x43,0x61,0x73,0x65,
- 0x41,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x72,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,
- 0x3,0x0,0x0,0x0,0x2c,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x69,0x0,
- 0x73,0x0,0x61,0x0,0x2d,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,
- 0x20,0x0,0x50,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,
- 0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x6f,0x73,0x65,
- 0x63,0x75,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x7,0x0,0x0,
- 0x0,0x15,0x41,0x4f,0x43,0x61,0x73,0x65,0x41,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,
- 0x72,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x50,0x0,
- 0x72,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x2d,0x0,0x73,0x0,
- 0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x45,0x0,0x73,0x0,0x74,0x0,
- 0x65,0x0,0x6e,0x0,0xf3,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x6f,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x53,0x74,0x65,0x6e,0x6f,0x67,0x72,
- 0x61,0x70,0x68,0x65,0x72,0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x7,0x0,0x0,0x0,
- 0x15,0x41,0x4f,0x43,0x61,0x73,0x65,0x41,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x72,
- 0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x20,0x0,0x2d,
- 0x0,0x20,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x68,
- 0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,
- 0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0xe7,0x0,0xf5,
- 0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x74,0x0,0x75,0x0,0x61,0x0,0x69,
- 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x20,0x2d,0x20,0x4b,
- 0x65,0x65,0x70,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x73,0x65,0x74,0x74,
- 0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,
- 0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x2,0x6c,0x0,0x3c,0x0,
- 0x68,0x0,0x74,0x0,0x6d,0x0,0x6c,0x0,0x3e,0x0,0x3c,0x0,0x68,0x0,0x65,0x0,
- 0x61,0x0,0x64,0x0,0x2f,0x0,0x3e,0x0,0x3c,0x0,0x62,0x0,0x6f,0x0,0x64,0x0,
- 0x79,0x0,0x3e,0x0,0x44,0x0,0x69,0x0,0x67,0x0,0x69,0x0,0x74,0x0,0x65,0x0,
- 0x20,0x0,0x71,0x0,0x75,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x73,0x0,
- 0x20,0x0,0x70,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x76,0x0,0x72,0x0,0x61,0x0,
- 0x73,0x0,0x2d,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x76,0x0,0x65,0x0,0x20,0x0,
- 0x76,0x0,0x6f,0x0,0x63,0x0,0xea,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,
- 0x65,0x0,0x6a,0x0,0x61,0x0,0x72,0x0,0x2e,0x0,0x20,0x0,0x45,0x0,0x73,0x0,
- 0x74,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x6e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,
- 0x64,0x0,0x69,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,
- 0x69,0x0,0x61,0x0,0x6d,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x69,0x0,0xfa,0x0,
- 0x73,0x0,0x63,0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x64,0x0,
- 0x65,0x0,0x20,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0xfa,0x0,0x73,0x0,0x63,0x0,
- 0x75,0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x2e,0x0,0x20,0x0,0x43,0x0,0x65,0x0,
- 0x72,0x0,0x74,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x71,0x0,0x75,0x0,0x65,0x0,
- 0x2d,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,
- 0x65,0x0,0x69,0x0,0x78,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x63,0x0,0x61,0x0,
- 0x64,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x76,0x0,
- 0x72,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x76,0x0,0x65,0x0,
- 0x20,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x61,0x0,0x20,0x0,
- 0x70,0x0,0x72,0x0,0xf3,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x20,0x0,
- 0x6c,0x0,0x69,0x0,0x6e,0x0,0x68,0x0,0x61,0x0,0x21,0x0,0x3c,0x0,0x62,0x0,
- 0x72,0x0,0x3e,0x0,0x4e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,
- 0x69,0x0,0x78,0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,
- 0x6c,0x0,0x69,0x0,0x6e,0x0,0x68,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,
- 0x6d,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x70,0x0,
- 0x61,0x0,0xe7,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,
- 0x69,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x76,0x0,
- 0x6f,0x0,0x63,0x0,0xea,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0xe1,0x0,
- 0x20,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x64,0x0,
- 0x6f,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x76,0x0,
- 0x65,0x0,0x7a,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x61,0x0,
- 0x6c,0x0,0x67,0x0,0x75,0x0,0xe9,0x0,0x6d,0x0,0x20,0x0,0x75,0x0,0x73,0x0,
- 0x61,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x65,0x0,0x73,0x0,
- 0x70,0x0,0x61,0x0,0xe7,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,
- 0x73,0x0,0x75,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,
- 0x73,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x2e,0x0,0x3c,0x0,
- 0x2f,0x0,0x62,0x0,0x6f,0x0,0x64,0x0,0x79,0x0,0x3e,0x0,0x3c,0x0,0x2f,0x0,
- 0x68,0x0,0x74,0x0,0x6d,0x0,0x6c,0x0,0x3e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x1,0x12,0x3c,0x68,0x74,0x6d,0x6c,0x3e,0x3c,0x68,0x65,0x61,0x64,0x2f,0x3e,
- 0x3c,0x62,0x6f,0x64,0x79,0x3e,0x45,0x6e,0x74,0x65,0x72,0x20,0x61,0x73,0x20,0x6d,
- 0x61,0x6e,0x79,0x20,0x63,0x61,0x6c,0x6c,0x77,0x6f,0x72,0x64,0x73,0x20,0x61,0x73,
- 0x20,0x79,0x6f,0x75,0x20,0x77,0x6f,0x75,0x6c,0x64,0x20,0x6c,0x69,0x6b,0x65,0x2e,
- 0x20,0x54,0x68,0x65,0x73,0x65,0x20,0x61,0x72,0x65,0x20,0x63,0x61,0x73,0x65,0x20,
- 0x69,0x6e,0x73,0x65,0x6e,0x73,0x69,0x74,0x69,0x76,0x65,0x2e,0x20,0x4d,0x61,0x6b,
- 0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x6f,0x20,0x6c,0x65,0x61,0x76,0x65,0x20,
- 0x65,0x76,0x65,0x72,0x79,0x20,0x63,0x61,0x6c,0x6c,0x77,0x6f,0x72,0x64,0x20,0x69,
- 0x6e,0x20,0x69,0x74,0x73,0x20,0x6f,0x77,0x6e,0x20,0x6c,0x69,0x6e,0x65,0x21,0x3c,
- 0x62,0x72,0x3e,0x44,0x6f,0x20,0x6e,0x6f,0x74,0x20,0x6c,0x65,0x61,0x76,0x65,0x20,
- 0x61,0x20,0x6c,0x69,0x6e,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x20,0x73,0x70,
- 0x61,0x63,0x65,0x20,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6e,0x64,0x20,0x2d,
- 0x2d,0x20,0x79,0x6f,0x75,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x61,0x6c,
- 0x65,0x72,0x74,0x65,0x64,0x20,0x65,0x76,0x65,0x72,0x79,0x74,0x69,0x6d,0x65,0x20,
- 0x73,0x6f,0x6d,0x65,0x6f,0x6e,0x65,0x20,0x75,0x73,0x65,0x73,0x20,0x61,0x20,0x73,
- 0x70,0x61,0x63,0x65,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x69,0x72,0x20,0x6d,0x65,
- 0x73,0x73,0x61,0x67,0x65,0x73,0x2e,0x3c,0x2f,0x62,0x6f,0x64,0x79,0x3e,0x3c,0x2f,
- 0x68,0x74,0x6d,0x6c,0x3e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,
- 0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x22,0x0,
- 0x50,0x0,0x65,0x0,0x72,0x0,0x6d,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x72,0x0,
- 0x20,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x73,0x0,
- 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x41,0x6c,0x6c,0x6f,0x77,
- 0x20,0x45,0x66,0x66,0x65,0x63,0x74,0x73,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,
- 0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,
- 0x0,0x0,0x2a,0x0,0x50,0x0,0x65,0x0,0x72,0x0,0x6d,0x0,0x69,0x0,0x74,0x0,
- 0x69,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x65,0x0,
- 0x6e,0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x6b,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x41,0x6c,0x6c,0x6f,0x77,0x20,0x53,0x63,0x72,
- 0x65,0x65,0x6e,0x73,0x68,0x61,0x6b,0x65,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,
- 0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,
- 0x0,0x1,0x6,0x0,0x50,0x0,0x65,0x0,0x72,0x0,0x6d,0x0,0x69,0x0,0x74,0x0,
- 0x65,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x75,0x0,
- 0x74,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x73,0x0,
- 0x73,0x0,0x6f,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,
- 0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x0,0x20,0x0,
- 0x76,0x0,0x65,0x0,0x6a,0x0,0x61,0x0,0x6d,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,
- 0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,
- 0x76,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,
- 0x63,0x0,0xea,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x2c,0x0,
- 0x20,0x0,0x71,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x65,0x0,
- 0x72,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,
- 0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0,0x6a,0x0,0x6f,0x0,
- 0x67,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x20,0x0,
- 0x68,0x0,0xe1,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,
- 0x6f,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,
- 0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0,0x6a,0x0,0x6f,0x0,0x67,0x0,
- 0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x7f,0x41,0x6c,0x6c,0x6f,0x77,0x73,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,
- 0x20,0x6f,0x6e,0x20,0x44,0x69,0x73,0x63,0x6f,0x72,0x64,0x20,0x74,0x6f,0x20,0x73,
- 0x65,0x65,0x20,0x77,0x68,0x61,0x74,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x20,0x79,
- 0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x69,0x6e,0x2c,0x20,0x77,0x68,0x61,0x74,0x20,
- 0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x20,0x61,0x72,0x65,0x20,0x79,0x6f,
- 0x75,0x20,0x70,0x6c,0x61,0x79,0x69,0x6e,0x67,0x2c,0x20,0x61,0x6e,0x64,0x20,0x68,
- 0x6f,0x77,0x20,0x6c,0x6f,0x6e,0x67,0x20,0x79,0x6f,0x75,0x20,0x68,0x61,0x76,0x65,
- 0x20,0x62,0x65,0x65,0x6e,0x20,0x70,0x6c,0x61,0x79,0x69,0x6e,0x67,0x20,0x66,0x6f,
- 0x72,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,
- 0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xa6,0x0,0x50,0x0,0x65,
- 0x0,0x72,0x0,0x6d,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x66,
- 0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,
- 0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x41,
- 0x0,0x56,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x3a,0x0,0x20,0x0,0x50,0x0,0x6f,
- 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x61,
- 0x0,0x72,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x76,0x0,0x75,0x0,0x6c,
- 0x0,0x73,0x0,0xf5,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x76,
- 0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0xe0,0x0,0x20,0x0,0x69,0x0,0x6d,
- 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x74,0x0,0x72,
- 0x0,0x65,0x0,0x6d,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x29,0x0,0x2e,
- 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x69,0x41,0x6c,0x6c,0x6f,
- 0x77,0x73,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x65,0x66,0x66,0x65,0x63,0x74,
- 0x73,0x2e,0x20,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x20,0x74,0x68,0x69,0x73,0x20,
- 0x69,0x66,0x20,0x79,0x6f,0x75,0x20,0x68,0x61,0x76,0x65,0x20,0x63,0x6f,0x6e,0x63,
- 0x65,0x72,0x6e,0x73,0x20,0x6f,0x72,0x20,0x69,0x73,0x73,0x75,0x65,0x73,0x20,0x77,
- 0x69,0x74,0x68,0x20,0x70,0x68,0x6f,0x74,0x6f,0x73,0x65,0x6e,0x73,0x69,0x74,0x69,
- 0x76,0x69,0x74,0x79,0x20,0x61,0x6e,0x64,0x2f,0x6f,0x72,0x20,0x73,0x65,0x69,0x7a,
- 0x75,0x72,0x65,0x73,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,
- 0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xa6,0x0,
- 0x50,0x0,0x65,0x0,0x72,0x0,0x6d,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,
- 0x6f,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x72,0x0,
- 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,
- 0x20,0x0,0x28,0x0,0x41,0x0,0x56,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x3a,0x0,
- 0x20,0x0,0x50,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x61,0x0,
- 0x75,0x0,0x73,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,
- 0x76,0x0,0x75,0x0,0x6c,0x0,0x73,0x0,0xf5,0x0,0x65,0x0,0x73,0x0,0x20,0x0,
- 0x64,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0xe0,0x0,
- 0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,
- 0x20,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x69,0x0,0x64,0x0,0x61,0x0,
- 0x73,0x0,0x29,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x68,0x41,
- 0x6c,0x6c,0x6f,0x77,0x73,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x73,0x68,0x61,0x6b,
- 0x69,0x6e,0x67,0x2e,0x20,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x20,0x74,0x68,0x69,
- 0x73,0x20,0x69,0x66,0x20,0x79,0x6f,0x75,0x20,0x68,0x61,0x76,0x65,0x20,0x63,0x6f,
- 0x6e,0x63,0x65,0x72,0x6e,0x73,0x20,0x6f,0x72,0x20,0x69,0x73,0x73,0x75,0x65,0x73,
- 0x20,0x77,0x69,0x74,0x68,0x20,0x70,0x68,0x6f,0x74,0x6f,0x73,0x65,0x6e,0x73,0x69,
- 0x74,0x69,0x76,0x69,0x74,0x79,0x20,0x61,0x6e,0x64,0x2f,0x6f,0x72,0x20,0x73,0x65,
- 0x69,0x7a,0x75,0x72,0x65,0x73,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,
- 0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,
- 0xa,0x0,0xc1,0x0,0x75,0x0,0x64,0x0,0x69,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x5,0x41,0x75,0x64,0x69,0x6f,0x7,0x0,0x0,0x0,0xf,0x41,
- 0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,
- 0x0,0x0,0x0,0x2a,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,
- 0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,
- 0x0,0x20,0x0,0xe1,0x0,0x75,0x0,0x64,0x0,0x69,0x0,0x6f,0x0,0x3a,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x41,0x75,0x64,0x69,0x6f,0x20,0x64,0x65,
- 0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,
- 0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x28,0x0,
- 0x52,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,
- 0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0xe1,0x0,0x74,0x0,
- 0x69,0x0,0x63,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x12,0x41,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x20,0x4c,0x6f,0x67,0x67,0x69,
- 0x6e,0x67,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,
- 0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4d,0x0,
- 0x53,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x63,0x0,
- 0x6b,0x0,0x75,0x0,0x70,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0xa,0x42,0x61,0x63,0x6b,0x75,0x70,0x20,0x4d,0x53,0x3a,0x7,0x0,0x0,0x0,0xf,
- 0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,
- 0x3,0x0,0x0,0x0,0x20,0x0,0x42,0x0,0x6c,0x0,0x69,0x0,0x70,0x0,0x73,0x0,
- 0x20,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,
- 0x63,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x42,
- 0x6c,0x61,0x6e,0x6b,0x20,0x62,0x6c,0x69,0x70,0x73,0x3a,0x7,0x0,0x0,0x0,0xf,
- 0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,
- 0x3,0x0,0x0,0x0,0x1a,0x0,0x54,0x0,0x61,0x0,0x78,0x0,0x61,0x0,0x20,0x0,
- 0x64,0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x70,0x0,0x3a,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x42,0x6c,0x69,0x70,0x20,0x72,0x61,
- 0x74,0x65,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,
- 0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0xff,0xff,0xff,0xff,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x42,0x6c,0x69,0x70,0x73,0x3a,0x7,0x0,0x0,
- 0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x43,0x0,0x4d,0x0,0x3a,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x43,0x4d,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,
- 0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,
- 0x0,0x0,0x0,0x1c,0x0,0x50,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x76,0x0,0x72,
- 0x0,0x61,0x0,0x73,0x0,0x2d,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x76,0x0,0x65,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x61,0x6c,0x6c,0x77,0x6f,
- 0x72,0x64,0x73,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,
- 0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x43,0x0,
- 0x61,0x0,0x73,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x43,
- 0x61,0x73,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,
- 0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xa,0x0,
- 0x43,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x7,0x43,0x61,0x73,0x69,0x6e,0x67,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,
- 0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,
- 0x0,0x0,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20,
- 0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x4c,0x0,0x6f,0x0,0x67,0x0,0x20,0x0,0x49,
- 0x0,0x43,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x6f,
- 0x6c,0x6f,0x72,0x73,0x20,0x69,0x6e,0x20,0x49,0x43,0x20,0x4c,0x6f,0x67,0x3a,0x7,
- 0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,
- 0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x43,0x0,0x61,0x0,0x69,0x0,
- 0x78,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x62,0x0,
- 0x61,0x0,0x74,0x0,0x65,0x0,0x2d,0x0,0x70,0x0,0x61,0x0,0x70,0x0,0x6f,0x0,
- 0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,
- 0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x3a,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73,0x74,0x6f,0x6d,0x20,
- 0x43,0x68,0x61,0x74,0x62,0x6f,0x78,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,
- 0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,
- 0x0,0x0,0x0,0x2a,0x0,0x4e,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x73,0x0,0x20,
- 0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6c,
- 0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x3a,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73,0x74,0x6f,0x6d,0x20,0x73,
- 0x68,0x6f,0x77,0x6e,0x61,0x6d,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,
- 0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,
- 0x0,0x0,0x2e,0x0,0x4e,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x20,0x0,0x64,0x0,
- 0x65,0x0,0x20,0x0,0x75,0x0,0x73,0x0,0x75,0x0,0xe1,0x0,0x72,0x0,0x69,0x0,
- 0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0xe3,0x0,0x6f,0x0,
- 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x44,0x65,0x66,0x61,0x75,
- 0x6c,0x74,0x20,0x75,0x73,0x65,0x72,0x6e,0x61,0x6d,0x65,0x3a,0x7,0x0,0x0,0x0,
- 0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,
- 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x44,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x73,
- 0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x44,0x65,
- 0x66,0x65,0x6e,0x73,0x65,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,
- 0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0xff,0xff,0xff,0xff,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x44,0x69,0x73,0x63,0x6f,0x72,
- 0x64,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,
- 0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x41,0x0,0x74,
- 0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x53,0x0,0x46,
- 0x0,0x58,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x6f,
- 0x0,0x70,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x45,0x6e,
- 0x61,0x62,0x6c,0x65,0x20,0x4c,0x6f,0x6f,0x70,0x69,0x6e,0x67,0x20,0x53,0x46,0x58,
- 0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,
- 0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4a,0x0,0x6f,0x0,
- 0x67,0x0,0x61,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x61,0x0,
- 0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x47,0x61,0x6d,
- 0x65,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,
- 0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x1,0x20,0x0,
- 0x46,0x0,0x6f,0x0,0x72,0x0,0x6e,0x0,0x65,0x0,0x63,0x0,0x65,0x0,0x20,0x0,
- 0x6f,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,
- 0x70,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,
- 0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x61,0x0,
- 0x69,0x0,0x78,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,
- 0x65,0x0,0x6c,0x0,0x65,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x27,0x0,
- 0x53,0x0,0x68,0x0,0x6f,0x0,0x77,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,
- 0x73,0x0,0x27,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x6a,0x0,0x6f,0x0,
- 0x67,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,
- 0x64,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,
- 0x61,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,
- 0x6c,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x64,0x0,
- 0x65,0x0,0x76,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x62,0x0,
- 0x69,0x0,0x72,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x73,0x0,
- 0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,
- 0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,
- 0x6e,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x73,0x0,
- 0x6f,0x0,0x6e,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x2e,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x99,0x47,0x69,0x76,0x65,0x73,0x20,0x74,
- 0x68,0x65,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x20,0x76,0x61,0x6c,0x75,0x65,
- 0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x65,0x20,0x69,0x6e,0x2d,0x67,0x61,0x6d,0x65,
- 0x20,0x27,0x43,0x75,0x73,0x74,0x6f,0x6d,0x20,0x73,0x68,0x6f,0x77,0x6e,0x61,0x6d,
- 0x65,0x73,0x27,0x20,0x74,0x69,0x63,0x6b,0x62,0x6f,0x78,0x2c,0x20,0x77,0x68,0x69,
- 0x63,0x68,0x20,0x69,0x6e,0x20,0x74,0x75,0x72,0x6e,0x20,0x64,0x65,0x74,0x65,0x72,
- 0x6d,0x69,0x6e,0x65,0x73,0x20,0x77,0x68,0x65,0x74,0x68,0x65,0x72,0x20,0x74,0x68,
- 0x65,0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,0x20,0x73,0x68,0x6f,0x75,0x6c,0x64,0x20,
- 0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x63,0x75,0x73,0x74,0x6f,0x6d,0x20,0x69,
- 0x6e,0x2d,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x20,0x6e,0x61,0x6d,0x65,
- 0x73,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,
- 0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x43,0x0,0x61,
- 0x0,0x73,0x0,0x6f,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0xe,0x48,0x6f,0x73,0x74,0x69,0x6e,0x67,0x20,0x63,0x61,0x73,0x65,0x73,0x3a,
- 0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,
- 0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x94,0x0,0x53,0x0,0x65,0x0,0x20,
- 0x0,0x6d,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x2c,
- 0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x6f,
- 0x0,0x73,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x73,0x0,0x74,
- 0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0xe3,
- 0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0x61,
- 0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,
- 0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x6c,0x0,0x76,0x0,0x6f,0x0,0x73,
- 0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x73,0x0,0x74,
- 0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x67,0x0,0x73,0x0,0x2e,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x47,0x49,0x66,0x20,0x63,0x68,0x65,0x63,0x6b,
- 0x65,0x64,0x2c,0x20,0x61,0x6c,0x6c,0x20,0x6c,0x6f,0x67,0x73,0x20,0x77,0x69,0x6c,
- 0x6c,0x20,0x62,0x65,0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x61,0x6c,
- 0x6c,0x79,0x20,0x77,0x72,0x69,0x74,0x74,0x65,0x6e,0x20,0x69,0x6e,0x20,0x74,0x68,
- 0x65,0x20,0x2f,0x6c,0x6f,0x67,0x73,0x20,0x66,0x6f,0x6c,0x64,0x65,0x72,0x2e,0x7,
- 0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,
- 0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x7c,0x0,0x53,0x0,0x65,0x0,0x20,0x0,
- 0x6d,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x2c,0x0,
- 0x20,0x0,0x76,0x0,0x6f,0x0,0x63,0x0,0xea,0x0,0x20,0x0,0x61,0x0,0x70,0x0,
- 0x61,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x65,0x0,0x72,0x0,0xe1,0x0,0x20,0x0,
- 0x65,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x73,0x0,
- 0x20,0x0,0x43,0x0,0x4d,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,
- 0x73,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x6e,0x0,
- 0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x76,0x0,0x69,0x0,0x64,0x0,
- 0x6f,0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x44,0x49,
- 0x66,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2c,0x20,0x79,0x6f,0x75,0x20,0x77,
- 0x69,0x6c,0x6c,0x20,0x61,0x70,0x70,0x65,0x61,0x72,0x20,0x61,0x6d,0x6f,0x6e,0x67,
- 0x73,0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x6f,0x74,0x65,0x6e,0x74,0x69,0x61,0x6c,
- 0x20,0x43,0x4d,0x73,0x20,0x6f,0x6e,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x72,0x76,
- 0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,
- 0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xc6,0x0,0x53,0x0,
- 0x65,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x61,0x0,0x64,0x0,
- 0x6f,0x0,0x2c,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x63,0x0,0xea,0x0,0x20,0x0,
- 0x72,0x0,0x65,0x0,0x63,0x0,0x65,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0xe1,0x0,
- 0x20,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x73,0x0,
- 0x20,0x0,0x73,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,
- 0x73,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0xfa,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,
- 0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x61,0x0,
- 0x73,0x0,0x6f,0x0,0x73,0x0,0x2c,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0,
- 0x75,0x0,0x6d,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,
- 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x66,0x0,0x65,0x0,
- 0x73,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x76,0x0,
- 0x65,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x74,0x0,
- 0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x53,0x49,0x66,0x20,
- 0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2c,0x20,0x79,0x6f,0x75,0x20,0x77,0x69,0x6c,
- 0x6c,0x20,0x67,0x65,0x74,0x20,0x61,0x6c,0x65,0x72,0x74,0x73,0x20,0x61,0x62,0x6f,
- 0x75,0x74,0x20,0x63,0x61,0x73,0x65,0x20,0x61,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,
- 0x6d,0x65,0x6e,0x74,0x73,0x20,0x69,0x66,0x20,0x61,0x20,0x64,0x65,0x66,0x65,0x6e,
- 0x73,0x65,0x20,0x73,0x70,0x6f,0x74,0x20,0x69,0x73,0x20,0x6f,0x70,0x65,0x6e,0x2e,
- 0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,
- 0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xc6,0x0,0x53,0x0,0x65,0x0,0x20,
- 0x0,0x6d,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x2c,
- 0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x63,0x0,0xea,0x0,0x20,0x0,0x72,0x0,0x65,
- 0x0,0x63,0x0,0x65,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0xe1,0x0,0x20,0x0,0x61,
- 0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x73,
- 0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x73,0x0,0x20,
- 0x0,0x61,0x0,0x6e,0x0,0xfa,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x73,
- 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x73,0x0,0x6f,
- 0x0,0x73,0x0,0x2c,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x6d,
- 0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x64,
- 0x0,0x6f,0x0,0x20,0x0,0x6a,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x6f,
- 0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x72,
- 0x0,0x20,0x0,0x61,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x6f,0x0,0x2e,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x51,0x49,0x66,0x20,0x63,0x68,0x65,
- 0x63,0x6b,0x65,0x64,0x2c,0x20,0x79,0x6f,0x75,0x20,0x77,0x69,0x6c,0x6c,0x20,0x67,
- 0x65,0x74,0x20,0x61,0x6c,0x65,0x72,0x74,0x73,0x20,0x61,0x62,0x6f,0x75,0x74,0x20,
- 0x63,0x61,0x73,0x65,0x20,0x61,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x6d,0x65,0x6e,
- 0x74,0x73,0x20,0x69,0x66,0x20,0x61,0x20,0x6a,0x75,0x72,0x6f,0x72,0x20,0x73,0x70,
- 0x6f,0x74,0x20,0x69,0x73,0x20,0x6f,0x70,0x65,0x6e,0x2e,0x7,0x0,0x0,0x0,0xf,
- 0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,
- 0x3,0x0,0x0,0x0,0xd8,0x0,0x53,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,
- 0x72,0x0,0x63,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x76,0x0,
- 0x6f,0x0,0x63,0x0,0xea,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x65,0x0,
- 0x62,0x0,0x65,0x0,0x72,0x0,0xe1,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,
- 0x72,0x0,0x74,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x62,0x0,
- 0x72,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,
- 0xfa,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,
- 0x65,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x73,0x0,0x2c,0x0,
- 0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,
- 0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,
- 0x64,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x0,
- 0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x69,0x0,
- 0x76,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0,
- 0x6f,0x0,0x6e,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x2e,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x56,0x49,0x66,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,
- 0x64,0x2c,0x20,0x79,0x6f,0x75,0x20,0x77,0x69,0x6c,0x6c,0x20,0x67,0x65,0x74,0x20,
- 0x61,0x6c,0x65,0x72,0x74,0x73,0x20,0x61,0x62,0x6f,0x75,0x74,0x20,0x63,0x61,0x73,
- 0x65,0x20,0x61,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x6d,0x65,0x6e,0x74,0x73,0x20,
- 0x69,0x66,0x20,0x61,0x20,0x70,0x72,0x6f,0x73,0x65,0x63,0x75,0x74,0x6f,0x72,0x20,
- 0x73,0x70,0x6f,0x74,0x20,0x69,0x73,0x20,0x6f,0x70,0x65,0x6e,0x2e,0x7,0x0,0x0,
- 0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0x0,0x0,0x0,0xca,0x0,0x53,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,
- 0x61,0x0,0x72,0x0,0x63,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,
- 0x76,0x0,0x6f,0x0,0x63,0x0,0xea,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x63,0x0,
- 0x65,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0xe1,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,
- 0x65,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,
- 0x62,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0xfa,0x0,0x6e,0x0,
- 0x63,0x0,0x69,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,
- 0x63,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x73,0x0,0x2c,0x0,0x20,0x0,0x73,0x0,
- 0x65,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,
- 0x61,0x0,0x6c,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0,
- 0x74,0x0,0x65,0x0,0x6e,0x0,0xf3,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x66,0x0,
- 0x6f,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x65,0x0,
- 0x72,0x0,0x20,0x0,0x61,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x6f,0x0,
- 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x58,0x49,0x66,0x20,0x63,0x68,
- 0x65,0x63,0x6b,0x65,0x64,0x2c,0x20,0x79,0x6f,0x75,0x20,0x77,0x69,0x6c,0x6c,0x20,
- 0x67,0x65,0x74,0x20,0x61,0x6c,0x65,0x72,0x74,0x73,0x20,0x61,0x62,0x6f,0x75,0x74,
- 0x20,0x63,0x61,0x73,0x65,0x20,0x61,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x6d,0x65,
- 0x6e,0x74,0x73,0x20,0x69,0x66,0x20,0x61,0x20,0x73,0x74,0x65,0x6e,0x6f,0x67,0x72,
- 0x61,0x70,0x68,0x65,0x72,0x20,0x73,0x70,0x6f,0x74,0x20,0x69,0x73,0x20,0x6f,0x70,
- 0x65,0x6e,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,
- 0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xc2,0x0,0x53,0x0,
- 0x65,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x61,0x0,0x64,0x0,
- 0x6f,0x0,0x2c,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x63,0x0,0xea,0x0,0x20,0x0,
- 0x72,0x0,0x65,0x0,0x63,0x0,0x65,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0xe1,0x0,
- 0x20,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x73,0x0,
- 0x20,0x0,0x73,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,
- 0x73,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0xfa,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,
- 0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x61,0x0,
- 0x73,0x0,0x6f,0x0,0x73,0x0,0x2c,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0,
- 0x6f,0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,
- 0x64,0x0,0x6f,0x0,0x20,0x0,0x6a,0x0,0x75,0x0,0xed,0x0,0x7a,0x0,0x3a,0x0,
- 0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x72,0x0,
- 0x20,0x0,0x61,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x6f,0x0,0x2e,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x53,0x49,0x66,0x20,0x63,0x68,0x65,0x63,
- 0x6b,0x65,0x64,0x2c,0x20,0x79,0x6f,0x75,0x20,0x77,0x69,0x6c,0x6c,0x20,0x67,0x65,
- 0x74,0x20,0x61,0x6c,0x65,0x72,0x74,0x73,0x20,0x61,0x62,0x6f,0x75,0x74,0x20,0x63,
- 0x61,0x73,0x65,0x20,0x61,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x6d,0x65,0x6e,0x74,
- 0x73,0x20,0x69,0x66,0x20,0x74,0x68,0x65,0x20,0x6a,0x75,0x64,0x67,0x65,0x20,0x73,
- 0x70,0x6f,0x74,0x20,0x69,0x73,0x20,0x6f,0x70,0x65,0x6e,0x2e,0x7,0x0,0x0,0x0,
- 0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,
- 0x1,0x3,0x0,0x0,0x0,0x82,0x0,0x53,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x61,
- 0x0,0x72,0x0,0x63,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x76,
- 0x0,0x6f,0x0,0x63,0x0,0xea,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0xe1,
- 0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x64,
- 0x0,0x6f,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,
- 0x0,0x20,0x0,0x68,0x0,0x6f,0x0,0x75,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x65,
- 0x0,0x6d,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0xfa,0x0,0x6e,0x0,0x63,0x0,0x69,
- 0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x61,
- 0x0,0x73,0x0,0x6f,0x0,0x73,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x39,0x49,0x66,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2c,0x20,0x79,0x6f,
- 0x75,0x20,0x77,0x69,0x6c,0x6c,0x20,0x67,0x65,0x74,0x20,0x61,0x6c,0x65,0x72,0x74,
- 0x73,0x20,0x61,0x62,0x6f,0x75,0x74,0x20,0x63,0x61,0x73,0x65,0x20,0x61,0x6e,0x6e,
- 0x6f,0x75,0x6e,0x63,0x65,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x7,0x0,0x0,0x0,0xf,
- 0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,
- 0x3,0x0,0x0,0x1,0x26,0x0,0x53,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x73,0x0,
- 0x20,0x0,0x70,0x0,0x65,0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x73,0x0,
- 0x61,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,
- 0x6e,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,
- 0x65,0x0,0x72,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,
- 0x66,0x0,0x61,0x0,0x6c,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,
- 0x2c,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x6a,0x0,0x6f,0x0,0x67,0x0,0x6f,0x0,
- 0x20,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0xe1,0x0,
- 0x20,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,
- 0x65,0x0,0xe7,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6e,0x0,
- 0x65,0x0,0x63,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x71,0x0,
- 0x75,0x0,0x69,0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x75,0x0,
- 0x73,0x0,0x61,0x0,0x72,0x0,0xe1,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,
- 0x6f,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,
- 0x65,0x0,0x72,0x0,0x65,0x0,0xe7,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,
- 0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,
- 0x72,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,
- 0x70,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x62,0x0,
- 0x61,0x0,0x63,0x0,0x6b,0x0,0x75,0x0,0x70,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x7b,0x49,0x66,0x20,0x74,0x68,0x65,0x20,0x62,0x75,0x69,0x6c,
- 0x74,0x2d,0x69,0x6e,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x20,0x6c,0x6f,0x6f,0x6b,
- 0x75,0x70,0x73,0x20,0x66,0x61,0x69,0x6c,0x2c,0x20,0x74,0x68,0x65,0x20,0x67,0x61,
- 0x6d,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x74,0x72,0x79,0x20,0x74,0x68,0x65,0x20,
- 0x61,0x64,0x64,0x72,0x65,0x73,0x73,0x20,0x67,0x69,0x76,0x65,0x6e,0x20,0x68,0x65,
- 0x72,0x65,0x20,0x61,0x6e,0x64,0x20,0x75,0x73,0x65,0x20,0x69,0x74,0x20,0x61,0x73,
- 0x20,0x61,0x20,0x62,0x61,0x63,0x6b,0x75,0x70,0x20,0x6d,0x61,0x73,0x74,0x65,0x72,
- 0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x20,0x61,0x64,0x64,0x72,0x65,0x73,0x73,0x2e,
- 0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,
- 0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x90,0x0,0x53,0x0,0x65,0x0,0x20,
- 0x0,0x6d,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x2c,
- 0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x73,
- 0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,
- 0x0,0x65,0x0,0x72,0x0,0xe1,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x63,
- 0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x6d,0x0,0x62,0x0,0x6f,0x0,0x20,0x0,0x64,
- 0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x20,
- 0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x55,0x0,0x54,0x0,0x43,0x0,0x20,0x0,0x61,
- 0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,
- 0x0,0x6e,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x3f,0x49,0x66,0x20,0x74,0x69,0x63,0x6b,0x65,0x64,0x2c,0x20,0x6c,
- 0x6f,0x67,0x20,0x77,0x69,0x6c,0x6c,0x20,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x20,
- 0x61,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x20,0x69,0x6e,0x20,0x55,
- 0x54,0x43,0x20,0x62,0x65,0x66,0x6f,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x6e,0x61,
- 0x6d,0x65,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,
- 0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xb0,0x0,0x53,0x0,
- 0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x69,0x0,
- 0x6f,0x0,0x6e,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x6e,0x0,
- 0x6f,0x0,0x76,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,
- 0x73,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x69,0x0,
- 0x72,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x70,0x0,0x61,0x0,0x72,0x0,
- 0x65,0x0,0x63,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,
- 0x70,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,
- 0x66,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x28,0x0,
- 0x61,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,
- 0x6d,0x0,0x6f,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x61,0x0,
- 0x74,0x0,0x20,0x0,0x4f,0x0,0x4f,0x0,0x43,0x0,0x29,0x0,0x2e,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x8f,0x49,0x66,0x20,0x74,0x69,0x63,0x6b,0x65,0x64,
- 0x2c,0x20,0x6e,0x65,0x77,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x73,0x20,0x77,
- 0x69,0x6c,0x6c,0x20,0x61,0x70,0x70,0x65,0x61,0x72,0x20,0x61,0x74,0x20,0x74,0x68,
- 0x65,0x20,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x20,0x28,0x6c,0x69,0x6b,0x65,0x20,0x74,
- 0x68,0x65,0x20,0x4f,0x4f,0x43,0x20,0x63,0x68,0x61,0x74,0x6c,0x6f,0x67,0x29,0x2e,
- 0x20,0x54,0x68,0x65,0x20,0x74,0x72,0x61,0x64,0x69,0x74,0x69,0x6f,0x6e,0x61,0x6c,
- 0x20,0x28,0x41,0x4f,0x31,0x29,0x20,0x62,0x65,0x68,0x61,0x76,0x69,0x6f,0x75,0x72,
- 0x20,0x69,0x73,0x20,0x65,0x71,0x75,0x69,0x76,0x61,0x6c,0x65,0x6e,0x74,0x20,0x74,
- 0x6f,0x20,0x74,0x68,0x69,0x73,0x20,0x62,0x65,0x69,0x6e,0x67,0x20,0x75,0x6e,0x74,
- 0x69,0x63,0x6b,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,
- 0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x1,0x3c,
- 0x0,0x53,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x61,
- 0x0,0x64,0x0,0x61,0x0,0x2c,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x76,0x0,0x61,
- 0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x61,0x0,0x67,
- 0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x70,0x0,0x61,0x0,0x72,
- 0x0,0x65,0x0,0x63,0x0,0x65,0x0,0x72,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x73,
- 0x0,0x65,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x6d,
- 0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x61,
- 0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x61,0x0,0x67,0x0,0x65,
- 0x0,0x6d,0x0,0x20,0x0,0x61,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x63,
- 0x0,0x65,0x0,0x72,0x0,0xe1,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x70,
- 0x0,0x72,0x0,0xf3,0x0,0x78,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x6c,
- 0x0,0x69,0x0,0x6e,0x0,0x68,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x70,0x0,0xf3,
- 0x0,0x73,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6d,0x0,0x65,
- 0x0,0x2e,0x0,0x20,0x0,0x51,0x0,0x75,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,
- 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x6d,0x0,0x61,0x0,0x72,0x0,0x63,
- 0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x65,
- 0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x20,
- 0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,0x27,0x0,0x6e,0x0,0x6f,
- 0x0,0x6d,0x0,0x65,0x0,0x3a,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,
- 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x27,0x0,0x2e,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x99,0x49,0x66,0x20,0x74,0x69,0x63,0x6b,0x65,0x64,0x2c,
- 0x20,0x6e,0x65,0x77,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x73,0x20,0x77,0x69,
- 0x6c,0x6c,0x20,0x61,0x70,0x70,0x65,0x61,0x72,0x20,0x73,0x65,0x70,0x61,0x72,0x61,
- 0x74,0x65,0x64,0x2c,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x6d,0x65,
- 0x73,0x73,0x61,0x67,0x65,0x20,0x63,0x6f,0x6d,0x69,0x6e,0x67,0x20,0x6f,0x6e,0x20,
- 0x74,0x68,0x65,0x20,0x6e,0x65,0x78,0x74,0x20,0x6c,0x69,0x6e,0x65,0x20,0x61,0x66,
- 0x74,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x6e,0x61,0x6d,0x65,0x2e,0x20,0x57,0x68,
- 0x65,0x6e,0x20,0x75,0x6e,0x74,0x69,0x63,0x6b,0x65,0x64,0x2c,0x20,0x69,0x74,0x20,
- 0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x73,0x20,0x69,0x74,0x20,0x61,0x73,0x20,0x27,
- 0x6e,0x61,0x6d,0x65,0x3a,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x27,0x2e,0x7,
- 0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,
- 0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xba,0x0,0x53,0x0,0x65,0x0,0x20,0x0,
- 0x61,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x2c,0x0,
- 0x20,0x0,0x6f,0x0,0x20,0x0,0x6a,0x0,0x6f,0x0,0x67,0x0,0x6f,0x0,0x20,0x0,
- 0x70,0x0,0x65,0x0,0x72,0x0,0x6d,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x72,0x0,
- 0xe1,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x66,0x0,
- 0x65,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,
- 0x6e,0x0,0x6f,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,
- 0x20,0x0,0x6c,0x0,0x6f,0x0,0x6f,0x0,0x70,0x0,0x20,0x0,0x73,0x0,0x65,0x0,
- 0x6a,0x0,0x61,0x0,0x6d,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x70,0x0,0x72,0x0,
- 0x6f,0x0,0x64,0x0,0x75,0x0,0x7a,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,
- 0x20,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0xe9,0x0,0x2d,0x0,
- 0x61,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0xe7,0x0,0xf5,0x0,0x65,0x0,
- 0x73,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4c,0x49,0x66,0x20,
- 0x74,0x72,0x75,0x65,0x2c,0x20,0x74,0x68,0x65,0x20,0x67,0x61,0x6d,0x65,0x20,0x77,
- 0x69,0x6c,0x6c,0x20,0x61,0x6c,0x6c,0x6f,0x77,0x20,0x6c,0x6f,0x6f,0x70,0x69,0x6e,
- 0x67,0x20,0x73,0x6f,0x75,0x6e,0x64,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x73,0x20,
- 0x74,0x6f,0x20,0x70,0x6c,0x61,0x79,0x20,0x6f,0x6e,0x20,0x70,0x72,0x65,0x61,0x6e,
- 0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,
- 0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,
- 0x0,0x0,0xb0,0x0,0x53,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x74,0x0,0x69,0x0,
- 0x76,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,
- 0x6a,0x0,0x6f,0x0,0x67,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x69,0x0,
- 0x74,0x0,0x69,0x0,0x72,0x0,0xe1,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,
- 0x73,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,
- 0x6e,0x0,0x6f,0x0,0x72,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,
- 0x73,0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x61,0x0,0x6e,0x0,
- 0x64,0x0,0x6f,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x65,0x0,0x73,0x0,
- 0x70,0x0,0x61,0x0,0xe7,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,
- 0x69,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,
- 0x64,0x0,0x6f,0x0,0x20,0x0,0x22,0x0,0x64,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,
- 0x22,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4b,0x49,0x66,0x20,
- 0x74,0x72,0x75,0x65,0x2c,0x20,0x74,0x68,0x65,0x20,0x67,0x61,0x6d,0x65,0x20,0x77,
- 0x69,0x6c,0x6c,0x20,0x70,0x6c,0x61,0x79,0x20,0x61,0x20,0x62,0x6c,0x69,0x70,0x20,
- 0x73,0x6f,0x75,0x6e,0x64,0x20,0x65,0x76,0x65,0x6e,0x20,0x77,0x68,0x65,0x6e,0x20,
- 0x61,0x20,0x73,0x70,0x61,0x63,0x65,0x20,0x69,0x73,0x20,0x27,0x62,0x65,0x69,0x6e,
- 0x67,0x20,0x73,0x61,0x69,0x64,0x27,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,
- 0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,
- 0x0,0x6a,0x0,0x53,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x63,0x0,0xea,
- 0x0,0x20,0x0,0xe9,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x43,0x0,0x4d,
- 0x0,0x2c,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x72,0x0,0x61,
- 0x0,0x20,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x73,0x0,0x6f,
- 0x0,0x73,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,
- 0x0,0x73,0x0,0x65,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x6f,0x0,0x73,
- 0x0,0x70,0x0,0x65,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x39,0x49,0x66,0x20,0x79,0x6f,0x75,0x27,0x72,0x65,0x20,
- 0x61,0x20,0x43,0x4d,0x2c,0x20,0x65,0x6e,0x74,0x65,0x72,0x20,0x77,0x68,0x61,0x74,
- 0x20,0x63,0x61,0x73,0x65,0x73,0x20,0x79,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x77,
- 0x69,0x6c,0x6c,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x68,0x6f,0x73,0x74,0x2e,0x7,
- 0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,
- 0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x4a,0x0,0x75,0x0,0xed,0x0,
- 0x7a,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4a,0x75,0x64,
- 0x67,0x65,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,
- 0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4a,0x0,
- 0x75,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x6,0x4a,0x75,0x72,0x6f,0x72,0x3a,0x7,0x0,0x0,0x0,0xf,
- 0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,
- 0x3,0x0,0x0,0x0,0x36,0x0,0x50,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x72,0x0,
- 0x20,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xfa,0x0,0x73,0x0,0x69,0x0,0x63,0x0,
- 0x61,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,
- 0x74,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x18,0x4b,0x69,0x6c,0x6c,0x20,0x4d,0x75,0x73,0x69,0x63,0x20,
- 0x4f,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x7,0x0,0x0,
- 0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4c,0x0,0xed,0x0,0x6e,0x0,0x67,0x0,
- 0x75,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4c,
- 0x61,0x6e,0x67,0x75,0x61,0x67,0x65,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,
- 0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,
- 0x0,0x26,0x0,0x4c,0x0,0x6f,0x0,0x67,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x69,
- 0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x62,0x0,0x61,
- 0x0,0x69,0x0,0x78,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x13,0x4c,0x6f,0x67,0x20,0x67,0x6f,0x65,0x73,0x20,0x64,0x6f,0x77,0x6e,0x77,
- 0x61,0x72,0x64,0x73,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,
- 0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,
- 0x54,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,
- 0x64,0x0,0x6f,0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x67,0x0,0x3a,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x4c,0x6f,0x67,0x20,0x6c,0x65,0x6e,0x67,0x74,
- 0x68,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,
- 0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4d,0x0,0x61,
- 0x0,0x72,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,
- 0x0,0x6c,0x0,0x6f,0x0,0x67,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0xb,0x4c,0x6f,0x67,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x7,0x0,0x0,
- 0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4e,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,
- 0x20,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x68,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,
- 0x6f,0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x67,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0xc,0x4c,0x6f,0x67,0x20,0x6e,0x65,0x77,0x6c,0x69,0x6e,0x65,
- 0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,
- 0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x54,0x0,0x69,0x0,
- 0x6d,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x70,0x0,0x20,0x0,
- 0x6e,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x73,0x0,
- 0x74,0x0,0x72,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0xe,0x4c,0x6f,0x67,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x3a,0x7,
- 0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,
- 0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4d,0x0,0xfa,0x0,0x73,0x0,
- 0x69,0x0,0x63,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x6,0x4d,0x75,0x73,0x69,0x63,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,
- 0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,
- 0x3c,0x0,0x45,0x0,0x6e,0x0,0x76,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x65,0x0,
- 0x66,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x70,0x0,
- 0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0,
- 0x72,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x46,
- 0x72,0x61,0x6d,0x65,0x20,0x45,0x66,0x66,0x65,0x63,0x74,0x73,0x3a,0x7,0x0,0x0,
- 0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0x0,0x0,0x0,0xa2,0x0,0x52,0x0,0x65,0x0,0x70,0x0,0x72,0x0,
- 0x6f,0x0,0x64,0x0,0x75,0x0,0x7a,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,
- 0x73,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x62,0x0,
- 0x6c,0x0,0x69,0x0,0x70,0x0,0x20,0x0,0x22,0x0,0x75,0x0,0x6d,0x0,0x61,0x0,
- 0x20,0x0,0x76,0x0,0x65,0x0,0x7a,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,
- 0x61,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x73,0x0,
- 0xed,0x0,0x6d,0x0,0x62,0x0,0x6f,0x0,0x6c,0x0,0x6f,0x0,0x20,0x0,0x58,0x0,
- 0x22,0x0,0x2c,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x71,0x0,0x75,0x0,
- 0x65,0x0,0x20,0x0,0x58,0x0,0x20,0x0,0xe9,0x0,0x20,0x0,0x61,0x0,0x20,0x0,
- 0x74,0x0,0x61,0x0,0x78,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,
- 0x62,0x0,0x6c,0x0,0x69,0x0,0x70,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x47,0x50,0x6c,0x61,0x79,0x20,0x61,0x20,0x62,0x6c,0x69,0x70,0x20,0x73,
- 0x6f,0x75,0x6e,0x64,0x20,0x22,0x6f,0x6e,0x63,0x65,0x20,0x70,0x65,0x72,0x20,0x65,
- 0x76,0x65,0x72,0x79,0x20,0x58,0x20,0x73,0x79,0x6d,0x62,0x6f,0x6c,0x73,0x22,0x2c,
- 0x20,0x77,0x68,0x65,0x72,0x65,0x20,0x58,0x20,0x69,0x73,0x20,0x74,0x68,0x65,0x20,
- 0x62,0x6c,0x69,0x70,0x20,0x72,0x61,0x74,0x65,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,
- 0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,
- 0x0,0x0,0x0,0x34,0x0,0x42,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,
- 0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x2d,
- 0x0,0x65,0x0,0x78,0x0,0x70,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x74,
- 0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x18,0x50,0x72,0x65,0x74,0x74,0x79,0x20,0x73,0x65,0x6c,0x66,0x2d,0x65,0x78,
- 0x70,0x6c,0x61,0x6e,0x61,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,
- 0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,
- 0x0,0x0,0x0,0x12,0x0,0x50,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x0,0x74,
- 0x0,0x6f,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,
- 0x50,0x72,0x6f,0x73,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x3a,0x7,0x0,0x0,0x0,
- 0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,
- 0x1,0x3,0x0,0x0,0x0,0x9e,0x0,0x41,0x0,0x74,0x0,0x75,0x0,0x61,0x0,0x6c,
- 0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x65,
- 0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x64,
- 0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x6c,
- 0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x73,0x0,0x20,
- 0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,
- 0x0,0x66,0x0,0x61,0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,
- 0x0,0x75,0x0,0x73,0x0,0x75,0x0,0xe1,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x20,
- 0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x72,
- 0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0x64,0x0,0x65,
- 0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3d,0x52,0x65,
- 0x66,0x72,0x65,0x73,0x68,0x20,0x74,0x68,0x65,0x20,0x74,0x68,0x65,0x6d,0x65,0x20,
- 0x61,0x6e,0x64,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x61,0x6c,0x6c,0x20,0x6f,
- 0x66,0x20,0x74,0x68,0x65,0x20,0x75,0x69,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,
- 0x73,0x20,0x74,0x6f,0x20,0x6d,0x61,0x74,0x63,0x68,0x2e,0x7,0x0,0x0,0x0,0xf,
- 0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,
- 0x3,0x0,0x0,0x0,0x8,0x0,0x53,0x0,0x46,0x0,0x58,0x0,0x3a,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x46,0x58,0x3a,0x7,0x0,0x0,0x0,0xf,
- 0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,
- 0x3,0x0,0x0,0x1,0x26,0x0,0x45,0x0,0x6e,0x0,0x76,0x0,0x69,0x0,0x65,0x0,
- 0x20,0x0,0x76,0x0,0x69,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0xe7,0x0,0xf5,0x0,
- 0x65,0x0,0x73,0x0,0x2c,0x0,0x20,0x0,0x66,0x0,0x6c,0x0,0x61,0x0,0x73,0x0,
- 0x68,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,
- 0x6e,0x0,0x73,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x65,0x0,
- 0x6c,0x0,0x61,0x0,0x2c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,
- 0x6f,0x0,0x72,0x0,0x6d,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x66,0x0,
- 0x69,0x0,0x6e,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,
- 0x20,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x2e,0x0,0x69,0x0,0x6e,0x0,
- 0x69,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x72,0x0,
- 0x65,0x0,0x64,0x0,0x65,0x0,0x2e,0x0,0x20,0x0,0x46,0x0,0x75,0x0,0x6e,0x0,
- 0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x70,0x0,
- 0x65,0x0,0x6e,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,
- 0x61,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x76,0x0,0x69,0x0,0x64,0x0,
- 0x6f,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,
- 0x20,0x0,0x73,0x0,0x75,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,
- 0x6d,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x61,0x0,0x20,0x0,0x66,0x0,
- 0x75,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,
- 0x69,0x0,0x64,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x8c,0x53,0x65,0x6e,0x64,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,
- 0x2d,0x73,0x68,0x61,0x6b,0x69,0x6e,0x67,0x2c,0x20,0x66,0x6c,0x61,0x73,0x68,0x65,
- 0x73,0x20,0x61,0x6e,0x64,0x20,0x73,0x6f,0x75,0x6e,0x64,0x73,0x20,0x61,0x73,0x20,
- 0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x63,
- 0x68,0x61,0x72,0x2e,0x69,0x6e,0x69,0x20,0x6f,0x76,0x65,0x72,0x20,0x74,0x68,0x65,
- 0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x2e,0x20,0x4f,0x6e,0x6c,0x79,0x20,0x77,
- 0x6f,0x72,0x6b,0x73,0x20,0x66,0x6f,0x72,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x73,
- 0x20,0x74,0x68,0x61,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x20,0x74,0x68,
- 0x69,0x73,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x69,0x74,0x79,
- 0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,
- 0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xac,0x0,0x44,0x0,0x65,0x0,
- 0x66,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x76,0x0,
- 0x6f,0x0,0x6c,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x61,0x0,
- 0x64,0x0,0x72,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,
- 0x53,0x0,0x46,0x0,0x58,0x0,0x2e,0x0,0x20,0x0,0x49,0x0,0x6e,0x0,0x74,0x0,
- 0x65,0x0,0x72,0x0,0x6a,0x0,0x65,0x0,0x69,0x0,0xe7,0x0,0xf5,0x0,0x65,0x0,
- 0x73,0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x69,0x0,
- 0x74,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,
- 0x72,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x69,0x0,
- 0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x6d,0x0,
- 0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,0x27,0x0,0x53,0x0,
- 0x46,0x0,0x58,0x0,0x27,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x55,0x53,0x65,0x74,0x73,0x20,0x74,0x68,0x65,0x20,0x53,0x46,0x58,0x27,0x73,0x20,
- 0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x20,0x76,0x6f,0x6c,0x75,0x6d,0x65,0x2e,0x20,
- 0x49,0x6e,0x74,0x65,0x72,0x6a,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x61,0x6e,
- 0x64,0x20,0x61,0x63,0x74,0x75,0x61,0x6c,0x20,0x73,0x6f,0x75,0x6e,0x64,0x20,0x65,
- 0x66,0x66,0x65,0x63,0x74,0x73,0x20,0x63,0x6f,0x75,0x6e,0x74,0x20,0x61,0x73,0x20,
- 0x27,0x53,0x46,0x58,0x27,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,
- 0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x62,
- 0x0,0x44,0x0,0x65,0x0,0x66,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x6f,
- 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,
- 0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,
- 0x0,0xe1,0x0,0x75,0x0,0x64,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,
- 0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x73,
- 0x0,0x20,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x73,
- 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x25,0x53,0x65,0x74,0x73,
- 0x20,0x74,0x68,0x65,0x20,0x61,0x75,0x64,0x69,0x6f,0x20,0x64,0x65,0x76,0x69,0x63,
- 0x65,0x20,0x66,0x6f,0x72,0x20,0x61,0x6c,0x6c,0x20,0x73,0x6f,0x75,0x6e,0x64,0x73,
- 0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,
- 0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x68,0x0,0x44,0x0,0x65,0x0,
- 0x66,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,
- 0x74,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,
- 0x74,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x72,0x0,0x65,0x0,
- 0x70,0x0,0x72,0x0,0x6f,0x0,0x64,0x0,0x75,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,
- 0x20,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,
- 0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,
- 0x70,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x53,0x65,0x74,
- 0x73,0x20,0x74,0x68,0x65,0x20,0x64,0x65,0x6c,0x61,0x79,0x20,0x62,0x65,0x74,0x77,
- 0x65,0x65,0x6e,0x20,0x70,0x6c,0x61,0x79,0x69,0x6e,0x67,0x20,0x74,0x68,0x65,0x20,
- 0x62,0x6c,0x69,0x70,0x20,0x73,0x6f,0x75,0x6e,0x64,0x73,0x2e,0x7,0x0,0x0,0x0,
- 0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,
- 0x1,0x3,0x0,0x0,0x0,0x78,0x0,0x44,0x0,0x65,0x0,0x66,0x0,0x69,0x0,0x6e,
- 0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x69,0x0,0x64,0x0,0x69,0x0,0x6f,
- 0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x6f,
- 0x0,0x63,0x0,0xea,0x0,0x20,0x0,0x6e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x71,
- 0x0,0x75,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x73,
- 0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x69,0x0,0x64,0x0,0x69,
- 0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x73,
- 0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x2e,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x40,0x53,0x65,0x74,0x73,0x20,0x74,0x68,0x65,
- 0x20,0x6c,0x61,0x6e,0x67,0x75,0x61,0x67,0x65,0x20,0x69,0x66,0x20,0x79,0x6f,0x75,
- 0x20,0x64,0x6f,0x6e,0x27,0x74,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x75,
- 0x73,0x65,0x20,0x79,0x6f,0x75,0x72,0x20,0x73,0x79,0x73,0x74,0x65,0x6d,0x20,0x6c,
- 0x61,0x6e,0x67,0x75,0x61,0x67,0x65,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,
- 0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,
- 0x0,0x42,0x0,0x44,0x0,0x65,0x0,0x66,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,
- 0x0,0x6f,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x75,0x0,0x6d,0x0,0x65,
- 0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0xe3,0x0,0x6f,0x0,0x20,
- 0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xfa,0x0,0x73,0x0,0x69,0x0,0x63,
- 0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x20,0x53,0x65,
- 0x74,0x73,0x20,0x74,0x68,0x65,0x20,0x6d,0x75,0x73,0x69,0x63,0x27,0x73,0x20,0x64,
- 0x65,0x66,0x61,0x75,0x6c,0x74,0x20,0x76,0x6f,0x6c,0x75,0x6d,0x65,0x2e,0x7,0x0,
- 0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,
- 0x6f,0x67,0x1,0x3,0x0,0x0,0x1,0x6c,0x0,0x44,0x0,0x65,0x0,0x66,0x0,0x69,
- 0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6d,
- 0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x73,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,
- 0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x6a,0x0,0x6f,0x0,0x67,0x0,0x6f,0x0,0x2e,
- 0x0,0x20,0x0,0x53,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x6f,
- 0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x20,
- 0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x20,
- 0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0xea,0x0,0x6e,
- 0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x6c,
- 0x0,0x6f,0x0,0x62,0x0,0x62,0x0,0x79,0x0,0x2c,0x0,0x20,0x0,0x73,0x0,0x65,
- 0x0,0x72,0x0,0xe1,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x63,0x0,0x65,0x0,0x73,
- 0x0,0x73,0x0,0xe1,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x65,
- 0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0xe1,0x0,0x2d,
- 0x0,0x6c,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,
- 0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x61,
- 0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0xe7,0x0,0xf5,0x0,0x65,
- 0x0,0x73,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x68,0x0,0x61,0x0,0x6d,
- 0x0,0x20,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x2c,
- 0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,0x69,0x0,0x6e,
- 0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x61,0x0,0x72,0x0,0x20,
- 0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x73,0x0,0x65,
- 0x0,0x72,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x65,
- 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x69,0x0,0x78,0x0,0xe1,0x0,0x2d,0x0,0x6c,
- 0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xbb,0x53,0x65,
- 0x74,0x73,0x20,0x74,0x68,0x65,0x20,0x74,0x68,0x65,0x6d,0x65,0x20,0x75,0x73,0x65,
- 0x64,0x20,0x69,0x6e,0x2d,0x67,0x61,0x6d,0x65,0x2e,0x20,0x49,0x66,0x20,0x74,0x68,
- 0x65,0x20,0x6e,0x65,0x77,0x20,0x74,0x68,0x65,0x6d,0x65,0x20,0x63,0x68,0x61,0x6e,
- 0x67,0x65,0x73,0x20,0x74,0x68,0x65,0x20,0x6c,0x6f,0x62,0x62,0x79,0x27,0x73,0x20,
- 0x6c,0x6f,0x6f,0x6b,0x20,0x61,0x73,0x20,0x77,0x65,0x6c,0x6c,0x2c,0x20,0x79,0x6f,
- 0x75,0x27,0x6c,0x6c,0x20,0x6e,0x65,0x65,0x64,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,
- 0x6f,0x61,0x64,0x20,0x74,0x68,0x65,0x20,0x6c,0x6f,0x62,0x62,0x79,0x20,0x66,0x6f,
- 0x72,0x20,0x74,0x68,0x65,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x73,0x20,0x74,0x6f,
- 0x20,0x74,0x61,0x6b,0x65,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x2c,0x20,0x73,0x75,
- 0x63,0x68,0x20,0x61,0x73,0x20,0x62,0x79,0x20,0x6a,0x6f,0x69,0x6e,0x69,0x6e,0x67,
- 0x20,0x61,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x20,0x61,0x6e,0x64,0x20,0x6c,0x65,
- 0x61,0x76,0x69,0x6e,0x67,0x20,0x69,0x74,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,
- 0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,
- 0x0,0x0,0x6c,0x0,0x44,0x0,0x65,0x0,0x66,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,
- 0x20,0x0,0x6f,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x75,0x0,0x6d,0x0,
- 0x65,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x62,0x0,0x6c,0x0,
- 0x69,0x0,0x70,0x0,0x73,0x0,0x2c,0x0,0x20,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,
- 0x65,0x0,0x66,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,
- 0x73,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,
- 0x64,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x2e,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x38,0x53,0x65,0x74,0x73,0x20,0x74,0x68,
- 0x65,0x20,0x76,0x6f,0x6c,0x75,0x6d,0x65,0x20,0x6f,0x66,0x20,0x74,0x68,0x65,0x20,
- 0x62,0x6c,0x69,0x70,0x73,0x2c,0x20,0x74,0x68,0x65,0x20,0x74,0x61,0x6c,0x6b,0x69,
- 0x6e,0x67,0x20,0x73,0x6f,0x75,0x6e,0x64,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x73,
- 0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,
- 0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x6f,0x0,
- 0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0xe7,0x0,
- 0xf5,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,
- 0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,
- 0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,
- 0x18,0x0,0x45,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0xf3,0x0,0x67,0x0,
- 0x72,0x0,0x61,0x0,0x66,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0xd,0x53,0x74,0x65,0x6e,0x6f,0x67,0x72,0x61,0x70,0x68,0x65,0x72,0x3a,
- 0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,
- 0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x4d,0x0,0x61,0x0,0x6e,
- 0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x69,
- 0x0,0x74,0x0,0x6f,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0xf,0x53,0x74,0x69,0x63,0x6b,0x79,0x20,0x45,0x66,0x66,0x65,0x63,0x74,0x73,
- 0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,
- 0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4d,0x0,0x61,0x0,
- 0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,
- 0x61,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x10,0x53,0x74,0x69,0x63,0x6b,0x79,0x20,0x50,0x72,0x65,0x61,
- 0x6e,0x69,0x6d,0x73,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,
- 0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x18,0x0,
- 0x4d,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x73,0x0,
- 0x6f,0x0,0x6e,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0xe,0x53,0x74,0x69,0x63,0x6b,0x79,0x20,0x53,0x6f,0x75,0x6e,0x64,0x73,0x3a,0x7,
- 0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,
- 0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x7c,0x0,0x41,0x0,0x20,0x0,0x64,0x0,
- 0x69,0x0,0x73,0x0,0x74,0x0,0xe2,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,
- 0x20,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x70,0x0,0x69,0x0,0x78,0x0,0x65,0x0,
- 0x6c,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x65,0x0,
- 0x20,0x0,0x63,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,
- 0x74,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,
- 0x20,0x0,0x6c,0x0,0x6f,0x0,0x67,0x0,0x20,0x0,0x49,0x0,0x43,0x0,0x2e,0x0,
- 0x20,0x0,0x50,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0xe3,0x0,0x6f,0x0,0x3a,0x0,
- 0x20,0x0,0x30,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x44,0x54,
- 0x68,0x65,0x20,0x64,0x69,0x73,0x74,0x61,0x6e,0x63,0x65,0x20,0x69,0x6e,0x20,0x70,
- 0x69,0x78,0x65,0x6c,0x73,0x20,0x62,0x65,0x74,0x77,0x65,0x65,0x6e,0x20,0x65,0x61,
- 0x63,0x68,0x20,0x65,0x6e,0x74,0x72,0x79,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,
- 0x49,0x43,0x20,0x6c,0x6f,0x67,0x2e,0x20,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x3a,
- 0x20,0x30,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,
- 0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x54,0x0,
- 0x65,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x73,0x0,0x75,0x0,
- 0x61,0x0,0x6c,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x54,
- 0x68,0x65,0x6d,0x65,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,
- 0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x54,0x0,
- 0x45,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,
- 0x76,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x6e,0x0,0xe3,0x0,
- 0x6f,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,
- 0x61,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x61,0x0,
- 0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x73,0x0,
- 0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x29,0x54,0x68,0x69,
- 0x73,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x20,0x64,0x6f,0x65,0x73,0x20,0x6e,0x6f,
- 0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x20,0x63,0x61,0x73,0x65,0x20,0x61,
- 0x6c,0x65,0x72,0x74,0x73,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,
- 0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x50,
- 0x0,0x45,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,
- 0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x75,
- 0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x6e,
- 0x0,0xfa,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,
- 0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x73,0x0,0x2e,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x54,0x68,0x69,0x73,0x20,0x73,
- 0x65,0x72,0x76,0x65,0x72,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x73,0x20,0x63,
- 0x61,0x73,0x65,0x20,0x61,0x6c,0x65,0x72,0x74,0x73,0x2e,0x7,0x0,0x0,0x0,0xf,
- 0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,
- 0x3,0x0,0x0,0x0,0xce,0x0,0x41,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x65,0x0,
- 0x20,0x0,0x69,0x0,0x73,0x0,0x73,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0,
- 0x72,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x6d,0x0,0x69,0x0,
- 0x74,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,
- 0x6f,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,
- 0x6e,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x74,0x0,
- 0x65,0x0,0x6e,0x0,0x68,0x0,0x61,0x0,0x6d,0x0,0x20,0x0,0x61,0x0,0x73,0x0,
- 0x20,0x0,0x73,0x0,0x75,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x72,0x0,
- 0xf3,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x63,0x0,
- 0x61,0x0,0x69,0x0,0x78,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,
- 0x20,0x0,0x62,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x2d,0x0,0x70,0x0,0x61,0x0,
- 0x70,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,
- 0x6e,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x64,0x0,0x61,0x0,
- 0x73,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4d,0x54,0x75,0x72,
- 0x6e,0x20,0x74,0x68,0x69,0x73,0x20,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x61,0x6c,0x6c,
- 0x6f,0x77,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x73,0x20,0x74,0x6f,
- 0x20,0x64,0x65,0x66,0x69,0x6e,0x65,0x20,0x74,0x68,0x65,0x69,0x72,0x20,0x6f,0x77,
- 0x6e,0x20,0x63,0x75,0x73,0x74,0x6f,0x6d,0x20,0x63,0x68,0x61,0x74,0x20,0x62,0x6f,
- 0x78,0x20,0x64,0x65,0x73,0x69,0x67,0x6e,0x73,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,
- 0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,
- 0x0,0x0,0x0,0xca,0x0,0x41,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x2d,
- 0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x69,
- 0x0,0x6d,0x0,0x70,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x71,
- 0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x69,
- 0x0,0x78,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,
- 0x0,0x6c,0x0,0x65,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,
- 0x0,0x20,0x0,0x70,0x0,0x72,0x0,0xe9,0x0,0x2d,0x0,0x61,0x0,0x6e,0x0,0x69,
- 0x0,0x6d,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,
- 0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x6d,0x0,0x61,
- 0x0,0x72,0x0,0x63,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x70,
- 0x0,0xf3,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x65,
- 0x0,0x63,0x0,0x75,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x6f,
- 0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x2e,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x54,0x54,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,
- 0x73,0x20,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x20,
- 0x70,0x72,0x65,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x20,0x63,0x68,0x65,
- 0x63,0x6b,0x62,0x6f,0x78,0x20,0x66,0x72,0x6f,0x6d,0x20,0x63,0x6c,0x65,0x61,0x72,
- 0x69,0x6e,0x67,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x70,0x6c,0x61,0x79,0x69,0x6e,
- 0x67,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x6f,0x74,0x65,0x2e,0x7,0x0,0x0,0x0,
- 0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,
- 0x1,0x3,0x0,0x0,0x0,0xaa,0x0,0x41,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x65,
- 0x0,0x2d,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,
- 0x0,0x69,0x0,0x6d,0x0,0x70,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x20,
- 0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x65,
- 0x0,0x6e,0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x73,0x0,0x70,0x0,0x65,
- 0x0,0x6e,0x0,0x73,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x65,
- 0x0,0x66,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x78,
- 0x0,0x63,0x0,0x6c,0x0,0x75,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x65,
- 0x0,0x66,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x70,
- 0x0,0xf3,0x0,0x73,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x70,0x0,0x72,0x0,0x6f,
- 0x0,0x64,0x0,0x75,0x0,0x7a,0x0,0x69,0x0,0x2d,0x0,0x6c,0x0,0x6f,0x0,0x2e,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x57,0x54,0x75,0x72,0x6e,0x20,0x74,
- 0x68,0x69,0x73,0x20,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x70,0x72,0x65,0x76,0x65,0x6e,
- 0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x73,0x20,0x64,0x72,
- 0x6f,0x70,0x64,0x6f,0x77,0x6e,0x20,0x66,0x72,0x6f,0x6d,0x20,0x63,0x6c,0x65,0x61,
- 0x72,0x69,0x6e,0x67,0x20,0x74,0x68,0x65,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x20,
- 0x61,0x66,0x74,0x65,0x72,0x20,0x70,0x6c,0x61,0x79,0x69,0x6e,0x67,0x20,0x69,0x74,
- 0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,
- 0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x9a,0x0,0x4d,0x0,0x61,0x0,
- 0x72,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,
- 0x61,0x0,0x20,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x72,0x0,
- 0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,
- 0x6f,0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,
- 0x6e,0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x73,0x0,0x70,0x0,0x65,0x0,
- 0x6e,0x0,0x73,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x70,0x0,0x61,0x0,0x67,0x0,
- 0x75,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,
- 0x20,0x0,0x61,0x0,0x70,0x0,0xf3,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x20,0x0,
- 0x72,0x0,0x65,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x64,0x0,0x75,0x0,0xe7,0x0,
- 0xe3,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x54,0x54,
- 0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x20,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x70,
- 0x72,0x65,0x76,0x65,0x6e,0x74,0x20,0x74,0x68,0x65,0x20,0x73,0x6f,0x75,0x6e,0x64,
- 0x20,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x20,0x66,0x72,0x6f,0x6d,0x20,0x63,
- 0x6c,0x65,0x61,0x72,0x69,0x6e,0x67,0x20,0x74,0x68,0x65,0x20,0x73,0x6f,0x75,0x6e,
- 0x64,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x70,0x6c,0x61,0x79,0x69,0x6e,0x67,0x20,
- 0x69,0x74,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,
- 0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x52,0x0,0x50,0x0,
- 0x65,0x0,0x72,0x0,0x6d,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x72,0x0,0x20,0x0,
- 0x63,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,
- 0x20,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,
- 0x20,0x0,0x49,0x0,0x43,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,
- 0x65,0x0,0x72,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x2e,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x55,0x73,0x65,0x20,0x74,0x68,0x65,
- 0x20,0x6d,0x61,0x72,0x6b,0x75,0x70,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x73,0x20,0x69,
- 0x6e,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x20,0x49,0x43,0x20,
- 0x63,0x68,0x61,0x74,0x6c,0x6f,0x67,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,
- 0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,
- 0x0,0xbe,0x0,0x53,0x0,0x65,0x0,0x75,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6d,
- 0x0,0x65,0x0,0x20,0x0,0x4f,0x0,0x4f,0x0,0x43,0x0,0x20,0x0,0x73,0x0,0x65,
- 0x0,0x72,0x0,0xe1,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6d,
- 0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,
- 0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x66,0x0,0x69,0x0,0x6e,
- 0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x20,
- 0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6c,
- 0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x61,0x0,0x6e,0x0,0x64,
- 0x0,0x6f,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x63,0x0,0xea,0x0,0x20,0x0,0x69,
- 0x0,0x6e,0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x61,0x0,0x72,
- 0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x73,
- 0x0,0x65,0x0,0x72,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x2e,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4d,0x59,0x6f,0x75,0x72,0x20,0x4f,
- 0x4f,0x43,0x20,0x6e,0x61,0x6d,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,
- 0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x61,0x6c,0x6c,0x79,0x20,0x73,0x65,
- 0x74,0x20,0x74,0x6f,0x20,0x74,0x68,0x69,0x73,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,
- 0x77,0x68,0x65,0x6e,0x20,0x79,0x6f,0x75,0x20,0x6a,0x6f,0x69,0x6e,0x20,0x61,0x20,
- 0x73,0x65,0x72,0x76,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,
- 0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,
- 0x2a,0x0,0x22,0x0,0x25,0x0,0x31,0x0,0x22,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,
- 0x69,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x73,0x0,0x66,0x0,
- 0x65,0x0,0x72,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x1a,0x22,0x25,0x31,0x22,0x20,0x68,0x61,0x73,0x20,0x62,0x65,
- 0x65,0x6e,0x20,0x74,0x72,0x61,0x6e,0x73,0x66,0x65,0x72,0x72,0x65,0x64,0x2e,0x7,
- 0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0xff,
- 0xff,0xff,0xff,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x41,0x2f,0x4d,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0x36,0x0,0x41,0x0,0x64,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x6f,
- 0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x76,0x0,0x61,
- 0x0,0x20,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0xea,0x0,0x6e,0x0,0x63,
- 0x0,0x69,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x13,0x41,0x64,0x64,0x20,0x6e,0x65,0x77,0x20,0x65,0x76,0x69,0x64,
- 0x65,0x6e,0x63,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x76,0x0,0x41,0x0,0x64,0x0,
- 0x69,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x74,0x0,
- 0x65,0x0,0x78,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0xe0,0x0,0x20,0x0,0x73,0x0,
- 0x75,0x0,0x61,0x0,0x20,0x0,0xfa,0x0,0x6c,0x0,0x74,0x0,0x69,0x0,0x6d,0x0,
- 0x61,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x61,0x0,0x67,0x0,
- 0x65,0x0,0x6d,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,
- 0x61,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,
- 0x20,0x0,0x6d,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,
- 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x32,0x41,0x64,0x64,0x20,0x74,
- 0x65,0x78,0x74,0x20,0x74,0x6f,0x20,0x79,0x6f,0x75,0x72,0x20,0x6c,0x61,0x73,0x74,
- 0x20,0x73,0x70,0x6f,0x6b,0x65,0x6e,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,
- 0x77,0x68,0x65,0x6e,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2e,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0xe,0x0,0x41,0x0,0x64,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x41,0x64,0x64,0x69,0x74,0x69,0x76,
- 0x65,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,
- 0x3,0x0,0x0,0x0,0x56,0x0,0x50,0x0,0x65,0x0,0x72,0x0,0x6d,0x0,0x69,0x0,
- 0x74,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x72,0x0,
- 0x61,0x0,0x72,0x0,0x20,0x0,0x76,0x0,0xe1,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,
- 0x73,0x0,0x20,0x0,0x61,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x74,0x0,
- 0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x6c,0x0,
- 0x69,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x33,0x41,0x6c,0x6c,0x6f,0x77,0x73,0x20,0x79,0x6f,0x75,0x20,
- 0x74,0x6f,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x20,0x76,0x61,0x72,0x69,0x6f,0x75,
- 0x73,0x20,0x61,0x73,0x70,0x65,0x63,0x74,0x73,0x20,0x6f,0x66,0x20,0x74,0x68,0x65,
- 0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,
- 0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xb2,0x0,0x55,0x0,0x6d,
- 0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x66,
- 0x0,0x61,0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,
- 0x0,0x20,0x0,0x61,0x0,0x6a,0x0,0x75,0x0,0x64,0x0,0xe1,0x0,0x2d,0x0,0x6c,
- 0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x75,0x0,0x6e,
- 0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,
- 0x0,0x63,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x20,0x0,0x28,0x0,0x64,0x0,0x65,
- 0x0,0x76,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x75,
- 0x0,0x6d,0x0,0x20,0x0,0x43,0x0,0x4d,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,
- 0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,
- 0x0,0x61,0x0,0x6e,0x0,0x75,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x72,
- 0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x73,0x0,0x29,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x61,0x41,0x6e,0x20,0x69,0x6e,0x74,0x65,0x72,
- 0x66,0x61,0x63,0x65,0x20,0x74,0x6f,0x20,0x68,0x65,0x6c,0x70,0x20,0x79,0x6f,0x75,
- 0x20,0x61,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x20,0x61,0x20,0x63,0x61,0x73,0x65,
- 0x20,0x28,0x79,0x6f,0x75,0x20,0x68,0x61,0x76,0x65,0x20,0x74,0x6f,0x20,0x62,0x65,
- 0x20,0x61,0x20,0x43,0x4d,0x20,0x66,0x69,0x72,0x73,0x74,0x20,0x74,0x6f,0x20,0x62,
- 0x65,0x20,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x61,0x6e,0x6e,0x6f,0x75,0x6e,
- 0x63,0x65,0x20,0x63,0x61,0x73,0x65,0x73,0x29,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,
- 0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x4c,0x0,
- 0x6f,0x0,0x62,0x0,0x62,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0xd,0x42,0x61,0x63,0x6b,0x20,0x74,0x6f,0x20,0x4c,0x6f,0x62,0x62,0x79,0x7,0x0,
- 0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,
- 0x0,0x92,0x0,0x54,0x0,0x6f,0x0,0x72,0x0,0x6e,0x0,0x65,0x0,0x2d,0x0,0x73,
- 0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x70,
- 0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x2e,
- 0x0,0x20,0x0,0x56,0x0,0x6f,0x0,0x63,0x0,0xea,0x0,0x20,0x0,0x6e,0x0,0xe3,
- 0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0xe1,0x0,0x20,0x0,0x63,
- 0x0,0x61,0x0,0x70,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,
- 0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x67,0x0,0x69,
- 0x0,0x72,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,0x70,
- 0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x67,0x0,0x65,
- 0x0,0x6d,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4f,0x42,0x65,
- 0x63,0x6f,0x6d,0x65,0x20,0x61,0x20,0x73,0x70,0x65,0x63,0x74,0x61,0x74,0x6f,0x72,
- 0x2e,0x20,0x59,0x6f,0x75,0x20,0x77,0x6f,0x6e,0x27,0x74,0x20,0x62,0x65,0x20,0x61,
- 0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x74,0x65,0x72,0x61,0x63,0x74,0x20,
- 0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x69,0x6e,0x2d,0x63,0x68,0x61,0x72,
- 0x61,0x63,0x74,0x65,0x72,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x2e,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0xff,0xff,0xff,
- 0xff,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x42,0x6c,0x69,0x70,0x73,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0x76,0x0,0x41,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x61,
- 0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,
- 0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0xe7,0x0,0xe3,0x0,0x6f,
- 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x73,
- 0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x65,
- 0x0,0x20,0x0,0x6d,0x0,0x75,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,
- 0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x6e,
- 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x3f,0x42,0x72,0x69,0x6e,0x67,0x20,0x75,0x70,0x20,0x74,0x68,0x65,
- 0x20,0x43,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x20,0x53,0x65,0x6c,0x65,0x63,
- 0x74,0x20,0x53,0x63,0x72,0x65,0x65,0x6e,0x20,0x61,0x6e,0x64,0x20,0x63,0x68,0x61,
- 0x6e,0x67,0x65,0x20,0x79,0x6f,0x75,0x72,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,
- 0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x41,0x0,0x62,0x0,0x72,0x0,0x61,0x0,
- 0x20,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,
- 0x64,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0xea,0x0,
- 0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x73,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x1d,0x42,0x72,0x69,0x6e,0x67,0x20,0x75,0x70,0x20,0x74,0x68,
- 0x65,0x20,0x45,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x73,0x63,0x72,0x65,0x65,
- 0x6e,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,
- 0x1,0x3,0xff,0xff,0xff,0xff,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,
- 0x43,0x4c,0x49,0x45,0x4e,0x54,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x43,0x0,0x68,0x0,0x61,
- 0x0,0x6d,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x4d,
- 0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x43,0x61,0x6c,0x6c,0x20,0x4d,
- 0x6f,0x64,0x65,0x72,0x61,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,
- 0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0xff,0xff,0xff,0xff,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x61,0x6c,0x6c,0x20,0x6d,0x6f,0x64,0x7,0x0,
- 0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,
- 0x0,0x24,0x0,0x43,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x65,
- 0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x20,
- 0x0,0x25,0x0,0x31,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,
- 0x43,0x61,0x73,0x65,0x20,0x6d,0x61,0x64,0x65,0x20,0x62,0x79,0x20,0x25,0x31,0x2e,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0xff,0xff,0xff,0xff,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x61,
- 0x73,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0xff,0xff,0xff,0xff,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x10,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,
- 0x65,0x72,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,
- 0x1,0x3,0x0,0x0,0x0,0x58,0x0,0x4d,0x0,0x75,0x0,0x64,0x0,0x65,0x0,0x20,
- 0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x72,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x20,
- 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0xea,
- 0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,
- 0x0,0x73,0x0,0x65,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x73,
- 0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x2e,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x32,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x74,
- 0x68,0x65,0x20,0x6f,0x72,0x64,0x65,0x72,0x20,0x6f,0x66,0x20,0x61,0x70,0x70,0x65,
- 0x61,0x72,0x61,0x6e,0x63,0x65,0x20,0x66,0x6f,0x72,0x20,0x79,0x6f,0x75,0x72,0x20,
- 0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,
- 0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x1,0x2a,0x0,0x4d,
- 0x0,0x75,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6f,
- 0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x78,
- 0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x68,
- 0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x49,0x0,0x43,0x0,0x2e,0x0,0xa,0x0,0x56,
- 0x0,0x6f,0x0,0x63,0x0,0xea,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x62,
- 0x0,0xe9,0x0,0x6d,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x20,
- 0x0,0x73,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,
- 0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x70,
- 0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20,
- 0x0,0x73,0x0,0x75,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,
- 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x63,
- 0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,
- 0x0,0x6d,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x20,
- 0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x73,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6f,
- 0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x75,
- 0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x6f,0x0,0x20,0x0,0x70,
- 0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x65,
- 0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x61,0x0,0x20,
- 0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x91,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x74,0x68,0x65,0x20,0x74,0x65,0x78,
- 0x74,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x6f,0x66,0x20,0x74,0x68,0x65,0x20,0x73,
- 0x70,0x6f,0x6b,0x65,0x6e,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2e,0xa,0x59,
- 0x6f,0x75,0x20,0x63,0x61,0x6e,0x20,0x61,0x6c,0x73,0x6f,0x20,0x73,0x65,0x6c,0x65,
- 0x63,0x74,0x20,0x61,0x20,0x70,0x61,0x72,0x74,0x20,0x6f,0x66,0x20,0x79,0x6f,0x75,
- 0x72,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x6c,0x79,0x20,0x74,0x79,0x70,0x65,
- 0x64,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x61,0x6e,0x64,0x20,0x75,0x73,
- 0x65,0x20,0x74,0x68,0x65,0x20,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x20,0x74,
- 0x6f,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x20,0x69,0x74,0x73,0x20,0x63,0x6f,0x6c,
- 0x6f,0x72,0x21,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x2,0x4e,0x0,0x45,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,
- 0x6c,0x0,0x68,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x65,0x0,
- 0x66,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0,
- 0x72,0x0,0x61,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,
- 0x64,0x0,0x75,0x0,0x7a,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,
- 0x20,0x0,0x73,0x0,0x75,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0xf3,0x0,
- 0x78,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,
- 0x73,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x66,0x0,0x61,0x0,
- 0x6c,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x2e,0x0,0xa,0x0,0x4f,0x0,0x73,0x0,
- 0x20,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x73,0x0,
- 0x20,0x0,0x73,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x66,0x0,
- 0x69,0x0,0x6e,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x65,0x0,
- 0x6d,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x20,0x0,
- 0x2f,0x0,0x20,0x0,0x65,0x0,0x66,0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,
- 0x73,0x0,0x20,0x0,0x2f,0x0,0x20,0x0,0x65,0x0,0x66,0x0,0x66,0x0,0x65,0x0,
- 0x63,0x0,0x74,0x0,0x73,0x0,0x2e,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x2e,0x0,
- 0x20,0x0,0x53,0x0,0x65,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,
- 0x73,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,
- 0x70,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x66,0x0,
- 0x69,0x0,0x6e,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x66,0x0,0x65,0x0,
- 0x69,0x0,0x74,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,
- 0x73,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,
- 0x64,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x6f,0x0,0xa,0x0,0x63,0x0,
- 0x61,0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x61,0x0,
- 0x20,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x2e,0x0,0x69,0x0,0x6e,0x0,
- 0x69,0x0,0x20,0x0,0x5b,0x0,0x4f,0x0,0x70,0x0,0xe7,0x0,0xf5,0x0,0x65,0x0,
- 0x73,0x0,0x5d,0x0,0x2c,0x0,0x20,0x0,0x65,0x0,0x66,0x0,0x66,0x0,0x65,0x0,
- 0x63,0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x3d,0x0,0x20,0x0,0x27,0x0,0x6d,0x0,
- 0x69,0x0,0x73,0x0,0x63,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x27,0x0,
- 0x2c,0x0,0x20,0x0,0x6f,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,
- 0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x65,0x0,
- 0x20,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x2f,0x0,
- 0x3c,0x0,0x6d,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,
- 0x65,0x0,0x3e,0x0,0x2f,0x0,0x65,0x0,0x66,0x0,0x66,0x0,0x65,0x0,0x63,0x0,
- 0x74,0x0,0x73,0x0,0x2e,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x74,0x0,
- 0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x64,0x0,0x20,0x0,0x74,0x0,
- 0x68,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x66,0x0,0x66,0x0,0x65,0x0,0x63,0x0,
- 0x74,0x0,0x73,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0x13,0x43,
- 0x68,0x6f,0x6f,0x73,0x65,0x20,0x61,0x6e,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x20,
- 0x74,0x6f,0x20,0x70,0x6c,0x61,0x79,0x20,0x6f,0x6e,0x20,0x79,0x6f,0x75,0x72,0x20,
- 0x6e,0x65,0x78,0x74,0x20,0x73,0x70,0x6f,0x6b,0x65,0x6e,0x20,0x6d,0x65,0x73,0x73,
- 0x61,0x67,0x65,0x2e,0xa,0x54,0x68,0x65,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x73,
- 0x20,0x61,0x72,0x65,0x20,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x20,0x69,0x6e,0x20,
- 0x79,0x6f,0x75,0x72,0x20,0x74,0x68,0x65,0x6d,0x65,0x2f,0x65,0x66,0x66,0x65,0x63,
- 0x74,0x73,0x2f,0x65,0x66,0x66,0x65,0x63,0x74,0x73,0x2e,0x69,0x6e,0x69,0x2e,0x20,
- 0x59,0x6f,0x75,0x72,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x20,0x63,
- 0x61,0x6e,0x20,0x64,0x65,0x66,0x69,0x6e,0x65,0x20,0x63,0x75,0x73,0x74,0x6f,0x6d,
- 0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x73,0x20,0x62,0x79,0xa,0x63,0x68,0x61,0x72,
- 0x2e,0x69,0x6e,0x69,0x20,0x5b,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x5d,0x20,0x63,
- 0x61,0x74,0x65,0x67,0x6f,0x72,0x79,0x2c,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x73,
- 0x20,0x3d,0x20,0x27,0x6d,0x69,0x73,0x63,0x6e,0x61,0x6d,0x65,0x27,0x20,0x77,0x68,
- 0x65,0x72,0x65,0x20,0x69,0x74,0x20,0x72,0x65,0x66,0x65,0x72,0x65,0x73,0x20,0x74,
- 0x6f,0x20,0x6d,0x69,0x73,0x63,0x2f,0x3c,0x6d,0x69,0x73,0x63,0x6e,0x61,0x6d,0x65,
- 0x3e,0x2f,0x65,0x66,0x66,0x65,0x63,0x74,0x73,0x2e,0x69,0x6e,0x69,0x20,0x74,0x6f,
- 0x20,0x72,0x65,0x61,0x64,0x20,0x74,0x68,0x65,0x20,0x65,0x66,0x66,0x65,0x63,0x74,
- 0x73,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,
- 0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x45,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x6c,
- 0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x8,0x43,0x68,0x6f,0x6f,0x73,0x65,0x2e,0x2e,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xdc,
- 0x0,0x46,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x20,
- 0x0,0x73,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x70,0x0,0x6f,0x0,0x73,
- 0x0,0x69,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,
- 0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x73,0x0,0x75,0x0,0x61,0x0,0x6c,
- 0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x2f,0x0,0x65,0x0,0x64,0x0,0x69,
- 0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x64,
- 0x0,0xea,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x73,0x0,0x2e,0x0,0xa,
- 0x0,0x56,0x0,0x6f,0x0,0x63,0x0,0xea,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,
- 0x0,0xe1,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x67,0x0,0x75,0x0,0x6e,
- 0x0,0x74,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,
- 0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x20,
- 0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0xe7,0x0,0xf5,
- 0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x6e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x73,
- 0x0,0x61,0x0,0x6c,0x0,0x76,0x0,0x61,0x0,0x73,0x0,0x2e,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x60,0x43,0x6c,0x6f,0x73,0x65,0x20,0x74,0x68,0x65,0x20,
- 0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,
- 0x2f,0x65,0x64,0x69,0x74,0x69,0x6e,0x67,0x20,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,
- 0x2e,0xa,0x59,0x6f,0x75,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x70,0x72,
- 0x6f,0x6d,0x70,0x74,0x65,0x64,0x20,0x69,0x66,0x20,0x74,0x68,0x65,0x72,0x65,0x27,
- 0x73,0x20,0x61,0x6e,0x79,0x20,0x75,0x6e,0x73,0x61,0x76,0x65,0x64,0x20,0x63,0x68,
- 0x61,0x6e,0x67,0x65,0x73,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x52,0x0,0x65,0x0,0x63,
- 0x0,0x6f,0x0,0x6c,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x74,0x0,0x6f,
- 0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x63,
- 0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x61,
- 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x43,0x6f,0x6c,0x6c,
- 0x61,0x70,0x73,0x65,0x20,0x41,0x6c,0x6c,0x20,0x43,0x61,0x74,0x65,0x67,0x6f,0x72,
- 0x69,0x65,0x73,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0x76,0x0,0x41,0x0,0x20,0x0,0x65,0x0,0x76,0x0,
- 0x69,0x0,0x64,0x0,0xea,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x20,0x0,
- 0x61,0x0,0x74,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0xe9,0x0,0x20,0x0,
- 0x67,0x0,0x6c,0x0,0x6f,0x0,0x62,0x0,0x61,0x0,0x6c,0x0,0x2e,0x0,0x20,0x0,
- 0x43,0x0,0x6c,0x0,0x69,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x70,0x0,
- 0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x75,0x0,0x64,0x0,0x61,0x0,
- 0x72,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x70,0x0,
- 0x72,0x0,0x69,0x0,0x76,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x37,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x65,
- 0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x69,0x73,0x20,0x67,0x6c,0x6f,0x62,0x61,
- 0x6c,0x2e,0x20,0x43,0x6c,0x69,0x63,0x6b,0x20,0x74,0x6f,0x20,0x73,0x77,0x69,0x74,
- 0x63,0x68,0x20,0x74,0x6f,0x20,0x70,0x72,0x69,0x76,0x61,0x74,0x65,0x2e,0x7,0x0,
- 0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,
- 0x0,0x76,0x0,0x41,0x0,0x20,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0xea,
- 0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x74,0x0,0x75,
- 0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0xe9,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x69,
- 0x0,0x76,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x2e,0x0,0x20,0x0,0x43,0x0,0x6c,
- 0x0,0x69,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,
- 0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x75,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x20,
- 0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x67,0x0,0x6c,0x0,0x6f,
- 0x0,0x62,0x0,0x61,0x0,0x6c,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x37,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,
- 0x63,0x65,0x20,0x69,0x73,0x20,0x70,0x72,0x69,0x76,0x61,0x74,0x65,0x2e,0x20,0x43,
- 0x6c,0x69,0x63,0x6b,0x20,0x74,0x6f,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x20,0x74,
- 0x6f,0x20,0x67,0x6c,0x6f,0x62,0x61,0x6c,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,
- 0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x47,0x0,
- 0x72,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,
- 0x73,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,
- 0x64,0x0,0x6f,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,
- 0x75,0x73,0x74,0x6f,0x6d,0x20,0x53,0x68,0x6f,0x75,0x74,0x21,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x30,
- 0x0,0x41,0x0,0x62,0x0,0x61,0x0,0x69,0x0,0x78,0x0,0x65,0x0,0x20,0x0,0x61,
- 0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x64,
- 0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0xfa,0x0,0x64,0x0,0x65,0x0,0x2e,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x44,0x65,0x63,0x72,0x65,0x61,
- 0x73,0x65,0x20,0x74,0x68,0x65,0x20,0x68,0x65,0x61,0x6c,0x74,0x68,0x20,0x62,0x61,
- 0x72,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,
- 0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x65,
- 0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x64,
- 0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x65,0x66,0x61,
- 0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x44,0x0,0x65,0x0,0x73,0x0,0x74,0x0,
- 0x72,0x0,0x75,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,
- 0x20,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0xea,0x0,0x6e,0x0,0x63,0x0,
- 0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x44,0x65,0x73,
- 0x74,0x72,0x6f,0x79,0x20,0x74,0x68,0x69,0x73,0x20,0x70,0x69,0x65,0x63,0x65,0x20,
- 0x6f,0x66,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x86,0x0,
- 0x4d,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x20,0x0,
- 0x6e,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x65,0x0,
- 0x72,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,
- 0x61,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,
- 0x61,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,
- 0x6f,0x0,0x73,0x0,0x20,0x0,0x75,0x0,0x73,0x0,0x75,0x0,0xe1,0x0,0x72,0x0,
- 0x69,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x61,0x0,0x6e,0x0,
- 0x64,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x61,0x0,
- 0x64,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x38,0x44,
- 0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x63,0x75,0x73,0x74,0x6f,0x6d,0x69,0x7a,0x65,
- 0x64,0x20,0x73,0x68,0x6f,0x77,0x6e,0x61,0x6d,0x65,0x73,0x20,0x66,0x6f,0x72,0x20,
- 0x61,0x6c,0x6c,0x20,0x75,0x73,0x65,0x72,0x73,0x20,0x77,0x68,0x65,0x6e,0x20,0x63,
- 0x68,0x65,0x63,0x6b,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x80,0x0,0x45,0x0,0x78,0x0,
- 0x69,0x0,0x62,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,
- 0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x70,0x0,
- 0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,
- 0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x65,0x0,
- 0x72,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,
- 0x76,0x0,0x6f,0x0,0x63,0x0,0xea,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,
- 0x65,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,
- 0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x37,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x74,0x68,0x65,
- 0x20,0x6c,0x69,0x73,0x74,0x20,0x6f,0x66,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,
- 0x65,0x72,0x20,0x66,0x6f,0x6c,0x64,0x65,0x72,0x73,0x20,0x79,0x6f,0x75,0x20,0x77,
- 0x69,0x73,0x68,0x20,0x74,0x6f,0x20,0x6d,0x75,0x74,0x65,0x2e,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x5c,
- 0x0,0x45,0x0,0x78,0x0,0x69,0x0,0x62,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x20,
- 0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,
- 0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x65,
- 0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,
- 0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x70,
- 0x0,0x6f,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x2c,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x74,0x68,
- 0x65,0x20,0x6c,0x69,0x73,0x74,0x20,0x6f,0x66,0x20,0x63,0x68,0x61,0x72,0x61,0x63,
- 0x74,0x65,0x72,0x73,0x20,0x74,0x6f,0x20,0x70,0x61,0x69,0x72,0x20,0x77,0x69,0x74,
- 0x68,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,
- 0x1,0x3,0x0,0x0,0x0,0xe6,0x0,0x56,0x0,0x6f,0x0,0x63,0x0,0xea,0x0,0x20,
- 0x0,0x6e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x6f,0x0,0x75,0x0,0x76,0x0,0x65,
- 0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x64,0x0,0x61,
- 0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,
- 0x0,0x65,0x0,0x72,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x71,
- 0x0,0x75,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x61,
- 0x0,0x72,0x0,0x63,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x69,
- 0x0,0x6d,0x0,0x70,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x6f,
- 0x0,0x2d,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x74,
- 0x0,0x6f,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6e,
- 0x0,0x73,0x0,0x20,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,
- 0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x64,
- 0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x6e,
- 0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6a,
- 0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x71,0x44,0x6f,0x20,0x6e,0x6f,0x74,0x20,0x6c,0x69,0x73,
- 0x74,0x65,0x6e,0x20,0x74,0x6f,0x20,0x6d,0x6f,0x64,0x20,0x63,0x61,0x6c,0x6c,0x73,
- 0x20,0x77,0x68,0x65,0x6e,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2c,0x20,0x70,
- 0x72,0x65,0x76,0x65,0x6e,0x74,0x69,0x6e,0x67,0x20,0x74,0x68,0x65,0x6d,0x20,0x66,
- 0x72,0x6f,0x6d,0x20,0x70,0x6c,0x61,0x79,0x69,0x6e,0x67,0x20,0x73,0x6f,0x75,0x6e,
- 0x64,0x73,0x20,0x6f,0x72,0x20,0x66,0x6f,0x63,0x75,0x73,0x69,0x6e,0x67,0x20,0x61,
- 0x74,0x74,0x65,0x6e,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x6e,0x20,0x74,0x68,0x65,0x20,
- 0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x56,0x0,0x6f,0x0,
- 0x63,0x0,0xea,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x72,0x0,0x20,0x0,
- 0x73,0x0,0x61,0x0,0x6c,0x0,0x76,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x73,0x0,
- 0x75,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0x75,0x0,0x64,0x0,0x61,0x0,
- 0x6e,0x0,0xe7,0x0,0x61,0x0,0x73,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x21,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,
- 0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x79,0x6f,0x75,0x72,0x20,0x63,0x68,0x61,0x6e,
- 0x67,0x65,0x73,0x3f,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x44,0x0,0x65,0x0,0x73,0x0,0x65,
- 0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x65,
- 0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x61,
- 0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0xe7,0x0,0xf5,0x0,0x65,
- 0x0,0x73,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x44,0x6f,
- 0x20,0x79,0x6f,0x75,0x20,0x77,0x69,0x73,0x68,0x20,0x74,0x6f,0x20,0x6b,0x65,0x65,
- 0x70,0x20,0x79,0x6f,0x75,0x72,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x73,0x3f,0x7,
- 0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,
- 0x0,0x0,0x8,0x0,0x45,0x0,0x72,0x0,0x72,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x5,0x45,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x9,0x43,
- 0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x41,
- 0x0,0x20,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0xea,0x0,0x6e,0x0,0x63,
- 0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x69,0x0,0x20,0x0,0x6d,
- 0x0,0x6f,0x0,0x64,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x64,
- 0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x76,
- 0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x68,0x61,0x73,0x20,0x62,0x65,0x65,0x6e,0x20,
- 0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,
- 0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x45,0x0,
- 0x78,0x0,0x70,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x20,0x0,
- 0x74,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x73,0x0,
- 0x20,0x0,0x63,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x72,0x0,
- 0x69,0x0,0x61,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x45,
- 0x78,0x70,0x61,0x6e,0x64,0x20,0x41,0x6c,0x6c,0x20,0x43,0x61,0x74,0x65,0x67,0x6f,
- 0x72,0x69,0x65,0x73,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x41,0x0,0x70,0x0,0x61,0x0,0x72,
- 0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f,
- 0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x75,0x0,0x61,0x0,0x6c,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x46,0x61,0x64,0x65,0x20,0x49,
- 0x6e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,
- 0x3,0x0,0x0,0x0,0x26,0x0,0x44,0x0,0x65,0x0,0x73,0x0,0x76,0x0,0x61,0x0,
- 0x6e,0x0,0x65,0x0,0x63,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x41,0x0,0x6e,0x0,
- 0x74,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x11,0x46,0x61,0x64,0x65,0x20,0x4f,0x75,0x74,0x20,0x50,0x72,
- 0x65,0x76,0x69,0x6f,0x75,0x73,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0xff,0xff,0xff,0xff,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x4,0x46,0x6c,0x69,0x70,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,
- 0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x47,0x0,0x65,
- 0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x65,
- 0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,
- 0x0,0x73,0x0,0x3a,0x0,0xa,0x0,0x25,0x0,0x31,0x0,0x2f,0x0,0x25,0x0,0x32,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x47,0x65,0x6e,0x65,0x72,0x61,
- 0x74,0x69,0x6e,0x67,0x20,0x63,0x68,0x61,0x72,0x73,0x3a,0xa,0x25,0x31,0x2f,0x25,
- 0x32,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,
- 0x3,0x0,0x0,0x0,0xc,0x0,0x47,0x0,0x75,0x0,0x61,0x0,0x72,0x0,0x64,0x0,
- 0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x47,0x75,0x61,0x72,0x64,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0x10,0x0,0x43,0x0,0x75,0x0,0x6c,0x0,0x70,0x0,0x61,0x0,0x64,
- 0x0,0x6f,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x47,0x75,
- 0x69,0x6c,0x74,0x79,0x21,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,
- 0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x55,0x0,0x6d,0x0,0x20,0x0,
- 0x6d,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x21,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x48,0x6f,0x6c,0x64,0x20,0x49,0x74,
- 0x21,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,
- 0x3,0x0,0x0,0x1,0xe,0x0,0x53,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,
- 0xe9,0x0,0x2d,0x0,0x69,0x0,0x6d,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x73,0x0,
- 0x73,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x69,0x0,
- 0x76,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x72,0x0,0x63,0x0,
- 0x61,0x0,0x64,0x0,0x61,0x0,0x2c,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0,
- 0x62,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x78,0x0,
- 0x74,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,
- 0x74,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,
- 0x65,0x0,0x64,0x0,0x69,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,
- 0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x71,0x0,0x75,0x0,
- 0x61,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x61,0x0,
- 0x6e,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,
- 0x65,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x20,0x0,
- 0x73,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x0,
- 0x70,0x0,0x72,0x0,0x6f,0x0,0x64,0x0,0x75,0x0,0x7a,0x0,0x69,0x0,0x64,0x0,
- 0x61,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x74,0x0,
- 0x61,0x0,0x6e,0x0,0x65,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,
- 0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5e,0x49,0x66,0x20,
- 0x70,0x72,0x65,0x61,0x6e,0x69,0x6d,0x20,0x69,0x73,0x20,0x63,0x68,0x65,0x63,0x6b,
- 0x65,0x64,0x2c,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x74,0x68,0x65,0x20,
- 0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x65,0x78,0x74,0x20,0x69,0x6d,0x6d,0x65,0x64,
- 0x69,0x61,0x74,0x65,0x6c,0x79,0x20,0x61,0x73,0x20,0x74,0x68,0x65,0x20,0x61,0x6e,
- 0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x20,0x70,0x6c,0x61,0x79,0x73,0x20,0x63,0x6f,
- 0x6e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x6c,0x79,0x2e,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x20,0x0,
- 0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,
- 0x28,0x0,0x2a,0x0,0x20,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,0x0,0x29,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x49,0x6d,0x61,0x67,0x65,0x73,0x20,
- 0x28,0x2a,0x2e,0x70,0x6e,0x67,0x29,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0xff,0xff,0xff,0xff,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x9,0x49,0x6d,0x6d,0x65,0x64,0x69,0x61,0x74,0x65,0x7,0x0,
- 0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,
- 0x0,0x32,0x0,0x41,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,
- 0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x61,
- 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0xfa,0x0,0x64,
- 0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x49,0x6e,
- 0x63,0x72,0x65,0x61,0x73,0x65,0x20,0x74,0x68,0x65,0x20,0x68,0x65,0x61,0x6c,0x74,
- 0x68,0x20,0x62,0x61,0x72,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x41,0x0,0x72,0x0,0x71,
- 0x0,0x75,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x49,0x0,0x4e,
- 0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x2a,0x0,0x20,0x0,0x2e,0x0,0x69,0x0,0x6e,
- 0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x49,0x6e,
- 0x69,0x20,0x46,0x69,0x6c,0x65,0x73,0x20,0x28,0x2a,0x2e,0x69,0x6e,0x69,0x29,0x7,
- 0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,
- 0x0,0x0,0xe4,0x0,0x50,0x0,0x65,0x0,0x72,0x0,0x6d,0x0,0x69,0x0,0x74,0x0,
- 0x65,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,
- 0x63,0x0,0xea,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x65,0x0,0x62,0x0,
- 0x61,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x61,0x0,
- 0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x73,0x0,
- 0x6f,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,
- 0x20,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,
- 0x2e,0x0,0xa,0x0,0x28,0x0,0x56,0x0,0x6f,0x0,0x63,0x0,0xea,0x0,0x20,0x0,
- 0x70,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,
- 0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x20,0x0,
- 0x73,0x0,0x75,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,
- 0x66,0x0,0x65,0x0,0x72,0x0,0xea,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,
- 0x73,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,
- 0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0xe7,0x0,0xf5,0x0,
- 0x65,0x0,0x73,0x0,0x21,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x5a,0x4c,0x65,0x74,0x73,0x20,0x79,0x6f,0x75,0x20,0x72,0x65,0x63,0x65,0x69,0x76,
- 0x65,0x20,0x63,0x61,0x73,0x65,0x20,0x61,0x6c,0x65,0x72,0x74,0x73,0x20,0x77,0x68,
- 0x65,0x6e,0x20,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x2e,0xa,0x28,0x59,0x6f,0x75,
- 0x20,0x63,0x61,0x6e,0x20,0x73,0x65,0x74,0x20,0x79,0x6f,0x75,0x72,0x20,0x70,0x72,
- 0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,
- 0x20,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x21,0x29,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x4e,0x0,
- 0x43,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x61,0x0,0x72,0x0,
- 0x20,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0xea,0x0,0x6e,0x0,0x63,0x0,
- 0x69,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x75,0x0,
- 0x6d,0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x76,0x0,
- 0x6f,0x0,0x20,0x0,0x2e,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x2e,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x20,0x4c,0x6f,0x61,0x64,0x20,0x65,0x76,0x69,0x64,
- 0x65,0x6e,0x63,0x65,0x20,0x66,0x72,0x6f,0x6d,0x20,0x61,0x6e,0x20,0x2e,0x69,0x6e,
- 0x69,0x20,0x66,0x69,0x6c,0x65,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0xff,0xff,0xff,0xff,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x6,0x4d,0x61,0x73,0x74,0x65,0x72,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x10,0x0,
- 0x4d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0x66,0x0,0x52,0x0,0x65,0x0,0x66,0x0,0x6c,0x0,0x69,0x0,0x74,
- 0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x67,0x0,0x65,0x0,0x73,
- 0x0,0x74,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x73,
- 0x0,0x65,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6f,
- 0x0,0x6e,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x71,0x0,0x75,
- 0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x72,
- 0x0,0x63,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x2c,0x4d,0x69,0x72,0x72,0x6f,0x72,0x20,0x79,0x6f,0x75,0x72,0x20,
- 0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x27,0x73,0x20,0x65,0x6d,0x6f,0x74,
- 0x65,0x73,0x20,0x77,0x68,0x65,0x6e,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2e,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0xff,0xff,0xff,0xff,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x4d,0x75,
- 0x73,0x69,0x63,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x4e,0x0,0x6f,0x0,0x6d,0x0,0x65,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e,0x61,0x6d,0x65,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0x42,0x0,0x4e,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,
- 0x31,0x0,0xa,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,
- 0x3a,0x0,0x20,0x0,0x25,0x0,0x32,0x0,0xa,0x0,0x44,0x0,0x65,0x0,0x73,0x0,
- 0x63,0x0,0x72,0x0,0x69,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x3a,0x0,0xa,0x0,
- 0x25,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x22,0x4e,0x61,0x6d,
- 0x65,0x3a,0x20,0x25,0x31,0xa,0x49,0x6d,0x61,0x67,0x65,0x3a,0x20,0x25,0x32,0xa,
- 0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3a,0xa,0x25,0x33,0x7,
- 0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,
- 0x0,0x0,0x4e,0x0,0x4e,0x0,0x61,0x0,0x76,0x0,0x65,0x0,0x67,0x0,0x75,0x0,
- 0x65,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x25,0x0,
- 0x31,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,
- 0x20,0x0,0x64,0x0,0x6f,0x0,0x63,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,
- 0x74,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x43,0x0,0x4d,0x0,
- 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x4e,0x61,0x76,0x69,0x67,
- 0x61,0x74,0x65,0x20,0x74,0x6f,0x20,0x25,0x31,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,
- 0x65,0x20,0x43,0x4d,0x20,0x64,0x6f,0x63,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,
- 0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x4e,0x0,
- 0x61,0x0,0x64,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e,
- 0x6f,0x6e,0x65,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x50,0x0,0x72,0x0,0x6f,0x0,0x74,0x0,
- 0x65,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0xa,0x4f,0x62,0x6a,0x65,0x63,0x74,0x69,0x6f,0x6e,0x21,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0x28,0x0,0x4f,0x0,0x70,0x0,0x61,0x0,0x2c,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,
- 0x63,0x0,0xea,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0,
- 0x6d,0x0,0x75,0x0,0x64,0x0,0x6f,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x13,0x4f,0x6f,0x70,0x73,0x2c,0x20,0x79,0x6f,0x75,0x27,0x72,0x65,0x20,
- 0x6d,0x75,0x74,0x65,0x64,0x21,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x41,0x0,0x62,0x0,0x72,
- 0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x6e,
- 0x0,0x74,0x0,0xe1,0x0,0x72,0x0,0x69,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x20,0x49,0x6e,0x76,0x65,0x6e,0x74,0x6f,
- 0x72,0x79,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,
- 0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x53,0x0,0x65,0x0,0x6e,0x0,0x68,0x0,0x61,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x50,0x61,0x73,0x73,0x77,0x6f,
- 0x72,0x64,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,
- 0x1,0x3,0xff,0xff,0xff,0xff,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,
- 0x50,0x61,0x73,0x73,0x77,0x6f,0x72,0x64,0x65,0x64,0x7,0x0,0x0,0x0,0x9,0x43,
- 0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x54,
- 0x0,0x6f,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6d,0x0,0xfa,0x0,0x73,
- 0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x61,
- 0x0,0x74,0x0,0xf3,0x0,0x72,0x0,0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x10,0x50,0x6c,0x61,0x79,0x20,0x52,0x61,0x6e,0x64,0x6f,0x6d,0x20,
- 0x53,0x6f,0x6e,0x67,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xa6,0x0,0x52,0x0,0x65,0x0,0x70,0x0,0x72,
- 0x0,0x6f,0x0,0x64,0x0,0x75,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x6d,
- 0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0xe7,
- 0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x69,
- 0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0xfa,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x6f,
- 0x0,0x2c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x6f,0x0,0x72,
- 0x0,0x6d,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x66,0x0,0x69,0x0,0x6e,
- 0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x6c,0x0,0x6f,
- 0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x2c,0x0,0x20,
- 0x0,0x71,0x0,0x75,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x6d,
- 0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x2e,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x42,0x50,0x6c,0x61,0x79,0x20,0x61,0x20,0x73,
- 0x69,0x6e,0x67,0x6c,0x65,0x2d,0x73,0x68,0x6f,0x74,0x20,0x61,0x6e,0x69,0x6d,0x61,
- 0x74,0x69,0x6f,0x6e,0x20,0x61,0x73,0x20,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x20,
- 0x62,0x79,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x6f,0x74,0x65,0x20,0x77,0x68,0x65,
- 0x6e,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,
- 0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xc8,0x0,0x54,
- 0x0,0x6f,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x69,
- 0x0,0x6d,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,
- 0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x70,
- 0x0,0x65,0x0,0x72,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x6e,
- 0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6a,0x0,0x61,
- 0x0,0x6e,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,
- 0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x68,0x0,0x6f,0x0,0x20,
- 0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x67,0x0,0x75,0x0,0x69,
- 0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,
- 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x6c,
- 0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x61,0x0,0x6e,
- 0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x61,
- 0x0,0x64,0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5d,
- 0x50,0x6c,0x61,0x79,0x20,0x72,0x65,0x61,0x6c,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,
- 0x20,0x73,0x6f,0x75,0x6e,0x64,0x20,0x61,0x6e,0x64,0x20,0x61,0x6e,0x69,0x6d,0x61,
- 0x74,0x69,0x6f,0x6e,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x76,0x69,0x65,0x77,
- 0x70,0x6f,0x72,0x74,0x20,0x6f,0x6e,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x78,0x74,
- 0x20,0x73,0x70,0x6f,0x6b,0x65,0x6e,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,
- 0x77,0x68,0x65,0x6e,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2e,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0xff,0xff,0xff,
- 0xff,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x50,0x72,0x65,0x7,0x0,
- 0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0xff,0xff,
- 0xff,0xff,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x50,0x72,0x65,0x61,
- 0x6e,0x69,0x6d,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0x7e,0x0,0x41,0x0,0x70,0x0,0x72,0x0,0x65,0x0,
- 0x73,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0,
- 0x73,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0xea,0x0,
- 0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x74,0x0,
- 0x6f,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,
- 0x73,0x0,0x75,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0xf3,0x0,0x78,0x0,
- 0x69,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,
- 0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x6c,0x0,
- 0x61,0x0,0x64,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x46,0x50,
- 0x72,0x65,0x73,0x65,0x6e,0x74,0x20,0x74,0x68,0x69,0x73,0x20,0x70,0x69,0x65,0x63,
- 0x65,0x20,0x6f,0x66,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x74,0x6f,
- 0x20,0x65,0x76,0x65,0x72,0x79,0x6f,0x6e,0x65,0x20,0x6f,0x6e,0x20,0x79,0x6f,0x75,
- 0x72,0x20,0x6e,0x65,0x78,0x74,0x20,0x73,0x70,0x6f,0x6b,0x65,0x6e,0x20,0x6d,0x65,
- 0x73,0x73,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,
- 0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x52,0x0,0x61,0x0,0x7a,0x0,
- 0xe3,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x52,
- 0x65,0x61,0x73,0x6f,0x6e,0x3a,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x9e,0x0,0x41,0x0,0x74,0x0,0x75,
- 0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x20,
- 0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x74,
- 0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x6f,0x0,0x73,0x0,0x20,
- 0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f,
- 0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,
- 0x0,0x65,0x0,0x72,0x0,0x66,0x0,0x61,0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x64,
- 0x0,0x6f,0x0,0x20,0x0,0x75,0x0,0x73,0x0,0x75,0x0,0xe1,0x0,0x72,0x0,0x69,
- 0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x63,
- 0x0,0x6f,0x0,0x72,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6e,
- 0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x3d,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x74,0x68,0x65,0x20,0x74,0x68,
- 0x65,0x6d,0x65,0x20,0x61,0x6e,0x64,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x61,
- 0x6c,0x6c,0x20,0x6f,0x66,0x20,0x74,0x68,0x65,0x20,0x75,0x69,0x20,0x65,0x6c,0x65,
- 0x6d,0x65,0x6e,0x74,0x73,0x20,0x74,0x6f,0x20,0x6d,0x61,0x74,0x63,0x68,0x2e,0x7,
- 0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0xff,
- 0xff,0xff,0xff,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x52,0x65,0x6c,
- 0x6f,0x61,0x64,0x20,0x74,0x68,0x65,0x6d,0x65,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,
- 0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xb4,0x0,0x52,0x0,
- 0x65,0x0,0x6d,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,
- 0x69,0x0,0x6e,0x0,0x69,0x0,0x73,0x0,0x77,0x0,0x61,0x0,0x70,0x0,0x20,0x0,
- 0x61,0x0,0x74,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,
- 0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,
- 0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,
- 0x61,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,
- 0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6e,0x0,
- 0x65,0x0,0x20,0x0,0xe0,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x73,0x0,0x74,0x0,
- 0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,
- 0x61,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20,0x0,
- 0x6f,0x0,0x72,0x0,0x69,0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,
- 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x60,0x52,0x65,0x6d,0x6f,0x76,
- 0x65,0x20,0x74,0x68,0x65,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x6c,0x79,0x20,
- 0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x69,0x6e,0x69,0x73,0x77,0x61,0x70,
- 0x20,0x66,0x72,0x6f,0x6d,0x20,0x74,0x68,0x65,0x20,0x6c,0x69,0x73,0x74,0x20,0x61,
- 0x6e,0x64,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,
- 0x20,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x20,0x63,0x68,0x61,0x72,0x61,0x63,
- 0x74,0x65,0x72,0x20,0x66,0x6f,0x6c,0x64,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x64,0x0,
- 0x53,0x0,0x6f,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x74,0x0,0x65,0x0,
- 0x20,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0xe7,0x0,
- 0xe3,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,
- 0x64,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,
- 0x64,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x76,0x0,0x69,0x0,
- 0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x74,0x0,0x75,0x0,0x61,0x0,
- 0x6c,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x38,0x52,0x65,0x71,
- 0x75,0x65,0x73,0x74,0x20,0x74,0x68,0x65,0x20,0x61,0x74,0x74,0x65,0x6e,0x74,0x69,
- 0x6f,0x6e,0x20,0x6f,0x66,0x20,0x74,0x68,0x65,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,
- 0x74,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x27,0x73,0x20,0x6d,0x6f,0x64,0x65,0x72,
- 0x61,0x74,0x6f,0x72,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,
- 0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x52,0x0,0x65,0x0,0x74,0x0,
- 0x6f,0x0,0x72,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0xe0,0x0,0x20,0x0,0x6c,0x0,
- 0x69,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,
- 0x73,0x0,0x65,0x0,0x72,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,
- 0x65,0x0,0x73,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1f,0x52,
- 0x65,0x74,0x75,0x72,0x6e,0x20,0x62,0x61,0x63,0x6b,0x20,0x74,0x6f,0x20,0x74,0x68,
- 0x65,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x20,0x6c,0x69,0x73,0x74,0x2e,0x7,0x0,
- 0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,
- 0x0,0x22,0x0,0x53,0x0,0x61,0x0,0x6c,0x0,0x76,0x0,0x61,0x0,0x72,0x0,0x20,
- 0x0,0x69,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0xe1,0x0,0x72,
- 0x0,0x69,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x61,
- 0x76,0x65,0x20,0x49,0x6e,0x76,0x65,0x6e,0x74,0x6f,0x72,0x79,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x8c,
- 0x0,0x53,0x0,0x61,0x0,0x6c,0x0,0x76,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x73,
- 0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0xe7,
- 0x0,0xf5,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x65,0x0,0x69,0x0,0x74,
- 0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,
- 0x0,0x20,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0xea,0x0,0x6e,0x0,0x63,
- 0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x76,
- 0x0,0x69,0x0,0x65,0x0,0x2d,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x61,
- 0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,
- 0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x48,0x53,0x61,0x76,0x65,0x20,0x61,0x6e,0x79,0x20,0x63,
- 0x68,0x61,0x6e,0x67,0x65,0x73,0x20,0x6d,0x61,0x64,0x65,0x20,0x74,0x6f,0x20,0x74,
- 0x68,0x69,0x73,0x20,0x70,0x69,0x65,0x63,0x65,0x20,0x6f,0x66,0x20,0x65,0x76,0x69,
- 0x64,0x65,0x6e,0x63,0x65,0x20,0x61,0x6e,0x64,0x20,0x73,0x65,0x6e,0x64,0x20,0x74,
- 0x68,0x65,0x6d,0x20,0x74,0x6f,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x2e,0x7,0x0,
- 0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,
- 0x0,0x48,0x0,0x53,0x0,0x61,0x0,0x6c,0x0,0x76,0x0,0x65,0x0,0x20,0x0,0x65,
- 0x0,0x76,0x0,0x69,0x0,0x64,0x0,0xea,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,
- 0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,
- 0x0,0x61,0x0,0x72,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,
- 0x0,0x2e,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x1e,0x53,0x61,0x76,0x65,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,
- 0x65,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x2e,0x69,0x6e,0x69,0x20,0x66,0x69,0x6c,
- 0x65,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,
- 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x50,0x0,0x65,0x0,0x73,0x0,0x71,0x0,0x75,
- 0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x6,0x53,0x65,0x61,0x72,0x63,0x68,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,
- 0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x62,0x0,0x53,0x0,0x65,
- 0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x20,
- 0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6f,
- 0x0,0x6e,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x63,0x0,0x6f,
- 0x0,0x6d,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x61,0x0,0x6c,
- 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x6a,0x0,0x61,0x0,0x20,
- 0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x72,0x0,0x2e,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x29,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x61,
- 0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x20,0x79,0x6f,0x75,0x20,0x77,
- 0x69,0x73,0x68,0x20,0x74,0x6f,0x20,0x70,0x61,0x69,0x72,0x20,0x77,0x69,0x74,0x68,
- 0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,
- 0x3,0xff,0xff,0xff,0xff,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53,
- 0x65,0x72,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,
- 0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x1,0xf0,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,
- 0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x75,0x0,
- 0x6d,0x0,0x20,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,
- 0x20,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,
- 0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x63,0x0,
- 0x61,0x0,0x72,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0,
- 0x75,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0xf3,0x0,0x78,0x0,0x69,0x0,0x6d,0x0,
- 0x6f,0x0,0x20,0x0,0x27,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x6e,0x0,
- 0x69,0x0,0x6d,0x0,0x27,0x0,0x2e,0x0,0x20,0x0,0x44,0x0,0x65,0x0,0x69,0x0,
- 0x78,0x0,0xe1,0x0,0x2d,0x0,0x6c,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,
- 0x20,0x0,0x70,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,
- 0x75,0x0,0x73,0x0,0x61,0x0,0x72,0x0,0xe1,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,
- 0x73,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x66,0x0,0x69,0x0,
- 0x6e,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x6c,0x0,
- 0x6f,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x74,0x0,0x69,0x0,
- 0x63,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x63,0x0,0x61,0x0,
- 0x73,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,
- 0x61,0x0,0x6d,0x0,0x29,0x0,0x2e,0x0,0xa,0x0,0x45,0x0,0x64,0x0,0x69,0x0,
- 0x74,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x67,0x0,0x69,0x0,0x74,0x0,
- 0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x70,0x0,
- 0x72,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,
- 0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x45,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,
- 0x72,0x0,0x2c,0x0,0x20,0x0,0x5b,0x0,0x58,0x0,0x5d,0x0,0x20,0x0,0x70,0x0,
- 0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x63,0x0,0x6c,0x0,
- 0x75,0x0,0x69,0x0,0x72,0x0,0x2e,0x0,0x20,0x0,0x49,0x0,0x73,0x0,0x73,0x0,
- 0x6f,0x0,0x20,0x0,0xe9,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x6c,0x0,0x76,0x0,
- 0x6f,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x73,0x0,
- 0x65,0x0,0x2f,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x63,0x0,
- 0x74,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x2f,0x0,0x3c,0x0,0x63,0x0,0x68,0x0,
- 0x61,0x0,0x72,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x3e,0x0,0x2f,0x0,
- 0x73,0x0,0x6f,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,
- 0x74,0x0,0x2e,0x0,0x69,0x0,0x6e,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0xe1,0x53,0x65,0x74,0x20,0x61,0x20,0x73,0x6f,0x75,0x6e,0x64,0x20,0x65,
- 0x66,0x66,0x65,0x63,0x74,0x20,0x74,0x6f,0x20,0x70,0x6c,0x61,0x79,0x20,0x6f,0x6e,
- 0x20,0x79,0x6f,0x75,0x72,0x20,0x6e,0x65,0x78,0x74,0x20,0x27,0x50,0x72,0x65,0x61,
- 0x6e,0x69,0x6d,0x27,0x2e,0x20,0x4c,0x65,0x61,0x76,0x69,0x6e,0x67,0x20,0x69,0x74,
- 0x20,0x6f,0x6e,0x20,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x20,0x77,0x69,0x6c,0x6c,
- 0x20,0x75,0x73,0x65,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x6f,0x74,0x65,0x2d,0x64,
- 0x65,0x66,0x69,0x6e,0x65,0x64,0x20,0x73,0x6f,0x75,0x6e,0x64,0x20,0x28,0x69,0x66,
- 0x20,0x61,0x6e,0x79,0x29,0x2e,0xa,0x45,0x64,0x69,0x74,0x20,0x62,0x79,0x20,0x74,
- 0x79,0x70,0x69,0x6e,0x67,0x20,0x61,0x6e,0x64,0x20,0x70,0x72,0x65,0x73,0x73,0x69,
- 0x6e,0x67,0x20,0x45,0x6e,0x74,0x65,0x72,0x2c,0x20,0x5b,0x58,0x5d,0x20,0x74,0x6f,
- 0x20,0x72,0x65,0x6d,0x6f,0x76,0x65,0x2e,0x20,0x54,0x68,0x69,0x73,0x20,0x73,0x61,
- 0x76,0x65,0x73,0x20,0x74,0x6f,0x20,0x79,0x6f,0x75,0x72,0x20,0x62,0x61,0x73,0x65,
- 0x2f,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x73,0x2f,0x3c,0x63,0x68,0x61,
- 0x72,0x6e,0x61,0x6d,0x65,0x3e,0x2f,0x73,0x6f,0x75,0x6e,0x64,0x6c,0x69,0x73,0x74,
- 0x2e,0x69,0x6e,0x69,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x7e,0x0,0x44,0x0,0x65,0x0,0x66,0x0,0x69,
- 0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x6f,
- 0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,
- 0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x6e,
- 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,
- 0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x73,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6e,
- 0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0xf3,0x0,0x78,0x0,0x69,0x0,0x6d,
- 0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x61,0x0,0x67,
- 0x0,0x65,0x0,0x6d,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x38,
- 0x53,0x65,0x74,0x20,0x79,0x6f,0x75,0x72,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,
- 0x65,0x72,0x27,0x73,0x20,0x65,0x6d,0x6f,0x74,0x65,0x20,0x74,0x6f,0x20,0x70,0x6c,
- 0x61,0x79,0x20,0x6f,0x6e,0x20,0x79,0x6f,0x75,0x72,0x20,0x6e,0x65,0x78,0x74,0x20,
- 0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,
- 0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x74,0x0,0x44,0x0,0x65,
- 0x0,0x66,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x70,
- 0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,
- 0x0,0x66,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x75,
- 0x0,0x70,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,
- 0x0,0x72,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x6f,
- 0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,
- 0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x2e,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x53,0x65,0x74,0x20,0x79,0x6f,
- 0x75,0x72,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x27,0x73,0x20,0x73,
- 0x75,0x70,0x70,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x61,0x72,0x79,0x20,0x62,0x61,0x63,
- 0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,
- 0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0xff,0xff,0xff,0xff,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,
- 0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0xff,0xff,
- 0xff,0xff,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x53,0x66,0x78,0x7,
- 0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,
- 0x0,0x0,0x6e,0x0,0x41,0x0,0x67,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,
- 0x61,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,
- 0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0xf3,0x0,0x78,0x0,0x69,0x0,0x6d,0x0,
- 0x61,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x61,0x0,0x67,0x0,
- 0x65,0x0,0x6d,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,
- 0x61,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,
- 0x20,0x0,0x6d,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x61,0x0,0x64,0x0,0x61,0x0,
- 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x35,0x53,0x68,0x61,0x6b,0x65,
- 0x20,0x74,0x68,0x65,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x6f,0x6e,0x20,0x6e,
- 0x65,0x78,0x74,0x20,0x73,0x70,0x6f,0x6b,0x65,0x6e,0x20,0x6d,0x65,0x73,0x73,0x61,
- 0x67,0x65,0x20,0x77,0x68,0x65,0x6e,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2e,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0xff,0xff,0xff,0xff,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x68,
- 0x6f,0x77,0x6e,0x61,0x6d,0x65,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0xff,0xff,0xff,0xff,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x9,0x53,0x68,0x6f,0x77,0x6e,0x61,0x6d,0x65,0x73,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0x14,0x0,0x45,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x61,0x0,
- 0x64,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x53,
- 0x70,0x65,0x63,0x74,0x61,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,
- 0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xaa,0x0,0x53,0x0,0x61,
- 0x0,0x6c,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x20,
- 0x0,0x73,0x0,0x75,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x6f,0x0,0x2c,
- 0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x63,0x0,0xea,0x0,0x20,0x0,0x70,0x0,0x6f,
- 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x74,0x0,0x61,
- 0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x63,0x0,0x75,
- 0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x20,
- 0x0,0x6f,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x6b,0x0,0x20,0x0,0x64,
- 0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x63,0x0,0x75,0x0,0x6d,0x0,0x65,
- 0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x61,
- 0x0,0x72,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x69,
- 0x0,0x6e,0x0,0x69,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x36,
- 0x53,0x75,0x63,0x63,0x65,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x73,0x61,0x76,0x65,
- 0x64,0x2c,0x20,0x65,0x64,0x69,0x74,0x20,0x64,0x6f,0x63,0x20,0x61,0x6e,0x64,0x20,
- 0x63,0x6d,0x64,0x6f,0x63,0x20,0x6c,0x69,0x6e,0x6b,0x20,0x6f,0x6e,0x20,0x74,0x68,
- 0x65,0x20,0x69,0x6e,0x69,0x21,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x4e,0x0,0x41,0x0,0x6c,0x0,0x74,
- 0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x74,
- 0x0,0x72,0x0,0x65,0x0,0x20,0x0,0xe1,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x73,
- 0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x61,
- 0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0xfa,0x0,0x73,
- 0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x24,0x53,0x77,0x69,0x74,0x63,0x68,0x20,0x62,0x65,0x74,0x77,0x65,0x65,0x6e,
- 0x20,0x41,0x72,0x65,0x61,0x73,0x20,0x61,0x6e,0x64,0x20,0x4d,0x75,0x73,0x69,0x63,
- 0x20,0x6c,0x69,0x73,0x74,0x73,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x54,0x0,0x4d,0x0,0x75,0x0,0x64,
- 0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x64,
- 0x0,0xea,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,
- 0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x76,
- 0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0xe1,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x20,
- 0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x62,0x0,0x61,0x0,0x6c,0x0,0x2e,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x53,0x77,0x69,0x74,0x63,0x68,0x20,0x65,
- 0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x74,0x6f,0x20,0x67,0x6c,0x6f,0x62,0x61,
- 0x6c,0x20,0x69,0x6e,0x76,0x65,0x6e,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x52,
- 0x0,0x45,0x0,0x6e,0x0,0x76,0x0,0x69,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x65,
- 0x0,0x76,0x0,0x69,0x0,0x64,0x0,0xea,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,
- 0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6e,
- 0x0,0x76,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0xe1,0x0,0x72,0x0,0x69,0x0,0x6f,
- 0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x61,0x0,0x64,0x0,0x6f,
- 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x25,0x53,0x77,0x69,0x74,
- 0x63,0x68,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x74,0x6f,0x20,0x70,
- 0x72,0x69,0x76,0x61,0x74,0x65,0x20,0x69,0x6e,0x76,0x65,0x6e,0x74,0x6f,0x72,0x79,
- 0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,
- 0x3,0x0,0x0,0x0,0x16,0x0,0x53,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x72,0x0,
- 0x6f,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0xb,0x53,0x79,0x6e,0x63,0x68,0x72,0x6f,0x6e,0x69,0x7a,0x65,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0x14,0x0,0x54,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x20,0x0,0x69,
- 0x0,0x73,0x0,0x73,0x0,0x6f,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0xa,0x54,0x61,0x6b,0x65,0x20,0x54,0x68,0x61,0x74,0x21,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xc,
- 0x0,0x45,0x0,0x6d,0x0,0x20,0x0,0x75,0x0,0x73,0x0,0x6f,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x61,0x6b,0x65,0x6e,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x32,0x0,
- 0x41,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x61,0x0,0x67,0x0,
- 0x65,0x0,0x6d,0x0,0x20,0x0,0xe9,0x0,0x20,0x0,0x6d,0x0,0x75,0x0,0x69,0x0,
- 0x74,0x0,0x6f,0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x0,0x67,0x0,0x61,0x0,
- 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x54,0x68,0x65,0x20,0x6d,
- 0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x69,0x73,0x20,0x74,0x6f,0x6f,0x20,0x6c,0x6f,
- 0x6e,0x67,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0x52,0x0,0x41,0x0,0x20,0x0,0x65,0x0,0x76,0x0,
- 0x69,0x0,0x64,0x0,0xea,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x20,0x0,
- 0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x63,0x0,0xea,0x0,
- 0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0,0x65,0x0,0x64,0x0,
- 0x69,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,
- 0x75,0x0,0x64,0x0,0x6f,0x0,0x75,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x36,0x54,0x68,0x65,0x20,0x70,0x69,0x65,0x63,0x65,0x20,0x6f,0x66,0x20,
- 0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x79,0x6f,0x75,0x27,0x76,0x65,0x20,
- 0x62,0x65,0x65,0x6e,0x20,0x65,0x64,0x69,0x74,0x69,0x6e,0x67,0x20,0x68,0x61,0x73,
- 0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,
- 0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x98,0x0,0x49,0x0,
- 0x73,0x0,0x73,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x62,0x0,
- 0x69,0x0,0x72,0x0,0xe1,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,
- 0x69,0x0,0x6d,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,
- 0x61,0x0,0x20,0x0,0x6a,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,
- 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x73,0x0,0x75,0x0,
- 0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,
- 0x20,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x71,0x0,
- 0x75,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x70,0x0,
- 0x72,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,
- 0x64,0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x49,0x54,
- 0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,
- 0x20,0x74,0x68,0x65,0x20,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x20,0x69,
- 0x6e,0x20,0x74,0x68,0x65,0x20,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x20,0x61,
- 0x73,0x20,0x73,0x6f,0x6f,0x6e,0x20,0x61,0x73,0x20,0x69,0x74,0x20,0x69,0x73,0x20,
- 0x70,0x72,0x65,0x73,0x73,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,
- 0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x1,0xec,0x0,0x49,0x0,0x73,
- 0x0,0x73,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x62,0x0,0x69,
- 0x0,0x72,0x0,0xe1,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x69,
- 0x0,0x6d,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,
- 0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x65,
- 0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x73,
- 0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x64,
- 0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x66,0x0,0x69,0x0,0x6e,
- 0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x76,
- 0x0,0x69,0x0,0x65,0x0,0x77,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,
- 0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x71,0x0,0x75,
- 0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x70,0x0,0x72,
- 0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x64,
- 0x0,0x61,0x0,0x2e,0x0,0xa,0x0,0x50,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,
- 0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6d,
- 0x0,0x61,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x73,
- 0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,
- 0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x6e,
- 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x76,
- 0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,
- 0x0,0x20,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x73,
- 0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x61,
- 0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x20,
- 0x0,0x5b,0x0,0x77,0x0,0x65,0x0,0x62,0x0,0x70,0x0,0x2f,0x0,0x61,0x0,0x70,
- 0x0,0x6e,0x0,0x67,0x0,0x2f,0x0,0x67,0x0,0x69,0x0,0x66,0x0,0x2f,0x0,0x70,
- 0x0,0x6e,0x0,0x67,0x0,0x5d,0x0,0x2e,0x0,0x20,0x0,0x45,0x0,0x20,0x0,0x65,
- 0x0,0x66,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x73,
- 0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x70,
- 0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x69,
- 0x0,0x7a,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x5b,0x0,0x77,
- 0x0,0x61,0x0,0x76,0x0,0x2f,0x0,0x6f,0x0,0x67,0x0,0x67,0x0,0x2f,0x0,0x6f,
- 0x0,0x70,0x0,0x75,0x0,0x73,0x0,0x5d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0xd6,0x54,0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x64,0x69,0x73,0x70,
- 0x6c,0x61,0x79,0x20,0x74,0x68,0x65,0x20,0x63,0x75,0x73,0x74,0x6f,0x6d,0x20,0x63,
- 0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x2d,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,
- 0x20,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x20,0x69,0x6e,0x20,0x74,0x68,
- 0x65,0x20,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x20,0x61,0x73,0x20,0x73,0x6f,
- 0x6f,0x6e,0x20,0x61,0x73,0x20,0x69,0x74,0x20,0x69,0x73,0x20,0x70,0x72,0x65,0x73,
- 0x73,0x65,0x64,0x2e,0xa,0x54,0x6f,0x20,0x6d,0x61,0x6b,0x65,0x20,0x6f,0x6e,0x65,
- 0x2c,0x20,0x79,0x6f,0x75,0x72,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,
- 0x27,0x73,0x20,0x66,0x6f,0x6c,0x64,0x65,0x72,0x20,0x6d,0x75,0x73,0x74,0x20,0x63,
- 0x6f,0x6e,0x74,0x61,0x69,0x6e,0x20,0x63,0x75,0x73,0x74,0x6f,0x6d,0x2e,0x5b,0x77,
- 0x65,0x62,0x70,0x2f,0x61,0x70,0x6e,0x67,0x2f,0x67,0x69,0x66,0x2f,0x70,0x6e,0x67,
- 0x5d,0x20,0x61,0x6e,0x64,0x20,0x63,0x75,0x73,0x74,0x6f,0x6d,0x2e,0x5b,0x77,0x61,
- 0x76,0x2f,0x6f,0x67,0x67,0x2f,0x6f,0x70,0x75,0x73,0x5d,0x20,0x73,0x6f,0x75,0x6e,
- 0x64,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,
- 0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x41,0x0,0x6f,
- 0x0,0x20,0x0,0x66,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x6f,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x9,0x54,0x6f,0x20,0x62,0x65,0x68,0x69,0x6e,0x64,0x7,
- 0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,
- 0x0,0x0,0x16,0x0,0x50,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x66,0x0,
- 0x72,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x8,0x54,0x6f,0x20,0x66,0x72,0x6f,0x6e,0x74,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x62,0x0,
- 0x41,0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,
- 0x65,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,
- 0x62,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x2d,0x0,0x70,0x0,0x61,0x0,0x70,0x0,
- 0x6f,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,
- 0x76,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x20,0x0,
- 0x6f,0x0,0x20,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x62,0x0,0x61,0x0,0x6c,0x0,
- 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x54,0x6f,0x67,0x67,0x6c,
- 0x65,0x20,0x62,0x65,0x74,0x77,0x65,0x65,0x6e,0x20,0x73,0x65,0x72,0x76,0x65,0x72,
- 0x20,0x63,0x68,0x61,0x74,0x20,0x61,0x6e,0x64,0x20,0x67,0x6c,0x6f,0x62,0x61,0x6c,
- 0x20,0x41,0x4f,0x32,0x20,0x63,0x68,0x61,0x74,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,
- 0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xba,0x0,0x4d,
- 0x0,0x75,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x72,
- 0x0,0x67,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x73,
- 0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x61,
- 0x0,0x72,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x75,
- 0x0,0x6d,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x21,0x0,0x20,
- 0x0,0x56,0x0,0x6f,0x0,0x63,0x0,0xea,0x0,0x20,0x0,0x73,0x0,0xf3,0x0,0x20,
- 0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x20,
- 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x6e,0x0,0x6f,
- 0x0,0x6d,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x72,
- 0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x73,
- 0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x74,0x0,0x65,0x0,0x6e,
- 0x0,0x73,0x0,0xe3,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x51,0x54,0x6f,0x6f,0x20,0x6d,0x61,0x6e,0x79,0x20,0x61,0x72,0x67,0x75,0x6d,
- 0x65,0x6e,0x74,0x73,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x61,0x20,0x63,
- 0x61,0x73,0x65,0x21,0x20,0x59,0x6f,0x75,0x20,0x6f,0x6e,0x6c,0x79,0x20,0x6e,0x65,
- 0x65,0x64,0x20,0x6f,0x6e,0x65,0x20,0x66,0x69,0x6c,0x65,0x6e,0x61,0x6d,0x65,0x2c,
- 0x20,0x77,0x69,0x74,0x68,0x6f,0x75,0x74,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,
- 0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0xe2,0x0,0x4d,0x0,0x75,0x0,0x69,0x0,0x74,0x0,
- 0x6f,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x75,0x0,0x6d,0x0,
- 0x65,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x61,0x0,
- 0x72,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x6c,0x0,0x76,0x0,0x61,0x0,
- 0x72,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x73,0x0,
- 0x6f,0x0,0x21,0x0,0x20,0x0,0x56,0x0,0x6f,0x0,0x63,0x0,0xea,0x0,0x20,0x0,
- 0x73,0x0,0xf3,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x69,0x0,
- 0x73,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,
- 0x20,0x0,0x6e,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,
- 0x20,0x0,0x61,0x0,0x72,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,
- 0x20,0x0,0x73,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x74,0x0,
- 0x65,0x0,0x6e,0x0,0x73,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x20,0x0,
- 0x6f,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,
- 0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x62,0x0,
- 0x75,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x67,0x54,0x6f,0x6f,0x20,0x6d,0x61,0x6e,0x79,0x20,0x61,0x72,0x67,0x75,
- 0x6d,0x65,0x6e,0x74,0x73,0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x61,0x20,
- 0x63,0x61,0x73,0x65,0x21,0x20,0x59,0x6f,0x75,0x20,0x6f,0x6e,0x6c,0x79,0x20,0x6e,
- 0x65,0x65,0x64,0x20,0x61,0x20,0x66,0x69,0x6c,0x65,0x6e,0x61,0x6d,0x65,0x20,0x77,
- 0x69,0x74,0x68,0x6f,0x75,0x74,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,
- 0x20,0x61,0x6e,0x64,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x21,0x7,0x0,0x0,0x0,0x9,0x43,
- 0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x5c,0x0,0x54,
- 0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x73,0x0,0x66,0x0,0x69,0x0,0x72,0x0,0x61,
- 0x0,0x20,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0xea,0x0,0x6e,0x0,0x63,
- 0x0,0x69,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,
- 0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x6e,
- 0x0,0x74,0x0,0xe1,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x67,0x0,0x6c,
- 0x0,0x6f,0x0,0x62,0x0,0x61,0x0,0x6c,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x26,0x54,0x72,0x61,0x6e,0x73,0x66,0x65,0x72,0x20,0x65,0x76,0x69,
- 0x64,0x65,0x6e,0x63,0x65,0x20,0x74,0x6f,0x20,0x67,0x6c,0x6f,0x62,0x61,0x6c,0x20,
- 0x69,0x6e,0x76,0x65,0x6e,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,
- 0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x5e,0x0,0x54,
- 0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x73,0x0,0x66,0x0,0x69,0x0,0x72,0x0,0x61,
- 0x0,0x20,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0xea,0x0,0x6e,0x0,0x63,
- 0x0,0x69,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,
- 0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x6e,
- 0x0,0x74,0x0,0xe1,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x72,
- 0x0,0x69,0x0,0x76,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x27,0x54,0x72,0x61,0x6e,0x73,0x66,0x65,0x72,0x20,0x65,
- 0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x74,0x6f,0x20,0x70,0x72,0x69,0x76,0x61,
- 0x74,0x65,0x20,0x69,0x6e,0x76,0x65,0x6e,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0xff,0xff,0xff,
- 0xff,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x55,0x4e,0x4b,0x4e,0x4f,
- 0x57,0x4e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,
- 0x1,0x3,0x0,0x0,0x0,0x9c,0x0,0x51,0x0,0x75,0x0,0x61,0x0,0x6e,0x0,0x64,
- 0x0,0x6f,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x73,0x0,0x6f,0x0,0x20,0x0,0x65,
- 0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x61,
- 0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x2c,0x0,0x20,
- 0x0,0x73,0x0,0x75,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0xf3,0x0,0x78,
- 0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,
- 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,
- 0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x67,
- 0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0xe1,0x0,0x20,
- 0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x6f,
- 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x47,0x57,0x68,0x65,0x6e,
- 0x20,0x74,0x68,0x69,0x73,0x20,0x69,0x73,0x20,0x74,0x75,0x72,0x6e,0x65,0x64,0x20,
- 0x6f,0x6e,0x2c,0x20,0x79,0x6f,0x75,0x72,0x20,0x6e,0x65,0x78,0x74,0x20,0x69,0x6e,
- 0x2d,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x20,0x6d,0x65,0x73,0x73,0x61,
- 0x67,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x61,0x20,0x73,0x68,0x6f,
- 0x75,0x74,0x21,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x1,0x4,0x0,0x56,0x0,0x6f,0x0,0x63,0x0,0xea,0x0,
- 0x20,0x0,0x6e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,
- 0x73,0x0,0x75,0x0,0x69,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,
- 0x70,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x60,0x0,0x62,0x0,
- 0x61,0x0,0x73,0x0,0x65,0x0,0x2f,0x0,0x63,0x0,0x61,0x0,0x73,0x0,0x65,0x0,
- 0x73,0x0,0x2f,0x0,0x60,0x0,0x21,0x0,0x20,0x0,0x46,0x0,0x6f,0x0,0x69,0x0,
- 0x20,0x0,0x66,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,
- 0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x63,0x0,0xea,0x0,
- 0x2c,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x2c,0x0,0x20,0x0,0x63,0x0,
- 0x6f,0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x69,0x0,0x20,0x0,
- 0x66,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0,
- 0x72,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x63,0x0,0xea,0x0,0x2c,0x0,
- 0x20,0x0,0xe9,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x76,0x0,0xe1,0x0,
- 0x76,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,
- 0x76,0x0,0x6f,0x0,0x63,0x0,0xea,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,
- 0x65,0x0,0x6e,0x0,0x68,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x63,0x0,
- 0x6c,0x0,0x75,0x0,0xed,0x0,0x64,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x91,0x59,0x6f,0x75,0x20,0x64,0x6f,0x6e,0x27,0x74,0x20,0x68,
- 0x61,0x76,0x65,0x20,0x61,0x20,0x60,0x62,0x61,0x73,0x65,0x2f,0x63,0x61,0x73,0x65,
- 0x73,0x2f,0x60,0x20,0x66,0x6f,0x6c,0x64,0x65,0x72,0x21,0x20,0x49,0x74,0x20,0x77,
- 0x61,0x73,0x20,0x6a,0x75,0x73,0x74,0x20,0x6d,0x61,0x64,0x65,0x20,0x66,0x6f,0x72,
- 0x20,0x79,0x6f,0x75,0x2c,0x20,0x62,0x75,0x74,0x20,0x73,0x65,0x65,0x69,0x6e,0x67,
- 0x20,0x61,0x73,0x20,0x69,0x74,0x20,0x57,0x41,0x53,0x20,0x6a,0x75,0x73,0x74,0x20,
- 0x6d,0x61,0x64,0x65,0x20,0x66,0x6f,0x72,0x20,0x79,0x6f,0x75,0x2c,0x20,0x69,0x74,
- 0x27,0x73,0x20,0x6c,0x69,0x6b,0x65,0x6c,0x79,0x20,0x74,0x68,0x61,0x74,0x20,0x79,
- 0x6f,0x75,0x20,0x73,0x6f,0x6d,0x65,0x68,0x6f,0x77,0x20,0x64,0x65,0x6c,0x65,0x74,
- 0x65,0x64,0x20,0x69,0x74,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x1,0x62,0x0,0x56,0x0,0x6f,0x0,0x63,
- 0x0,0xea,0x0,0x20,0x0,0x6e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x6f,
- 0x0,0x73,0x0,0x73,0x0,0x75,0x0,0x69,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x61,
- 0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x60,
- 0x0,0x62,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x2f,0x0,0x63,0x0,0x61,0x0,0x73,
- 0x0,0x65,0x0,0x73,0x0,0x2f,0x0,0x60,0x0,0x21,0x0,0x20,0x0,0x46,0x0,0x6f,
- 0x0,0x69,0x0,0x20,0x0,0x66,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x20,
- 0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x63,
- 0x0,0xea,0x0,0x2c,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x2c,0x0,0x20,
- 0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x69,
- 0x0,0x20,0x0,0x66,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x70,
- 0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x63,0x0,0xea,
- 0x0,0x2c,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x76,
- 0x0,0x65,0x0,0x6c,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20,
- 0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x76,
- 0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x73,
- 0x0,0x6f,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x6f,
- 0x0,0x63,0x0,0xea,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,
- 0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x63,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x6e,
- 0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x70,
- 0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x20,
- 0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,
- 0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x6c,0x0,0xe1,0x0,0x2e,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0xae,0x59,0x6f,0x75,0x20,0x64,0x6f,0x6e,0x27,0x74,0x20,
- 0x68,0x61,0x76,0x65,0x20,0x61,0x20,0x60,0x62,0x61,0x73,0x65,0x2f,0x63,0x61,0x73,
- 0x65,0x73,0x2f,0x60,0x20,0x66,0x6f,0x6c,0x64,0x65,0x72,0x21,0x20,0x49,0x74,0x20,
- 0x77,0x61,0x73,0x20,0x6a,0x75,0x73,0x74,0x20,0x6d,0x61,0x64,0x65,0x20,0x66,0x6f,
- 0x72,0x20,0x79,0x6f,0x75,0x2c,0x20,0x62,0x75,0x74,0x20,0x73,0x65,0x65,0x69,0x6e,
- 0x67,0x20,0x61,0x73,0x20,0x69,0x74,0x20,0x57,0x41,0x53,0x20,0x6a,0x75,0x73,0x74,
- 0x20,0x6d,0x61,0x64,0x65,0x20,0x66,0x6f,0x72,0x20,0x79,0x6f,0x75,0x2c,0x20,0x69,
- 0x74,0x27,0x73,0x20,0x6c,0x69,0x6b,0x65,0x6c,0x79,0x20,0x74,0x68,0x65,0x20,0x63,
- 0x61,0x73,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x79,0x6f,0x75,0x27,0x72,0x65,0x20,
- 0x6c,0x6f,0x6f,0x6b,0x69,0x6e,0x67,0x20,0x66,0x6f,0x72,0x20,0x63,0x61,0x6e,0x27,
- 0x74,0x20,0x62,0x65,0x20,0x66,0x6f,0x75,0x6e,0x64,0x20,0x69,0x6e,0x20,0x74,0x68,
- 0x65,0x72,0x65,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x56,0x0,0x6f,0x0,0x63,0x0,0xea,
- 0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x69,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x6e,
- 0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x15,0x59,0x6f,0x75,0x20,0x68,0x61,0x76,0x65,0x20,0x62,0x65,0x65,0x6e,0x20,
- 0x62,0x61,0x6e,0x6e,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x56,0x0,0x6f,0x0,
- 0x63,0x0,0xea,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x76,0x0,0x65,0x0,0x20,0x0,
- 0x66,0x0,0x6f,0x0,0x72,0x0,0x6e,0x0,0x65,0x0,0x63,0x0,0x65,0x0,0x72,0x0,
- 0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x74,0x0,0x69,0x0,
- 0x76,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x59,
- 0x6f,0x75,0x20,0x6d,0x75,0x73,0x74,0x20,0x70,0x72,0x6f,0x76,0x69,0x64,0x65,0x20,
- 0x61,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,
- 0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x1,0x82,0x0,0x56,0x0,
- 0x6f,0x0,0x63,0x0,0xea,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x63,0x0,
- 0x69,0x0,0x73,0x0,0x61,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6e,0x0,
- 0x65,0x0,0x63,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,
- 0x6e,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,
- 0x61,0x0,0x72,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,
- 0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,
- 0x72,0x0,0x65,0x0,0x67,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x28,0x0,0x65,0x0,
- 0x78,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,
- 0x6e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x63,0x0,0x65,0x0,
- 0x73,0x0,0x73,0x0,0xe1,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x29,0x0,0x21,0x0,
- 0x20,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x71,0x0,
- 0x75,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0,
- 0x74,0x0,0xe1,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,
- 0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x60,0x0,0x62,0x0,0x61,0x0,0x73,0x0,
- 0x65,0x0,0x2f,0x0,0x63,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x73,0x0,0x2f,0x0,
- 0x60,0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0xe9,0x0,
- 0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,
- 0x66,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x64,0x0,
- 0x6f,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x72,0x0,0x65,0x0,0x74,0x0,
- 0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x2e,0x0,0xa,0x0,
- 0x43,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x71,0x0,0x75,0x0,
- 0x65,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x63,0x0,0xea,0x0,0x20,0x0,0x70,0x0,
- 0x6f,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x72,0x0,
- 0x65,0x0,0x67,0x0,0x61,0x0,0x72,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x31,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xae,0x59,0x6f,0x75,0x20,0x6e,0x65,0x65,
- 0x64,0x20,0x74,0x6f,0x20,0x67,0x69,0x76,0x65,0x20,0x61,0x20,0x66,0x69,0x6c,0x65,
- 0x6e,0x61,0x6d,0x65,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x28,0x65,0x78,
- 0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x6e,0x65,0x65,0x64,
- 0x65,0x64,0x29,0x21,0x20,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,
- 0x68,0x61,0x74,0x20,0x69,0x74,0x20,0x69,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,
- 0x20,0x60,0x62,0x61,0x73,0x65,0x2f,0x63,0x61,0x73,0x65,0x73,0x2f,0x60,0x20,0x66,
- 0x6f,0x6c,0x64,0x65,0x72,0x2c,0x20,0x61,0x6e,0x64,0x20,0x74,0x68,0x61,0x74,0x20,
- 0x69,0x74,0x20,0x69,0x73,0x20,0x61,0x20,0x63,0x6f,0x72,0x72,0x65,0x63,0x74,0x6c,
- 0x79,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x74,0x65,0x64,0x20,0x69,0x6e,0x69,0x2e,
- 0xa,0x43,0x61,0x73,0x65,0x73,0x20,0x79,0x6f,0x75,0x20,0x63,0x61,0x6e,0x20,0x6c,
- 0x6f,0x61,0x64,0x3a,0x20,0x25,0x31,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xc6,0x0,0x56,0x0,0x6f,0x0,
- 0x63,0x0,0xea,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x76,0x0,0x65,0x0,0x20,0x0,
- 0x66,0x0,0x6f,0x0,0x72,0x0,0x6e,0x0,0x65,0x0,0x63,0x0,0x65,0x0,0x72,0x0,
- 0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,
- 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x71,0x0,0x75,0x0,
- 0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,
- 0x20,0x0,0x73,0x0,0x61,0x0,0x6c,0x0,0x76,0x0,0x61,0x0,0x72,0x0,0x20,0x0,
- 0x28,0x0,0x73,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x74,0x0,
- 0x65,0x0,0x6e,0x0,0x73,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,
- 0x63,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0xe1,0x0,0x72,0x0,0x69,0x0,0x61,0x0,
- 0x29,0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x73,0x0,
- 0x74,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,
- 0x74,0x0,0x72,0x0,0x69,0x0,0x62,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,
- 0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x54,0x59,0x6f,0x75,0x20,0x6e,
- 0x65,0x65,0x64,0x20,0x74,0x6f,0x20,0x67,0x69,0x76,0x65,0x20,0x61,0x20,0x66,0x69,
- 0x6c,0x65,0x6e,0x61,0x6d,0x65,0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x28,
- 0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x6e,0x65,
- 0x65,0x64,0x65,0x64,0x29,0x20,0x61,0x6e,0x64,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,
- 0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x21,0x7,
- 0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,
- 0x0,0x0,0x50,0x0,0x56,0x0,0x6f,0x0,0x63,0x0,0xea,0x0,0x20,0x0,0x72,0x0,
- 0x65,0x0,0x63,0x0,0x65,0x0,0x62,0x0,0x65,0x0,0x75,0x0,0x20,0x0,0x6f,0x0,
- 0x20,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x44,0x0,
- 0x65,0x0,0x73,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x61,0x0,0x72,0x0,
- 0x20,0x0,0x4d,0x0,0x6f,0x0,0x64,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,
- 0x73,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2d,0x59,0x6f,0x75,
- 0x20,0x77,0x65,0x72,0x65,0x20,0x67,0x72,0x61,0x6e,0x74,0x65,0x64,0x20,0x74,0x68,
- 0x65,0x20,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x20,0x4d,0x6f,0x64,0x63,0x61,0x6c,
- 0x6c,0x73,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,
- 0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x53,
- 0x0,0x65,0x0,0x75,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x20,
- 0x0,0x22,0x0,0x25,0x0,0x31,0x0,0x22,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x69,
- 0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x61,
- 0x0,0x64,0x0,0x6f,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,
- 0x59,0x6f,0x75,0x72,0x20,0x63,0x61,0x73,0x65,0x20,0x22,0x25,0x31,0x22,0x20,0x77,
- 0x61,0x73,0x20,0x6c,0x6f,0x61,0x64,0x65,0x64,0x21,0x7,0x0,0x0,0x0,0x9,0x43,
- 0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x74,
- 0x0,0x6f,0x0,0x63,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x6d,
- 0x0,0xfa,0x0,0x73,0x0,0x69,0x0,0x63,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x11,0x68,0x61,0x73,0x20,0x70,0x6c,0x61,0x79,0x65,0x64,0x20,0x61,
- 0x20,0x73,0x6f,0x6e,0x67,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,
- 0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x61,0x0,0x70,0x0,0x72,0x0,
- 0x65,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,
- 0x65,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0xea,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,
- 0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x68,0x61,0x73,0x20,0x70,
- 0x72,0x65,0x73,0x65,0x6e,0x74,0x65,0x64,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,
- 0x65,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,
- 0x3,0x0,0x0,0x0,0xa,0x0,0x53,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x65,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x41,0x62,0x6f,0x75,0x74,0x7,0x0,
- 0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x50,
- 0x0,0x65,0x0,0x72,0x0,0x6d,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x61,
- 0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x76,
- 0x0,0xe1,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x73,
- 0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,
- 0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x6c,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x74,
- 0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x33,0x41,0x6c,
- 0x6c,0x6f,0x77,0x73,0x20,0x79,0x6f,0x75,0x20,0x74,0x6f,0x20,0x63,0x68,0x61,0x6e,
- 0x67,0x65,0x20,0x76,0x61,0x72,0x69,0x6f,0x75,0x73,0x20,0x61,0x73,0x70,0x65,0x63,
- 0x74,0x73,0x20,0x6f,0x66,0x20,0x74,0x68,0x65,0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,
- 0x2e,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,0x0,0x0,
- 0x24,0x0,0x41,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6e,0x0,0x65,0x0,
- 0x79,0x0,0x20,0x0,0x4f,0x0,0x6e,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,
- 0x20,0x0,0x25,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x41,
- 0x74,0x74,0x6f,0x72,0x6e,0x65,0x79,0x20,0x4f,0x6e,0x6c,0x69,0x6e,0x65,0x20,0x25,
- 0x31,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,0x0,0x0,
- 0x10,0x0,0x43,0x0,0x61,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,
- 0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x61,0x6e,0x63,0x65,
- 0x6c,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,0x0,0x1,
- 0x28,0x0,0x53,0x0,0x65,0x0,0x75,0x0,0x20,0x0,0x63,0x0,0x6c,0x0,0x69,0x0,
- 0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0xe3,0x0,0x6f,0x0,
- 0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x65,0x0,0x20,0x0,
- 0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,
- 0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x64,0x0,
- 0x6f,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x72,0x0,0x65,0x0,0x74,0x0,
- 0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x2e,0x0,0xa,0x0,
- 0x56,0x0,0x6f,0x0,0x63,0x0,0xea,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x69,0x0,
- 0x78,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,
- 0x73,0x0,0x20,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x63,0x0,
- 0x75,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,
- 0x72,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,
- 0x74,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x69,0x0,
- 0x6e,0x0,0x79,0x0,0x2e,0x0,0x63,0x0,0x63,0x0,0x2f,0x0,0x67,0x0,0x65,0x0,
- 0x74,0x0,0x61,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,
- 0x6c,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,
- 0x20,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x20,0x0,
- 0x70,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x27,0x0,0x62,0x0,
- 0x61,0x0,0x73,0x0,0x65,0x0,0x27,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x95,0x49,0x74,0x20,0x64,0x6f,0x65,0x73,0x6e,0x27,0x74,0x20,0x6c,0x6f,
- 0x6f,0x6b,0x20,0x6c,0x69,0x6b,0x65,0x20,0x79,0x6f,0x75,0x72,0x20,0x63,0x6c,0x69,
- 0x65,0x6e,0x74,0x20,0x69,0x73,0x20,0x73,0x65,0x74,0x20,0x75,0x70,0x20,0x63,0x6f,
- 0x72,0x72,0x65,0x63,0x74,0x6c,0x79,0x2e,0xa,0x44,0x69,0x64,0x20,0x79,0x6f,0x75,
- 0x20,0x64,0x6f,0x77,0x6e,0x6c,0x6f,0x61,0x64,0x20,0x61,0x6c,0x6c,0x20,0x72,0x65,
- 0x73,0x6f,0x75,0x72,0x63,0x65,0x73,0x20,0x63,0x6f,0x72,0x72,0x65,0x63,0x74,0x6c,
- 0x79,0x20,0x66,0x72,0x6f,0x6d,0x20,0x74,0x69,0x6e,0x79,0x2e,0x63,0x63,0x2f,0x67,
- 0x65,0x74,0x61,0x6f,0x2c,0x20,0x69,0x6e,0x63,0x6c,0x75,0x64,0x69,0x6e,0x67,0x20,
- 0x74,0x68,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x20,0x27,0x62,0x61,0x73,0x65,0x27,
- 0x20,0x66,0x6f,0x6c,0x64,0x65,0x72,0x3f,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,
- 0x62,0x79,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x72,
- 0x0,0x65,0x0,0x67,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x7,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x7,0x0,0x0,
- 0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x4e,0x0,
- 0x6f,0x0,0x6d,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e,
- 0x61,0x6d,0x65,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,
- 0x0,0x0,0x6,0x0,0x4e,0x0,0xe3,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x2,0x4e,0x6f,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,
- 0x3,0x0,0x0,0x0,0xe,0x0,0x4f,0x0,0x66,0x0,0x66,0x0,0x6c,0x0,0x69,0x0,
- 0x6e,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4f,0x66,0x66,
- 0x6c,0x69,0x6e,0x65,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,
- 0x0,0x0,0x0,0x1a,0x0,0x4f,0x0,0x6e,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x65,
- 0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x31,0x0,0x2f,0x0,0x25,0x0,0x32,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4f,0x6e,0x6c,0x69,0x6e,0x65,0x3a,0x20,
- 0x25,0x31,0x2f,0x25,0x32,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,
- 0x3,0x0,0x0,0x0,0x12,0x0,0x50,0x0,0x65,0x0,0x73,0x0,0x71,0x0,0x75,0x0,
- 0x69,0x0,0x73,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x6,0x53,0x65,0x61,0x72,0x63,0x68,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,
- 0x79,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,
- 0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0xe7,0x0,0xf5,0x0,0x65,0x0,
- 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x74,0x74,0x69,
- 0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,
- 0x0,0x0,0x14,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0xe3,0x0,0x6f,0x0,
- 0x3a,0x0,0x20,0x0,0x25,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0xb,0x56,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3a,0x20,0x25,0x31,0x7,0x0,0x0,0x0,
- 0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x53,0x0,0x69,
- 0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x59,0x65,0x73,0x7,
- 0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0xff,0xff,0xff,0xff,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x55,0x4e,0x4b,0x4e,0x4f,0x57,0x4e,
- 0x7,0x0,0x0,0x0,0xc,0x63,0x68,0x61,0x74,0x6c,0x6f,0x67,0x70,0x69,0x65,0x63,
- 0x65,0x1,0x3,0xff,0xff,0xff,0xff,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x5,0x45,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0xf,0x64,0x65,0x62,0x75,0x67,
- 0x5f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x73,0x1,0x3,0xff,0xff,0xff,0xff,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x45,0x72,0x72,0x6f,0x72,0x3a,
- 0x20,0x25,0x31,0x7,0x0,0x0,0x0,0xf,0x64,0x65,0x62,0x75,0x67,0x5f,0x66,0x75,
- 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x73,0x1,0x3,0xff,0xff,0xff,0xff,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4e,0x6f,0x74,0x69,0x63,0x65,0x7,0x0,0x0,
- 0x0,0xf,0x64,0x65,0x62,0x75,0x67,0x5f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,
- 0x73,0x1,0x88,0x0,0x0,0x0,0x2,0x3,0x1,
- // /media/stoned/SHARED/Git/AO2-Client/resource/translations/ao_en.qm
- 0x0,0x0,0x0,0x21,
- 0x3c,
- 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0xa7,
- 0x0,0x0,0x0,0x5,0x65,0x6e,0x5f,0x55,0x53,0x88,0x0,0x0,0x0,0x2,0x1,0x1,
-
- // /media/stoned/SHARED/Git/AO2-Client/resource/translations/ao_es.qm
- 0x0,0x0,0xa0,0xf0,
- 0x3c,
- 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0xa7,
- 0x0,0x0,0x0,0x5,0x65,0x73,0x5f,0x45,0x53,0x42,0x0,0x0,0x7,0x88,0x0,0x0,
- 0x5,0x4f,0x0,0x0,0x97,0x3f,0x0,0x0,0x44,0x3d,0x0,0x0,0x48,0x67,0x0,0x0,
- 0x48,0xa,0x0,0x0,0x15,0xc3,0x0,0x0,0x57,0x85,0x0,0x0,0x6d,0xc7,0x0,0x0,
- 0x59,0xd8,0x0,0x0,0x7a,0x62,0x0,0x0,0x5f,0xc3,0x0,0x0,0x98,0x74,0x0,0x4,
- 0xd3,0x0,0x0,0x0,0x61,0x38,0x0,0x5,0x48,0x35,0x0,0x0,0x68,0x21,0x0,0x5,
- 0x48,0x35,0x0,0x0,0x97,0x15,0x0,0x5,0x56,0x45,0x0,0x0,0x69,0x61,0x0,0x5,
- 0x7b,0xba,0x0,0x0,0x33,0xa5,0x0,0x1d,0xb,0x21,0x0,0x0,0x98,0x39,0x0,0x33,
- 0x9c,0xa,0x0,0x0,0x1b,0x56,0x0,0x47,0x96,0xc4,0x0,0x0,0x93,0xa7,0x0,0x48,
- 0xba,0xff,0x0,0x0,0x13,0xbf,0x0,0x49,0x30,0x73,0x0,0x0,0x4c,0xeb,0x0,0x4c,
- 0x99,0x62,0x0,0x0,0x5f,0x9b,0x0,0x4c,0x99,0x62,0x0,0x0,0x98,0xbd,0x0,0x4e,
- 0xb8,0x84,0x0,0x0,0x61,0xc5,0x0,0x54,0xc9,0xf3,0x0,0x0,0x67,0xfe,0x0,0x5a,
- 0x81,0xbe,0x0,0x0,0x7f,0x0,0x0,0x5b,0xee,0x2e,0x0,0x0,0x64,0x44,0x0,0x5c,
- 0xcf,0x9e,0x0,0x0,0x62,0x6d,0x0,0x73,0x9c,0x8e,0x0,0x0,0x41,0x5b,0x0,0x74,
- 0x22,0x2e,0x0,0x0,0x27,0xfe,0x0,0x81,0x97,0x4e,0x0,0x0,0x3a,0x4,0x0,0x8b,
- 0xa2,0x99,0x0,0x0,0x75,0xad,0x0,0x9a,0x6c,0xca,0x0,0x0,0x18,0x64,0x0,0xa0,
- 0x39,0x3e,0x0,0x0,0x52,0x39,0x0,0xa5,0x9e,0x4e,0x0,0x0,0x0,0x58,0x0,0xb7,
- 0xb7,0x3e,0x0,0x0,0x78,0xb2,0x0,0xc6,0xda,0xde,0x0,0x0,0x2b,0x61,0x0,0xd1,
- 0x29,0xfe,0x0,0x0,0x1d,0x91,0x0,0xf4,0x21,0x9e,0x0,0x0,0x8a,0x59,0x1,0x8,
- 0x6f,0x91,0x0,0x0,0x7b,0xea,0x1,0x8,0xc3,0x9a,0x0,0x0,0x17,0xc5,0x1,0xb,
- 0xd3,0x5e,0x0,0x0,0x67,0x46,0x1,0xe,0x4a,0x51,0x0,0x0,0x50,0x48,0x1,0x11,
- 0x0,0x3,0x0,0x0,0x57,0x32,0x1,0x36,0x85,0x9e,0x0,0x0,0x57,0xa1,0x1,0x6a,
- 0x19,0x1a,0x0,0x0,0x3e,0x2f,0x1,0x6d,0x91,0xe4,0x0,0x0,0x84,0x6b,0x1,0x71,
- 0x35,0x8e,0x0,0x0,0x7f,0x2f,0x1,0x71,0xfc,0x57,0x0,0x0,0x92,0xe4,0x1,0x90,
- 0x8a,0xff,0x0,0x0,0x95,0x3,0x1,0xc6,0x62,0xee,0x0,0x0,0x19,0x51,0x1,0xd4,
- 0x4c,0xee,0x0,0x0,0x24,0x31,0x1,0xec,0xca,0xde,0x0,0x0,0x4e,0xfa,0x1,0xf4,
- 0xee,0x2e,0x0,0x0,0x59,0xa0,0x2,0x21,0x83,0xba,0x0,0x0,0x14,0xf3,0x2,0x2a,
- 0xb9,0xea,0x0,0x0,0x3d,0x93,0x2,0x48,0x6f,0xbe,0x0,0x0,0x70,0x4b,0x2,0x5b,
- 0x7c,0x2e,0x0,0x0,0x74,0xd8,0x2,0x61,0xf3,0x4e,0x0,0x0,0x3,0xfa,0x2,0x77,
- 0xf8,0xaa,0x0,0x0,0x13,0xf2,0x2,0x7c,0x19,0x8a,0x0,0x0,0x15,0x43,0x2,0x89,
- 0x29,0x7e,0x0,0x0,0x42,0x9c,0x2,0x89,0xc1,0x81,0x0,0x0,0x90,0x5d,0x2,0x92,
- 0x1b,0xfe,0x0,0x0,0x84,0xa3,0x2,0xb5,0x2d,0xae,0x0,0x0,0x4d,0xe,0x2,0xc5,
- 0x76,0x61,0x0,0x0,0x0,0x0,0x2,0xc5,0x76,0x61,0x0,0x0,0x94,0x83,0x2,0xc6,
- 0xd5,0xca,0x0,0x0,0x14,0x99,0x2,0xe6,0xd3,0xa2,0x0,0x0,0x4e,0x88,0x2,0xf7,
- 0xb3,0xca,0x0,0x0,0x2e,0xd5,0x3,0x3e,0x21,0x33,0x0,0x0,0x15,0xf0,0x3,0x4c,
- 0x3,0x4e,0x0,0x0,0x58,0x76,0x3,0x4f,0x76,0x7e,0x0,0x0,0x74,0x22,0x3,0x57,
- 0xb0,0x17,0x0,0x0,0x1,0xd3,0x3,0x57,0xb0,0x17,0x0,0x0,0x96,0xe4,0x3,0x69,
- 0x45,0x7a,0x0,0x0,0x3d,0xda,0x3,0xba,0xa8,0xe5,0x0,0x0,0x64,0x1d,0x3,0xca,
- 0x97,0x85,0x0,0x0,0x67,0x13,0x3,0xdb,0x87,0x6a,0x0,0x0,0x2f,0x2e,0x3,0xf4,
- 0x58,0xee,0x0,0x0,0x2a,0x23,0x3,0xf6,0xdf,0x45,0x0,0x0,0x70,0x21,0x4,0x8,
- 0xf0,0xbe,0x0,0x0,0x73,0x2a,0x4,0x49,0x96,0x8a,0x0,0x0,0x16,0xa0,0x4,0x50,
- 0x17,0xc4,0x0,0x0,0x9,0x26,0x4,0x80,0xda,0x34,0x0,0x0,0x4e,0x64,0x4,0x82,
- 0xfd,0x59,0x0,0x0,0x72,0xda,0x4,0x86,0xaf,0x2e,0x0,0x0,0xb,0x21,0x4,0x87,
- 0xdc,0xba,0x0,0x0,0xf,0x9,0x4,0x92,0x8,0xb2,0x0,0x0,0x61,0x5a,0x4,0x92,
- 0x65,0x9a,0x0,0x0,0x3e,0x87,0x4,0x93,0x7,0x6a,0x0,0x0,0x15,0x8d,0x4,0x98,
- 0x49,0xbc,0x0,0x0,0x94,0xd3,0x4,0x98,0xa0,0x47,0x0,0x0,0x16,0x39,0x4,0x98,
- 0xa0,0x47,0x0,0x0,0x4f,0x4c,0x4,0x9c,0x6,0xae,0x0,0x0,0x46,0x43,0x4,0xd2,
- 0xef,0xfe,0x0,0x0,0x1b,0x94,0x4,0xe0,0xf6,0x35,0x0,0x0,0x6e,0xd,0x4,0xeb,
- 0x2f,0xa,0x0,0x0,0x2e,0x37,0x4,0xf6,0x74,0xde,0x0,0x0,0x1c,0xa9,0x5,0x1b,
- 0xad,0x8a,0x0,0x0,0x2d,0x59,0x5,0x1c,0x96,0x5a,0x0,0x0,0x2d,0x8d,0x5,0x38,
- 0xaa,0xc2,0x0,0x0,0x66,0xef,0x5,0x4c,0x9f,0x6a,0x0,0x0,0x30,0x2f,0x5,0x56,
- 0xaf,0x95,0x0,0x0,0x99,0x13,0x5,0x61,0x3,0x44,0x0,0x0,0xa,0x37,0x5,0x9b,
- 0x88,0x98,0x0,0x0,0x74,0xa8,0x5,0x9b,0x88,0x98,0x0,0x0,0x97,0xdd,0x5,0x9c,
- 0x9c,0xc2,0x0,0x0,0x75,0x89,0x5,0xae,0xc3,0x8a,0x0,0x0,0x3f,0xe9,0x5,0xcd,
- 0x30,0x15,0x0,0x0,0x97,0x5b,0x6,0x26,0x54,0x91,0x0,0x0,0x62,0x2f,0x6,0x2d,
- 0x36,0x3e,0x0,0x0,0x47,0xfd,0x6,0x60,0x3a,0x14,0x0,0x0,0x81,0x3e,0x6,0x73,
- 0x98,0x7e,0x0,0x0,0x88,0xc,0x6,0x83,0xdc,0x2e,0x0,0x0,0x48,0x88,0x6,0x86,
- 0x8a,0xd9,0x0,0x0,0x64,0xae,0x6,0x8b,0xb5,0x54,0x0,0x0,0x84,0x34,0x6,0xb6,
- 0x6c,0xfe,0x0,0x0,0x72,0x59,0x6,0xe4,0x3a,0x33,0x0,0x0,0x7b,0x88,0x6,0xf8,
- 0x3f,0x1e,0x0,0x0,0x5c,0x78,0x7,0x1f,0x3b,0x1e,0x0,0x0,0x8d,0xb1,0x7,0x55,
- 0xb3,0xce,0x0,0x0,0x12,0x4b,0x7,0x5f,0x40,0x71,0x0,0x0,0x7e,0xc4,0x7,0x6a,
- 0xd3,0xde,0x0,0x0,0x66,0x69,0x7,0x7e,0x12,0xce,0x0,0x0,0x7f,0x95,0x7,0x8b,
- 0x84,0xad,0x0,0x0,0x6d,0xe8,0x7,0x93,0x1e,0x9e,0x0,0x0,0x79,0x8e,0x7,0xad,
- 0x58,0x6e,0x0,0x0,0x4d,0xed,0x7,0xd3,0x14,0x2e,0x0,0x0,0x3c,0x8f,0x7,0xdc,
- 0x3d,0xbe,0x0,0x0,0x1e,0xbe,0x7,0xe0,0x1a,0x4f,0x0,0x0,0x5e,0xa9,0x7,0xf9,
- 0x3b,0xfa,0x0,0x0,0x8,0x73,0x8,0x2e,0x78,0xc4,0x0,0x0,0x4e,0xd4,0x8,0x3c,
- 0x76,0x59,0x0,0x0,0x19,0xf,0x8,0x40,0xf,0xbe,0x0,0x0,0x85,0x5a,0x8,0x72,
- 0x3c,0xfe,0x0,0x0,0x5a,0xb9,0x8,0x82,0xd3,0xb4,0x0,0x0,0x9,0x7c,0x8,0x99,
- 0x50,0xfe,0x0,0x0,0xf,0x69,0x8,0xaa,0xe3,0xe4,0x0,0x0,0x6a,0x78,0x8,0xb3,
- 0x26,0x9e,0x0,0x0,0x25,0x92,0x8,0xb8,0xa6,0x4a,0x0,0x0,0x6e,0xeb,0x8,0xcb,
- 0x30,0x7e,0x0,0x0,0x55,0xe6,0x8,0xdc,0xf5,0x2e,0x0,0x0,0x48,0xeb,0x8,0xe0,
- 0x7,0x3e,0x0,0x0,0x32,0x9a,0x8,0xe0,0x7,0x3e,0x0,0x0,0x6f,0x1c,0x9,0x4,
- 0x4f,0x11,0x0,0x0,0x6,0x26,0x9,0x2d,0xc9,0x42,0x0,0x0,0x2,0xc,0x9,0x3c,
- 0x6,0xae,0x0,0x0,0x4f,0x9e,0x9,0x3d,0xef,0x3a,0x0,0x0,0x2f,0xcf,0x9,0x45,
- 0x92,0xfe,0x0,0x0,0x31,0xee,0x9,0x4c,0x8f,0x69,0x0,0x0,0x4b,0xc9,0x9,0x5c,
- 0xb,0x5e,0x0,0x0,0x7d,0x58,0x9,0x65,0x8e,0x11,0x0,0x0,0x98,0xe6,0x9,0x8a,
- 0x4,0xea,0x0,0x0,0x16,0x6b,0x9,0xa2,0x27,0x1e,0x0,0x0,0x8d,0x5e,0x9,0xbb,
- 0x17,0xd1,0x0,0x0,0x7,0x7b,0x9,0xc8,0xb4,0xb9,0x0,0x0,0x63,0xcf,0x9,0xf7,
- 0x73,0xca,0x0,0x0,0x2f,0x79,0x9,0xf8,0xba,0xe,0x0,0x0,0x5f,0xc8,0x9,0xfb,
- 0x69,0xba,0x0,0x0,0x17,0x70,0x9,0xfe,0x27,0x8a,0x0,0x0,0x14,0x3b,0xa,0x21,
- 0x3c,0x1e,0x0,0x0,0x46,0xec,0xa,0x25,0xf3,0x8e,0x0,0x0,0x10,0xe8,0xa,0x30,
- 0x34,0xee,0x0,0x0,0x89,0x3f,0xa,0x30,0x34,0xee,0x0,0x0,0x98,0x95,0xa,0x50,
- 0xfd,0xce,0x0,0x0,0x2,0xd8,0xa,0x7b,0x45,0x52,0x0,0x0,0x97,0x98,0xa,0x85,
- 0xfd,0xa9,0x0,0x0,0x6a,0x26,0xa,0x9c,0x9,0x81,0x0,0x0,0x92,0x7a,0xa,0xb0,
- 0xb4,0xb5,0x0,0x0,0x49,0xb7,0xa,0xbc,0x8c,0x74,0x0,0x0,0x5a,0xe,0xa,0xd7,
- 0x53,0x8a,0x0,0x0,0x2e,0x72,0xa,0xe3,0xe2,0x14,0x0,0x0,0x6a,0xb2,0xa,0xe5,
- 0x47,0xba,0x0,0x0,0x30,0x67,0xa,0xf8,0x17,0x4,0x0,0x0,0x9,0xd7,0xb,0x14,
- 0x21,0x9,0x0,0x0,0x4a,0x9a,0xb,0x2a,0x64,0x7e,0x0,0x0,0x8b,0x7c,0xb,0x33,
- 0xc3,0x8e,0x0,0x0,0x5d,0x1e,0xb,0xa7,0x67,0xe7,0x0,0x0,0xa,0xa0,0xb,0xaa,
- 0xd1,0x2,0x0,0x0,0x7b,0xaf,0xb,0xaf,0xbd,0x1,0x0,0x0,0x69,0x8b,0xb,0xcc,
- 0x5d,0x2a,0x0,0x0,0x18,0x28,0xb,0xd2,0xf0,0x2e,0x0,0x0,0x0,0xc7,0xb,0xf8,
- 0x7e,0x2e,0x0,0x0,0x5b,0xa5,0xc,0x1b,0xfe,0x7e,0x0,0x0,0x43,0xce,0xc,0x38,
- 0x78,0xde,0x0,0x0,0x37,0x1a,0xc,0x3a,0x32,0x3e,0x0,0x0,0x40,0x2b,0xc,0x46,
- 0x2c,0xc3,0x0,0x0,0x7c,0xca,0xc,0x54,0x5d,0xa2,0x0,0x0,0x4f,0x70,0xc,0x55,
- 0xec,0x1e,0x0,0x0,0x30,0xd7,0xc,0x65,0x27,0x6e,0x0,0x0,0x3e,0xdb,0xc,0x78,
- 0x8e,0x4e,0x0,0x0,0x6b,0x40,0xc,0x7a,0x74,0xbe,0x0,0x0,0x60,0xae,0xc,0x7f,
- 0xf2,0x1e,0x0,0x0,0x4b,0xfe,0xc,0xbb,0x1,0x73,0x0,0x0,0x3d,0x59,0xc,0xbb,
- 0x1,0x73,0x0,0x0,0x7a,0x3c,0xc,0xbb,0x1,0x73,0x0,0x0,0x98,0x9,0xc,0xbd,
- 0x72,0x9e,0x0,0x0,0x91,0xab,0xc,0xe0,0xa9,0xbe,0x0,0x0,0x68,0xd9,0xc,0xe2,
- 0xdf,0x55,0x0,0x0,0x5a,0x4f,0xc,0xf9,0x5e,0xae,0x0,0x0,0x80,0x4b,0xd,0x4,
- 0x5f,0x59,0x0,0x0,0x65,0x5,0xd,0xf,0x4e,0x6e,0x0,0x0,0x38,0x78,0xd,0x4c,
- 0x1d,0x31,0x0,0x0,0x69,0xc7,0xd,0x58,0x98,0x6e,0x0,0x0,0x88,0xa4,0xd,0x9a,
- 0x50,0xf3,0x0,0x0,0x68,0x4f,0xd,0xd4,0x95,0x41,0x0,0x0,0x8e,0x23,0xd,0xd7,
- 0xfc,0x1e,0x0,0x0,0x22,0x51,0xd,0xe6,0x8f,0x6a,0x0,0x0,0x18,0xa0,0xd,0xec,
- 0xf9,0xc3,0x0,0x0,0x60,0xe3,0xd,0xfd,0xd,0x22,0x0,0x0,0x8,0x21,0xe,0x13,
- 0x1f,0xfe,0x0,0x0,0x35,0xbf,0xe,0x30,0x3,0xa5,0x0,0x0,0x93,0x45,0xe,0x30,
- 0x6d,0x3e,0x0,0x0,0x45,0xd,0xe,0x44,0x82,0x3a,0x0,0x0,0x2d,0xc5,0xe,0x7e,
- 0xd9,0xce,0x0,0x0,0x37,0xa7,0xe,0x87,0xe7,0x64,0x0,0x0,0x8,0xc8,0xe,0x89,
- 0xf0,0x4e,0x0,0x0,0x7a,0x83,0xe,0x9f,0x90,0x9e,0x0,0x0,0x49,0xeb,0xe,0x9f,
- 0x90,0x9e,0x0,0x0,0x93,0xd8,0xe,0xa8,0x94,0x77,0x0,0x0,0x6a,0xda,0xe,0xb1,
- 0x2b,0xce,0x0,0x0,0x40,0xca,0xe,0xb2,0x85,0xee,0x0,0x0,0x26,0x9b,0xe,0xb4,
- 0x8c,0x1,0x0,0x0,0x6,0xcd,0xe,0xc0,0x3b,0xf1,0x0,0x0,0x61,0xf6,0xe,0xd0,
- 0x9d,0x8e,0x0,0x0,0x6c,0x5e,0xe,0xdc,0xdd,0xce,0x0,0x0,0x21,0x19,0xe,0xf1,
- 0x38,0xce,0x0,0x0,0x71,0x95,0xe,0xff,0xbf,0x42,0x0,0x0,0x2,0x76,0xf,0x2,
- 0x2,0x21,0x0,0x0,0x86,0x85,0xf,0x47,0x35,0x8e,0x0,0x0,0x1f,0xe9,0xf,0x48,
- 0xb8,0x5a,0x0,0x0,0x17,0x9,0xf,0x55,0xd9,0xd1,0x0,0x0,0x59,0x4b,0xf,0x60,
- 0xe2,0x5e,0x0,0x0,0x33,0xd5,0xf,0x66,0x94,0x9e,0x0,0x0,0x55,0xb0,0xf,0x6e,
- 0x43,0xa5,0x0,0x0,0x7b,0x62,0xf,0xaf,0x1f,0x4f,0x0,0x0,0x5f,0x22,0xf,0xb3,
- 0xad,0xaa,0x0,0x0,0x32,0x5c,0xf,0xc6,0x3f,0xf3,0x0,0x0,0x60,0x41,0xf,0xcb,
- 0x37,0xde,0x0,0x0,0x23,0x7c,0xf,0xd2,0xf,0x4e,0x0,0x0,0x2c,0x82,0xf,0xd3,
- 0x69,0x3e,0x0,0x0,0x39,0x5e,0xf,0xe9,0x8a,0xbe,0x0,0x0,0x7d,0xee,0xf,0xef,
- 0x55,0x95,0x0,0x0,0x7e,0x85,0xf,0xf4,0x81,0xe1,0x0,0x0,0x89,0x64,0xf,0xfd,
- 0x3b,0x5a,0x0,0x0,0xe,0xb5,0x69,0x0,0x0,0x99,0x3d,0x3,0x0,0x0,0x0,0x24,
- 0x0,0x41,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6e,0x0,0x65,0x0,0x79,
- 0x0,0x20,0x0,0x4f,0x0,0x6e,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,
- 0x0,0x25,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x41,0x74,
- 0x74,0x6f,0x72,0x6e,0x65,0x79,0x20,0x4f,0x6e,0x6c,0x69,0x6e,0x65,0x20,0x25,0x31,
- 0x7,0x0,0x0,0x0,0xd,0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,
- 0x6f,0x6e,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x44,0x0,0x65,0x0,0x73,0x0,0x63,
- 0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x61,0x0,0x64,0x0,0x6f,
- 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,
- 0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x19,0x44,0x69,0x73,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,
- 0x65,0x64,0x20,0x66,0x72,0x6f,0x6d,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x2e,0x7,
- 0x0,0x0,0x0,0xd,0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,
- 0x6e,0x1,0x3,0x0,0x0,0x0,0xaa,0x0,0x45,0x0,0x72,0x0,0x72,0x0,0x6f,0x0,
- 0x72,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,
- 0x65,0x0,0x63,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x73,0x0,0x65,0x0,0x20,0x0,
- 0x61,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,
- 0x74,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,
- 0x72,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x73,0x0,
- 0x2e,0x0,0x20,0x0,0x53,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,
- 0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0xe1,0x0,0x20,0x0,0x6e,0x0,
- 0x75,0x0,0x65,0x0,0x76,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,
- 0x65,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x25,0x0,0x31,0x0,0x20,0x0,
- 0x73,0x0,0x65,0x0,0x67,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,
- 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x40,0x45,0x72,0x72,0x6f,0x72,
- 0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x6d,
- 0x61,0x73,0x74,0x65,0x72,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x2e,0x20,0x57,0x69,
- 0x6c,0x6c,0x20,0x74,0x72,0x79,0x20,0x61,0x67,0x61,0x69,0x6e,0x20,0x69,0x6e,0x20,
- 0x25,0x31,0x20,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x2e,0x7,0x0,0x0,0x0,0xd,
- 0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x1,0x3,0x0,
- 0x0,0x0,0x10,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x61,0x0,0x6e,0x0,
- 0x64,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4c,0x6f,0x61,
- 0x64,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0xd,0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,
- 0x63,0x61,0x74,0x69,0x6f,0x6e,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x43,0x0,0x61,
- 0x0,0x72,0x0,0x67,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x70,
- 0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6a,0x0,0x65,
- 0x0,0x73,0x0,0x3a,0x0,0xa,0x0,0x25,0x0,0x31,0x0,0x2f,0x0,0x25,0x0,0x32,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x4c,0x6f,0x61,0x64,0x69,0x6e,
- 0x67,0x20,0x63,0x68,0x61,0x72,0x73,0x3a,0xa,0x25,0x31,0x2f,0x25,0x32,0x7,0x0,
- 0x0,0x0,0xd,0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,
- 0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x61,
- 0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0xfa,0x0,0x73,0x0,0x69,
- 0x0,0x63,0x0,0x61,0x0,0x3a,0x0,0xa,0x0,0x25,0x0,0x31,0x0,0x2f,0x0,0x25,
- 0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x4c,0x6f,0x61,0x64,
- 0x69,0x6e,0x67,0x20,0x6d,0x75,0x73,0x69,0x63,0x3a,0xa,0x25,0x31,0x2f,0x25,0x32,
- 0x7,0x0,0x0,0x0,0xd,0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,
- 0x6f,0x6e,0x1,0x3,0x0,0x0,0x0,0xb0,0x0,0xa1,0x0,0x56,0x0,0x65,0x0,0x72,
- 0x0,0x73,0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73,
- 0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,
- 0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x21,0x0,0x20,0x0,0x53,0x0,0x75,0x0,0x20,
- 0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x3a,
- 0x0,0x20,0x0,0x25,0x0,0x31,0x0,0xa,0x0,0x49,0x0,0x6e,0x0,0x67,0x0,0x72,
- 0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x63,
- 0x0,0x65,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6e,0x0,0x65,
- 0x0,0x79,0x0,0x6f,0x0,0x6e,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x2e,
- 0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,
- 0x0,0x20,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x69,
- 0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x50,0x4f,0x75,0x74,0x64,0x61,0x74,0x65,0x64,0x20,0x76,0x65,0x72,0x73,0x69,
- 0x6f,0x6e,0x21,0x20,0x59,0x6f,0x75,0x72,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,
- 0x3a,0x20,0x25,0x31,0xa,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x67,0x6f,0x20,0x74,
- 0x6f,0x20,0x61,0x63,0x65,0x61,0x74,0x74,0x6f,0x72,0x6e,0x65,0x79,0x6f,0x6e,0x6c,
- 0x69,0x6e,0x65,0x2e,0x63,0x6f,0x6d,0x20,0x74,0x6f,0x20,0x75,0x70,0x64,0x61,0x74,
- 0x65,0x2e,0x7,0x0,0x0,0x0,0xd,0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,0x63,0x61,
- 0x74,0x69,0x6f,0x6e,0x1,0x3,0x0,0x0,0x0,0xe8,0x0,0x48,0x0,0x75,0x0,0x62,
- 0x0,0x6f,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x72,0x0,0x72,
- 0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x6f,0x0,0x62,
- 0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x61,
- 0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64,
- 0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x76,0x0,0x69,0x0,0x64,
- 0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x20,0x0,0x56,0x0,0x65,
- 0x0,0x72,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,
- 0x0,0x73,0x0,0x75,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x78,
- 0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x49,0x0,0x6e,
- 0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x79,
- 0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x77,0x0,0x61,0x0,0x6c,
- 0x0,0x6c,0x0,0x2c,0x0,0x20,0x0,0x79,0x0,0x20,0x0,0x76,0x0,0x75,0x0,0x65,
- 0x0,0x6c,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6e,
- 0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x6c,0x0,0x6f,
- 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0x22,0x54,0x68,0x65,0x72,
- 0x65,0x20,0x77,0x61,0x73,0x20,0x61,0x6e,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x63,
- 0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,
- 0x20,0x6d,0x61,0x73,0x74,0x65,0x72,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x2e,0xa,
- 0x57,0x65,0x20,0x64,0x65,0x70,0x6c,0x6f,0x79,0x20,0x6d,0x75,0x6c,0x74,0x69,0x70,
- 0x6c,0x65,0x20,0x6d,0x61,0x73,0x74,0x65,0x72,0x20,0x73,0x65,0x72,0x76,0x65,0x72,
- 0x73,0x20,0x74,0x6f,0x20,0x6d,0x69,0x74,0x69,0x67,0x61,0x74,0x65,0x20,0x61,0x6e,
- 0x79,0x20,0x70,0x6f,0x73,0x73,0x69,0x62,0x6c,0x65,0x20,0x64,0x6f,0x77,0x6e,0x74,
- 0x69,0x6d,0x65,0x2c,0x20,0x62,0x75,0x74,0x20,0x74,0x68,0x65,0x20,0x63,0x6c,0x69,
- 0x65,0x6e,0x74,0x20,0x61,0x70,0x70,0x65,0x61,0x72,0x73,0x20,0x74,0x6f,0x20,0x68,
- 0x61,0x76,0x65,0x20,0x65,0x78,0x68,0x61,0x75,0x73,0x74,0x65,0x64,0x20,0x61,0x6c,
- 0x6c,0x20,0x70,0x6f,0x73,0x73,0x69,0x62,0x6c,0x65,0x20,0x6d,0x65,0x74,0x68,0x6f,
- 0x64,0x73,0x20,0x6f,0x66,0x20,0x66,0x69,0x6e,0x64,0x69,0x6e,0x67,0x20,0x61,0x6e,
- 0x64,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,
- 0x6f,0x6e,0x65,0x2e,0xa,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x63,0x68,0x65,0x63,
- 0x6b,0x20,0x79,0x6f,0x75,0x72,0x20,0x49,0x6e,0x74,0x65,0x72,0x6e,0x65,0x74,0x20,
- 0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64,0x20,0x66,
- 0x69,0x72,0x65,0x77,0x61,0x6c,0x6c,0x2c,0x20,0x61,0x6e,0x64,0x20,0x70,0x6c,0x65,
- 0x61,0x73,0x65,0x20,0x74,0x72,0x79,0x20,0x61,0x67,0x61,0x69,0x6e,0x2e,0x7,0x0,
- 0x0,0x0,0xd,0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,
- 0x1,0x3,0x0,0x0,0x0,0x5c,0x0,0x48,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x73,
- 0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x6f,0x0,0x71,
- 0x0,0x75,0x0,0x65,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x6e,
- 0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,
- 0x0,0x72,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x2e,0x0,0xa,
- 0x0,0x52,0x0,0x61,0x0,0x7a,0x0,0xf3,0x0,0x6e,0x0,0x3a,0x0,0x20,0x0,0x25,
- 0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x29,0x59,0x6f,0x75,0x20,
- 0x61,0x72,0x65,0x20,0x62,0x61,0x6e,0x6e,0x65,0x64,0x20,0x6f,0x6e,0x20,0x74,0x68,
- 0x69,0x73,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x2e,0xa,0x52,0x65,0x61,0x73,0x6f,
- 0x6e,0x3a,0x20,0x25,0x31,0x7,0x0,0x0,0x0,0xd,0x41,0x4f,0x41,0x70,0x70,0x6c,
- 0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x1,0x3,0x0,0x0,0x0,0x5c,0x0,0x48,0x0,
- 0x61,0x0,0x73,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,
- 0x62,0x0,0x6c,0x0,0x6f,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x61,0x0,0x64,0x0,
- 0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,
- 0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x76,0x0,0x69,0x0,0x64,0x0,
- 0x6f,0x0,0x72,0x0,0x2e,0x0,0xa,0x0,0x52,0x0,0x61,0x0,0x7a,0x0,0xf3,0x0,
- 0x6e,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x30,0x59,0x6f,0x75,0x20,0x68,0x61,0x76,0x65,0x20,0x62,0x65,0x65,0x6e,
- 0x20,0x62,0x61,0x6e,0x6e,0x65,0x64,0x20,0x66,0x72,0x6f,0x6d,0x20,0x74,0x68,0x65,
- 0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x2e,0xa,0x52,0x65,0x61,0x73,0x6f,0x6e,0x3a,
- 0x20,0x25,0x31,0x7,0x0,0x0,0x0,0xd,0x41,0x4f,0x41,0x70,0x70,0x6c,0x69,0x63,
- 0x61,0x74,0x69,0x6f,0x6e,0x1,0x3,0x0,0x0,0x0,0x54,0x0,0x48,0x0,0x61,0x0,
- 0x73,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,
- 0x78,0x0,0x70,0x0,0x75,0x0,0x6c,0x0,0x73,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,
- 0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,
- 0x76,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x2e,0x0,0xa,0x0,0x52,0x0,
- 0x61,0x0,0x7a,0x0,0xf3,0x0,0x6e,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x31,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x30,0x59,0x6f,0x75,0x20,0x68,0x61,0x76,
- 0x65,0x20,0x62,0x65,0x65,0x6e,0x20,0x6b,0x69,0x63,0x6b,0x65,0x64,0x20,0x66,0x72,
- 0x6f,0x6d,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x2e,0xa,0x52,
- 0x65,0x61,0x73,0x6f,0x6e,0x3a,0x20,0x25,0x31,0x7,0x0,0x0,0x0,0xd,0x41,0x4f,
- 0x41,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x1,0x3,0x0,0x0,0x0,
- 0x1a,0x0,0x41,0x0,0x6e,0x0,0x75,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,
- 0x72,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x73,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0xe,0x43,0x61,0x73,0x65,0x20,0x41,0x6e,0x6e,0x6f,0x75,0x6e,
- 0x63,0x65,0x72,0x7,0x0,0x0,0x0,0x15,0x41,0x4f,0x43,0x61,0x73,0x65,0x41,0x6e,
- 0x6e,0x6f,0x75,0x6e,0x63,0x65,0x72,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,
- 0x0,0x0,0x20,0x0,0x54,0x0,0xed,0x0,0x74,0x0,0x75,0x0,0x6c,0x0,0x6f,0x0,
- 0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x73,0x0,
- 0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x43,0x61,0x73,
- 0x65,0x20,0x74,0x69,0x74,0x6c,0x65,0x3a,0x7,0x0,0x0,0x0,0x15,0x41,0x4f,0x43,
- 0x61,0x73,0x65,0x41,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x72,0x44,0x69,0x61,0x6c,
- 0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x53,0x0,0x65,0x0,0x20,0x0,0x6e,
- 0x0,0x65,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x20,
- 0x0,0x61,0x0,0x62,0x0,0x6f,0x0,0x67,0x0,0x61,0x0,0x64,0x0,0x6f,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x44,0x65,0x66,0x65,0x6e,0x73,0x65,0x20,
- 0x6e,0x65,0x65,0x64,0x65,0x64,0x7,0x0,0x0,0x0,0x15,0x41,0x4f,0x43,0x61,0x73,
- 0x65,0x41,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x72,0x44,0x69,0x61,0x6c,0x6f,0x67,
- 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x65,
- 0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x6a,
- 0x0,0x75,0x0,0x65,0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,
- 0x4a,0x75,0x64,0x67,0x65,0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x7,0x0,0x0,0x0,
- 0x15,0x41,0x4f,0x43,0x61,0x73,0x65,0x41,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x72,
- 0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x53,0x0,0x65,
- 0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x69,0x0,0x74,
- 0x0,0x61,0x0,0x20,0x0,0x6a,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x6f,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x75,0x72,0x6f,0x72,0x73,
- 0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x7,0x0,0x0,0x0,0x15,0x41,0x4f,0x43,0x61,
- 0x73,0x65,0x41,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x72,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x53,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,
- 0x65,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x20,0x0,
- 0x66,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x6f,0x73,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,
- 0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x7,0x0,0x0,0x0,0x15,0x41,0x4f,0x43,0x61,
- 0x73,0x65,0x41,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x72,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x53,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,
- 0x65,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x20,0x0,
- 0x74,0x0,0x61,0x0,0x71,0x0,0x75,0x0,0xed,0x0,0x67,0x0,0x72,0x0,0x61,0x0,
- 0x66,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x53,0x74,0x65,
- 0x6e,0x6f,0x67,0x72,0x61,0x70,0x68,0x65,0x72,0x20,0x6e,0x65,0x65,0x64,0x65,0x64,
- 0x7,0x0,0x0,0x0,0x15,0x41,0x4f,0x43,0x61,0x73,0x65,0x41,0x6e,0x6e,0x6f,0x75,
- 0x6e,0x63,0x65,0x72,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x46,
- 0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x65,
- 0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x63,
- 0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,
- 0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x63,0x0,0x74,
- 0x0,0x75,0x0,0x61,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,
- 0x20,0x2d,0x20,0x4b,0x65,0x65,0x70,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,
- 0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,
- 0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x2,
- 0x5e,0x0,0x3c,0x0,0x68,0x0,0x74,0x0,0x6d,0x0,0x6c,0x0,0x3e,0x0,0x3c,0x0,
- 0x68,0x0,0x65,0x0,0x61,0x0,0x64,0x0,0x2f,0x0,0x3e,0x0,0x3c,0x0,0x62,0x0,
- 0x6f,0x0,0x64,0x0,0x79,0x0,0x3e,0x0,0x49,0x0,0x6e,0x0,0x67,0x0,0x72,0x0,
- 0x65,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,
- 0x61,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x62,0x0,
- 0x72,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,
- 0x6c,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x63,0x0,
- 0x6f,0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x65,0x0,
- 0x65,0x0,0x2e,0x0,0x3c,0x0,0x62,0x0,0x72,0x0,0x3e,0x0,0x45,0x0,0x73,0x0,
- 0x74,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0,
- 0x73,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x75,0x0,0x65,0x0,0x20,0x0,
- 0x65,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,
- 0x79,0x0,0xfa,0x0,0x73,0x0,0x63,0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x73,0x0,
- 0x20,0x0,0x79,0x0,0x20,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0xfa,0x0,0x73,0x0,
- 0x63,0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x2e,0x0,0x20,0x0,0xa1,0x0,
- 0x41,0x0,0x73,0x0,0x65,0x0,0x67,0x0,0xfa,0x0,0x72,0x0,0x65,0x0,0x73,0x0,
- 0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6a,0x0,
- 0x61,0x0,0x72,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0,
- 0x70,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x20,0x0,
- 0x65,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x72,0x0,
- 0x6f,0x0,0x70,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0xed,0x0,0x6e,0x0,
- 0x65,0x0,0x61,0x0,0x21,0x0,0x3c,0x0,0x62,0x0,0x72,0x0,0x3e,0x0,0x4e,0x0,
- 0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x75,0x0,
- 0x6e,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0xed,0x0,0x6e,0x0,0x65,0x0,0x61,0x0,
- 0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,
- 0x65,0x0,0x73,0x0,0x70,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,
- 0x61,0x0,0x6c,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,
- 0x3b,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x62,0x0,0x69,0x0,
- 0x72,0x0,0xe1,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x61,0x0,
- 0x6c,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x61,0x0,
- 0x64,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x7a,0x0,0x20,0x0,0x71,0x0,
- 0x75,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x67,0x0,0x75,0x0,0x69,0x0,
- 0x65,0x0,0x6e,0x0,0x20,0x0,0x75,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x75,0x0,
- 0x6e,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x70,0x0,0x61,0x0,0x63,0x0,0x69,0x0,
- 0x6f,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x73,0x0,
- 0x20,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x61,0x0,0x6a,0x0,0x65,0x0,
- 0x73,0x0,0x2e,0x0,0x3c,0x0,0x2f,0x0,0x62,0x0,0x6f,0x0,0x64,0x0,0x79,0x0,
- 0x3e,0x0,0x3c,0x0,0x2f,0x0,0x68,0x0,0x74,0x0,0x6d,0x0,0x6c,0x0,0x3e,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0x12,0x3c,0x68,0x74,0x6d,0x6c,0x3e,0x3c,
- 0x68,0x65,0x61,0x64,0x2f,0x3e,0x3c,0x62,0x6f,0x64,0x79,0x3e,0x45,0x6e,0x74,0x65,
- 0x72,0x20,0x61,0x73,0x20,0x6d,0x61,0x6e,0x79,0x20,0x63,0x61,0x6c,0x6c,0x77,0x6f,
- 0x72,0x64,0x73,0x20,0x61,0x73,0x20,0x79,0x6f,0x75,0x20,0x77,0x6f,0x75,0x6c,0x64,
- 0x20,0x6c,0x69,0x6b,0x65,0x2e,0x20,0x54,0x68,0x65,0x73,0x65,0x20,0x61,0x72,0x65,
- 0x20,0x63,0x61,0x73,0x65,0x20,0x69,0x6e,0x73,0x65,0x6e,0x73,0x69,0x74,0x69,0x76,
- 0x65,0x2e,0x20,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x6f,0x20,
- 0x6c,0x65,0x61,0x76,0x65,0x20,0x65,0x76,0x65,0x72,0x79,0x20,0x63,0x61,0x6c,0x6c,
- 0x77,0x6f,0x72,0x64,0x20,0x69,0x6e,0x20,0x69,0x74,0x73,0x20,0x6f,0x77,0x6e,0x20,
- 0x6c,0x69,0x6e,0x65,0x21,0x3c,0x62,0x72,0x3e,0x44,0x6f,0x20,0x6e,0x6f,0x74,0x20,
- 0x6c,0x65,0x61,0x76,0x65,0x20,0x61,0x20,0x6c,0x69,0x6e,0x65,0x20,0x77,0x69,0x74,
- 0x68,0x20,0x61,0x20,0x73,0x70,0x61,0x63,0x65,0x20,0x61,0x74,0x20,0x74,0x68,0x65,
- 0x20,0x65,0x6e,0x64,0x20,0x2d,0x2d,0x20,0x79,0x6f,0x75,0x20,0x77,0x69,0x6c,0x6c,
- 0x20,0x62,0x65,0x20,0x61,0x6c,0x65,0x72,0x74,0x65,0x64,0x20,0x65,0x76,0x65,0x72,
- 0x79,0x74,0x69,0x6d,0x65,0x20,0x73,0x6f,0x6d,0x65,0x6f,0x6e,0x65,0x20,0x75,0x73,
- 0x65,0x73,0x20,0x61,0x20,0x73,0x70,0x61,0x63,0x65,0x20,0x69,0x6e,0x20,0x74,0x68,
- 0x65,0x69,0x72,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x73,0x2e,0x3c,0x2f,0x62,
- 0x6f,0x64,0x79,0x3e,0x3c,0x2f,0x68,0x74,0x6d,0x6c,0x3e,0x7,0x0,0x0,0x0,0xf,
- 0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,
- 0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x65,0x0,0x72,0x0,0x6d,0x0,0x69,0x0,
- 0x74,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x63,0x0,
- 0x74,0x0,0x6f,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0xe,0x41,0x6c,0x6c,0x6f,0x77,0x20,0x45,0x66,0x66,0x65,0x63,0x74,0x73,0x3a,0x7,
- 0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,
- 0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x50,0x0,0x65,0x0,0x72,0x0,
- 0x6d,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x63,0x0,
- 0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x6b,0x0,
- 0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x41,0x6c,0x6c,
- 0x6f,0x77,0x20,0x53,0x63,0x72,0x65,0x65,0x6e,0x73,0x68,0x61,0x6b,0x65,0x3a,0x7,
- 0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,
- 0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xdc,0x0,0x50,0x0,0x65,0x0,0x72,0x0,
- 0x6d,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,
- 0x74,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,
- 0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x0,0x20,0x0,
- 0x76,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x71,0x0,
- 0x75,0x0,0xe9,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x76,0x0,0x69,0x0,
- 0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,
- 0x73,0x0,0x2c,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0xe9,0x0,0x20,0x0,0x70,0x0,
- 0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6a,0x0,0x65,0x0,
- 0x20,0x0,0x6a,0x0,0x75,0x0,0x65,0x0,0x67,0x0,0x61,0x0,0x73,0x0,0x20,0x0,
- 0x79,0x0,0x20,0x0,0x63,0x0,0x75,0x0,0xe1,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,
- 0x20,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,
- 0x68,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,
- 0x64,0x0,0x6f,0x0,0x20,0x0,0x6a,0x0,0x75,0x0,0x67,0x0,0x61,0x0,0x6e,0x0,
- 0x64,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7f,0x41,
- 0x6c,0x6c,0x6f,0x77,0x73,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x20,0x6f,0x6e,0x20,
- 0x44,0x69,0x73,0x63,0x6f,0x72,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x65,0x20,0x77,
- 0x68,0x61,0x74,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x20,0x79,0x6f,0x75,0x20,0x61,
- 0x72,0x65,0x20,0x69,0x6e,0x2c,0x20,0x77,0x68,0x61,0x74,0x20,0x63,0x68,0x61,0x72,
- 0x61,0x63,0x74,0x65,0x72,0x20,0x61,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x70,0x6c,
- 0x61,0x79,0x69,0x6e,0x67,0x2c,0x20,0x61,0x6e,0x64,0x20,0x68,0x6f,0x77,0x20,0x6c,
- 0x6f,0x6e,0x67,0x20,0x79,0x6f,0x75,0x20,0x68,0x61,0x76,0x65,0x20,0x62,0x65,0x65,
- 0x6e,0x20,0x70,0x6c,0x61,0x79,0x69,0x6e,0x67,0x20,0x66,0x6f,0x72,0x2e,0x7,0x0,
- 0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,
- 0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xd6,0x0,0x50,0x0,0x65,0x0,0x72,0x0,0x6d,
- 0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x63,
- 0x0,0x74,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x70,
- 0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x20,
- 0x0,0x28,0x0,0x41,0x0,0x44,0x0,0x56,0x0,0x45,0x0,0x52,0x0,0x54,0x0,0x45,
- 0x0,0x4e,0x0,0x43,0x0,0x49,0x0,0x41,0x0,0x3a,0x0,0x20,0x0,0x65,0x0,0x73,
- 0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x72,0x0,0xed,
- 0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x75,0x0,0x63,0x0,0x69,
- 0x0,0x72,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x76,0x0,0x75,0x0,0x6c,
- 0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,
- 0x0,0x65,0x0,0x62,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x20,
- 0x0,0x69,0x0,0x6d,0x0,0xe1,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x73,
- 0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x70,0x0,0x61,0x0,0x64,0x0,0x65,
- 0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x29,0x0,0x2e,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x69,0x41,0x6c,0x6c,0x6f,0x77,0x73,0x20,0x73,
- 0x63,0x72,0x65,0x65,0x6e,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x73,0x2e,0x20,0x44,
- 0x69,0x73,0x61,0x62,0x6c,0x65,0x20,0x74,0x68,0x69,0x73,0x20,0x69,0x66,0x20,0x79,
- 0x6f,0x75,0x20,0x68,0x61,0x76,0x65,0x20,0x63,0x6f,0x6e,0x63,0x65,0x72,0x6e,0x73,
- 0x20,0x6f,0x72,0x20,0x69,0x73,0x73,0x75,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,
- 0x70,0x68,0x6f,0x74,0x6f,0x73,0x65,0x6e,0x73,0x69,0x74,0x69,0x76,0x69,0x74,0x79,
- 0x20,0x61,0x6e,0x64,0x2f,0x6f,0x72,0x20,0x73,0x65,0x69,0x7a,0x75,0x72,0x65,0x73,
- 0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,
- 0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xe8,0x0,0x50,0x0,0x65,0x0,
- 0x72,0x0,0x6d,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,
- 0x20,0x0,0x6d,0x0,0x6f,0x0,0x76,0x0,0x69,0x0,0x6d,0x0,0x69,0x0,0x65,0x0,
- 0x6e,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,
- 0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,
- 0x6c,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x41,0x0,0x44,0x0,0x56,0x0,0x45,0x0,
- 0x52,0x0,0x54,0x0,0x45,0x0,0x4e,0x0,0x43,0x0,0x49,0x0,0x41,0x0,0x3a,0x0,
- 0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,
- 0x64,0x0,0x72,0x0,0xed,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,
- 0x75,0x0,0x63,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,
- 0x76,0x0,0x75,0x0,0x6c,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,
- 0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x62,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,
- 0x20,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0xe1,0x0,0x67,0x0,0x65,0x0,
- 0x6e,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x70,0x0,
- 0x61,0x0,0x64,0x0,0x65,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x73,0x0,
- 0x29,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x68,0x41,0x6c,0x6c,
- 0x6f,0x77,0x73,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x73,0x68,0x61,0x6b,0x69,0x6e,
- 0x67,0x2e,0x20,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x20,0x74,0x68,0x69,0x73,0x20,
- 0x69,0x66,0x20,0x79,0x6f,0x75,0x20,0x68,0x61,0x76,0x65,0x20,0x63,0x6f,0x6e,0x63,
- 0x65,0x72,0x6e,0x73,0x20,0x6f,0x72,0x20,0x69,0x73,0x73,0x75,0x65,0x73,0x20,0x77,
- 0x69,0x74,0x68,0x20,0x70,0x68,0x6f,0x74,0x6f,0x73,0x65,0x6e,0x73,0x69,0x74,0x69,
- 0x76,0x69,0x74,0x79,0x20,0x61,0x6e,0x64,0x2f,0x6f,0x72,0x20,0x73,0x65,0x69,0x7a,
- 0x75,0x72,0x65,0x73,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,
- 0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xa,0x0,
- 0x41,0x0,0x75,0x0,0x64,0x0,0x69,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x5,0x41,0x75,0x64,0x69,0x6f,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,
- 0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,
- 0x0,0x18,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,
- 0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0xd,0x41,0x75,0x64,0x69,0x6f,0x20,0x64,0x65,0x76,0x69,0x63,0x65,
- 0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,
- 0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x52,0x0,0x65,0x0,
- 0x67,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,
- 0x75,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0xe1,0x0,0x74,0x0,0x69,0x0,0x63,0x0,
- 0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x41,0x75,0x74,
- 0x6f,0x6d,0x61,0x74,0x69,0x63,0x20,0x4c,0x6f,0x67,0x67,0x69,0x6e,0x67,0x3a,0x7,
- 0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,
- 0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x4d,0x0,0x61,0x0,0x73,0x0,
- 0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x53,0x0,0x56,0x0,0x20,0x0,0x64,0x0,
- 0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x70,0x0,0x61,0x0,0x6c,0x0,
- 0x64,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x42,
- 0x61,0x63,0x6b,0x75,0x70,0x20,0x4d,0x53,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,
- 0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,
- 0x0,0x0,0x20,0x0,0x42,0x0,0x6c,0x0,0x69,0x0,0x70,0x0,0x73,0x0,0x20,0x0,
- 0x65,0x0,0x6e,0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x63,0x0,
- 0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x42,0x6c,0x61,
- 0x6e,0x6b,0x20,0x62,0x6c,0x69,0x70,0x73,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,
- 0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,
- 0x0,0x0,0x1c,0x0,0x54,0x0,0x61,0x0,0x73,0x0,0x61,0x0,0x20,0x0,0x64,0x0,
- 0x65,0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x70,0x0,0x73,0x0,0x3a,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x42,0x6c,0x69,0x70,0x20,0x72,0x61,
- 0x74,0x65,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,
- 0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x42,0x0,
- 0x6c,0x0,0x69,0x0,0x70,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x6,0x42,0x6c,0x69,0x70,0x73,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,
- 0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,
- 0x0,0x0,0x6,0x0,0x43,0x0,0x4d,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x3,0x43,0x4d,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,
- 0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x1c,
- 0x0,0x50,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x73,
- 0x0,0x20,0x0,0x63,0x0,0x6c,0x0,0x61,0x0,0x76,0x0,0x65,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x61,0x6c,0x6c,0x77,0x6f,0x72,0x64,0x73,0x7,
- 0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,
- 0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x43,0x0,0x61,0x0,0x73,0x0,
- 0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x61,0x73,0x69,0x6e,
- 0x67,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,
- 0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x43,0x0,0x61,0x0,
- 0x73,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,
- 0x61,0x73,0x69,0x6e,0x67,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,
- 0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x34,
- 0x0,0x43,0x0,0x6f,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20,
- 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x72,0x0,0x65,
- 0x0,0x67,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x49,
- 0x0,0x43,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x6f,
- 0x6c,0x6f,0x72,0x73,0x20,0x69,0x6e,0x20,0x49,0x43,0x20,0x4c,0x6f,0x67,0x3a,0x7,
- 0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,
- 0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x43,0x0,0x68,0x0,0x61,0x0,
- 0x74,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x70,0x0,
- 0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,
- 0x7a,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73,0x74,0x6f,0x6d,0x20,0x43,0x68,0x61,0x74,
- 0x62,0x6f,0x78,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,
- 0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x20,
- 0x0,0x4d,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x20,
- 0x0,0x6e,0x0,0x6f,0x0,0x6d,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x3a,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73,0x74,0x6f,0x6d,
- 0x20,0x73,0x68,0x6f,0x77,0x6e,0x61,0x6d,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0xf,
- 0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,
- 0x3,0x0,0x0,0x0,0x2e,0x0,0x55,0x0,0x73,0x0,0x75,0x0,0x61,0x0,0x72,0x0,
- 0x69,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x65,0x0,
- 0x74,0x0,0x65,0x0,0x72,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x64,0x0,
- 0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x44,0x65,0x66,
- 0x61,0x75,0x6c,0x74,0x20,0x75,0x73,0x65,0x72,0x6e,0x61,0x6d,0x65,0x3a,0x7,0x0,
- 0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,
- 0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x41,0x0,0x62,0x0,0x6f,0x0,0x67,
- 0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x8,0x44,0x65,0x66,0x65,0x6e,0x73,0x65,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,
- 0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,
- 0x0,0x0,0x0,0x10,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x72,
- 0x0,0x64,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x44,0x69,
- 0x73,0x63,0x6f,0x72,0x64,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,
- 0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x38,
- 0x0,0x48,0x0,0x61,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x61,
- 0x0,0x72,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x70,0x0,0x65,0x0,0x74,0x0,0x69,
- 0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,
- 0x0,0x53,0x0,0x46,0x0,0x58,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x13,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20,0x4c,0x6f,0x6f,0x70,0x69,0x6e,0x67,
- 0x20,0x53,0x46,0x58,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,
- 0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x16,0x0,
- 0x4a,0x0,0x75,0x0,0x67,0x0,0x61,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,
- 0x64,0x0,0x61,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x47,
- 0x61,0x6d,0x65,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,
- 0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x1,
- 0x48,0x0,0x41,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x61,0x0,0x20,0x0,
- 0x6c,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x73,0x0,0x69,0x0,0x6c,0x0,
- 0x6c,0x0,0x61,0x0,0x20,0x0,0x27,0x0,0x4d,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,
- 0x72,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6d,0x0,0x62,0x0,
- 0x72,0x0,0x65,0x0,0x73,0x0,0x27,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,
- 0x66,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,
- 0x65,0x0,0x64,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6d,0x0,0x69,0x0,
- 0x6e,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,
- 0x65,0x0,0x6c,0x0,0x20,0x0,0x6a,0x0,0x75,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,
- 0x2c,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x20,0x0,
- 0x73,0x0,0x75,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x7a,0x0,0x20,0x0,0x64,0x0,
- 0x65,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,
- 0x20,0x0,0x73,0x0,0x69,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x63,0x0,
- 0x6c,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x64,0x0,
- 0x65,0x0,0x62,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,
- 0x72,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6d,0x0,0x62,0x0,
- 0x72,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x73,0x0,
- 0x6f,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x64,0x0,
- 0x6f,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,
- 0x73,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,
- 0x61,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x99,0x47,0x69,0x76,0x65,0x73,0x20,0x74,0x68,0x65,0x20,0x64,0x65,0x66,
- 0x61,0x75,0x6c,0x74,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x66,0x6f,0x72,0x20,0x74,
- 0x68,0x65,0x20,0x69,0x6e,0x2d,0x67,0x61,0x6d,0x65,0x20,0x27,0x43,0x75,0x73,0x74,
- 0x6f,0x6d,0x20,0x73,0x68,0x6f,0x77,0x6e,0x61,0x6d,0x65,0x73,0x27,0x20,0x74,0x69,
- 0x63,0x6b,0x62,0x6f,0x78,0x2c,0x20,0x77,0x68,0x69,0x63,0x68,0x20,0x69,0x6e,0x20,
- 0x74,0x75,0x72,0x6e,0x20,0x64,0x65,0x74,0x65,0x72,0x6d,0x69,0x6e,0x65,0x73,0x20,
- 0x77,0x68,0x65,0x74,0x68,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x63,0x6c,0x69,0x65,
- 0x6e,0x74,0x20,0x73,0x68,0x6f,0x75,0x6c,0x64,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,
- 0x79,0x20,0x63,0x75,0x73,0x74,0x6f,0x6d,0x20,0x69,0x6e,0x2d,0x63,0x68,0x61,0x72,
- 0x61,0x63,0x74,0x65,0x72,0x20,0x6e,0x61,0x6d,0x65,0x73,0x2e,0x7,0x0,0x0,0x0,
- 0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,
- 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x43,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x73,
- 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x6f,0x73,0x74,
- 0x69,0x6e,0x67,0x20,0x63,0x61,0x73,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,
- 0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,
- 0x0,0x0,0x0,0xaa,0x0,0x53,0x0,0x69,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,
- 0x0,0xe1,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x61,0x0,0x64,
- 0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x73,
- 0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x67,
- 0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x73,
- 0x0,0x65,0x0,0x20,0x0,0x67,0x0,0x75,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x61,
- 0x0,0x72,0x0,0xe1,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x6f,
- 0x0,0x6d,0x0,0xe1,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x6d,0x0,0x65,
- 0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6c,
- 0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x70,0x0,0x65,0x0,0x74,
- 0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x67,0x0,0x73,0x0,0x2e,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x47,0x49,0x66,0x20,0x63,0x68,0x65,0x63,0x6b,
- 0x65,0x64,0x2c,0x20,0x61,0x6c,0x6c,0x20,0x6c,0x6f,0x67,0x73,0x20,0x77,0x69,0x6c,
- 0x6c,0x20,0x62,0x65,0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x61,0x6c,
- 0x6c,0x79,0x20,0x77,0x72,0x69,0x74,0x74,0x65,0x6e,0x20,0x69,0x6e,0x20,0x74,0x68,
- 0x65,0x20,0x2f,0x6c,0x6f,0x67,0x73,0x20,0x66,0x6f,0x6c,0x64,0x65,0x72,0x2e,0x7,
- 0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,
- 0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x80,0x0,0x53,0x0,0x69,0x0,0x20,0x0,
- 0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x72,0x0,
- 0x63,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x70,0x0,
- 0x61,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x65,0x0,0x72,0x0,0xe1,0x0,0x20,0x0,
- 0x65,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,
- 0x73,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,
- 0x65,0x0,0x73,0x0,0x20,0x0,0x43,0x0,0x4d,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,
- 0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x76,0x0,
- 0x69,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x44,0x49,0x66,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2c,0x20,0x79,
- 0x6f,0x75,0x20,0x77,0x69,0x6c,0x6c,0x20,0x61,0x70,0x70,0x65,0x61,0x72,0x20,0x61,
- 0x6d,0x6f,0x6e,0x67,0x73,0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x6f,0x74,0x65,0x6e,
- 0x74,0x69,0x61,0x6c,0x20,0x43,0x4d,0x73,0x20,0x6f,0x6e,0x20,0x74,0x68,0x65,0x20,
- 0x73,0x65,0x72,0x76,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,
- 0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,
- 0xb6,0x0,0x53,0x0,0x69,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,
- 0x20,0x0,0x6d,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,
- 0x2c,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x62,0x0,0x69,0x0,
- 0x72,0x0,0xe1,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x74,0x0,
- 0x61,0x0,0x73,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x65,0x0,
- 0x20,0x0,0x61,0x0,0x6e,0x0,0x75,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,
- 0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x73,0x0,
- 0x6f,0x0,0x73,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x20,0x0,0x68,0x0,0x61,0x0,
- 0x79,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x6c,0x0,0x75,0x0,0x67,0x0,
- 0x61,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x62,0x0,
- 0x6f,0x0,0x67,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,
- 0x62,0x0,0x72,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x53,0x49,0x66,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2c,0x20,0x79,0x6f,0x75,
- 0x20,0x77,0x69,0x6c,0x6c,0x20,0x67,0x65,0x74,0x20,0x61,0x6c,0x65,0x72,0x74,0x73,
- 0x20,0x61,0x62,0x6f,0x75,0x74,0x20,0x63,0x61,0x73,0x65,0x20,0x61,0x6e,0x6e,0x6f,
- 0x75,0x6e,0x63,0x65,0x6d,0x65,0x6e,0x74,0x73,0x20,0x69,0x66,0x20,0x61,0x20,0x64,
- 0x65,0x66,0x65,0x6e,0x73,0x65,0x20,0x73,0x70,0x6f,0x74,0x20,0x69,0x73,0x20,0x6f,
- 0x70,0x65,0x6e,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,
- 0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xb6,0x0,0x53,
- 0x0,0x69,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0,0x6d,
- 0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x2c,0x0,0x20,
- 0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x72,0x0,0xe1,
- 0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x73,
- 0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x61,
- 0x0,0x6e,0x0,0x75,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x73,0x0,0x20,
- 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x73,
- 0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x79,0x0,0x20,
- 0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x70,0x0,0x75,0x0,0x65,0x0,0x73,0x0,0x74,
- 0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6a,0x0,0x75,0x0,0x72,
- 0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x72,
- 0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x51,0x49,0x66,
- 0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2c,0x20,0x79,0x6f,0x75,0x20,0x77,0x69,
- 0x6c,0x6c,0x20,0x67,0x65,0x74,0x20,0x61,0x6c,0x65,0x72,0x74,0x73,0x20,0x61,0x62,
- 0x6f,0x75,0x74,0x20,0x63,0x61,0x73,0x65,0x20,0x61,0x6e,0x6e,0x6f,0x75,0x6e,0x63,
- 0x65,0x6d,0x65,0x6e,0x74,0x73,0x20,0x69,0x66,0x20,0x61,0x20,0x6a,0x75,0x72,0x6f,
- 0x72,0x20,0x73,0x70,0x6f,0x74,0x20,0x69,0x73,0x20,0x6f,0x70,0x65,0x6e,0x2e,0x7,
- 0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,
- 0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xb6,0x0,0x53,0x0,0x69,0x0,0x20,0x0,
- 0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x72,0x0,
- 0x63,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x2c,0x0,0x20,0x0,0x72,0x0,0x65,0x0,
- 0x63,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x72,0x0,0xe1,0x0,0x20,0x0,0x61,0x0,
- 0x6c,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x73,0x0,
- 0x6f,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x75,0x0,
- 0x6e,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,
- 0x20,0x0,0x63,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x73,0x0,
- 0x69,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x79,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,
- 0x20,0x0,0x70,0x0,0x75,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,
- 0x64,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x61,0x0,
- 0x6c,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x2e,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x56,0x49,0x66,0x20,0x63,0x68,0x65,0x63,
- 0x6b,0x65,0x64,0x2c,0x20,0x79,0x6f,0x75,0x20,0x77,0x69,0x6c,0x6c,0x20,0x67,0x65,
- 0x74,0x20,0x61,0x6c,0x65,0x72,0x74,0x73,0x20,0x61,0x62,0x6f,0x75,0x74,0x20,0x63,
- 0x61,0x73,0x65,0x20,0x61,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x6d,0x65,0x6e,0x74,
- 0x73,0x20,0x69,0x66,0x20,0x61,0x20,0x70,0x72,0x6f,0x73,0x65,0x63,0x75,0x74,0x6f,
- 0x72,0x20,0x73,0x70,0x6f,0x74,0x20,0x69,0x73,0x20,0x6f,0x70,0x65,0x6e,0x2e,0x7,
- 0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,
- 0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xbc,0x0,0x53,0x0,0x69,0x0,0x20,0x0,
- 0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x72,0x0,
- 0x63,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x72,0x0,0x65,0x0,
- 0x63,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x72,0x0,0xe1,0x0,0x20,0x0,0x61,0x0,
- 0x6c,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x73,0x0,
- 0x6f,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x75,0x0,
- 0x6e,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,
- 0x20,0x0,0x63,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x73,0x0,
- 0x69,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x79,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,
- 0x20,0x0,0x6c,0x0,0x75,0x0,0x67,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x64,0x0,
- 0x65,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x71,0x0,0x75,0x0,0xed,0x0,0x67,0x0,
- 0x72,0x0,0x61,0x0,0x66,0x0,0x6f,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,
- 0x72,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x58,0x49,
- 0x66,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2c,0x20,0x79,0x6f,0x75,0x20,0x77,
- 0x69,0x6c,0x6c,0x20,0x67,0x65,0x74,0x20,0x61,0x6c,0x65,0x72,0x74,0x73,0x20,0x61,
- 0x62,0x6f,0x75,0x74,0x20,0x63,0x61,0x73,0x65,0x20,0x61,0x6e,0x6e,0x6f,0x75,0x6e,
- 0x63,0x65,0x6d,0x65,0x6e,0x74,0x73,0x20,0x69,0x66,0x20,0x61,0x20,0x73,0x74,0x65,
- 0x6e,0x6f,0x67,0x72,0x61,0x70,0x68,0x65,0x72,0x20,0x73,0x70,0x6f,0x74,0x20,0x69,
- 0x73,0x20,0x6f,0x70,0x65,0x6e,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,
- 0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,
- 0xb4,0x0,0x53,0x0,0x69,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,
- 0x20,0x0,0x6d,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,
- 0x2c,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x62,0x0,0x69,0x0,
- 0x72,0x0,0xe1,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x74,0x0,
- 0x61,0x0,0x73,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x65,0x0,
- 0x20,0x0,0x61,0x0,0x6e,0x0,0x75,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,
- 0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x73,0x0,
- 0x6f,0x0,0x73,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,
- 0x20,0x0,0x70,0x0,0x75,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,
- 0x64,0x0,0x65,0x0,0x20,0x0,0x6a,0x0,0x75,0x0,0x65,0x0,0x7a,0x0,0x20,0x0,
- 0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,
- 0x72,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x53,0x49,
- 0x66,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2c,0x20,0x79,0x6f,0x75,0x20,0x77,
- 0x69,0x6c,0x6c,0x20,0x67,0x65,0x74,0x20,0x61,0x6c,0x65,0x72,0x74,0x73,0x20,0x61,
- 0x62,0x6f,0x75,0x74,0x20,0x63,0x61,0x73,0x65,0x20,0x61,0x6e,0x6e,0x6f,0x75,0x6e,
- 0x63,0x65,0x6d,0x65,0x6e,0x74,0x73,0x20,0x69,0x66,0x20,0x74,0x68,0x65,0x20,0x6a,
- 0x75,0x64,0x67,0x65,0x20,0x73,0x70,0x6f,0x74,0x20,0x69,0x73,0x20,0x6f,0x70,0x65,
- 0x6e,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,
- 0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x58,0x0,0x53,0x0,0x69,
- 0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0,0x6d,0x0,0x61,
- 0x0,0x72,0x0,0x63,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x72,
- 0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x72,0x0,0xe1,0x0,0x20,
- 0x0,0x61,0x0,0x6e,0x0,0x75,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x73,
- 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x73,0x0,0x6f,
- 0x0,0x73,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x49,0x66,
- 0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2c,0x20,0x79,0x6f,0x75,0x20,0x77,0x69,
- 0x6c,0x6c,0x20,0x67,0x65,0x74,0x20,0x61,0x6c,0x65,0x72,0x74,0x73,0x20,0x61,0x62,
- 0x6f,0x75,0x74,0x20,0x63,0x61,0x73,0x65,0x20,0x61,0x6e,0x6e,0x6f,0x75,0x6e,0x63,
- 0x65,0x6d,0x65,0x6e,0x74,0x73,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,
- 0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,
- 0xc2,0x0,0x53,0x0,0x69,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,
- 0x69,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,
- 0x73,0x0,0x65,0x0,0x72,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,
- 0x65,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x65,0x0,
- 0x74,0x0,0x65,0x0,0x72,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x64,0x0,
- 0x61,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x2c,0x0,
- 0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x6a,0x0,0x75,0x0,0x65,0x0,0x67,0x0,
- 0x6f,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x62,0x0,0x61,0x0,0x72,0x0,
- 0xe1,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x72,0x0,
- 0x65,0x0,0x63,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0,0x70,0x0,
- 0x72,0x0,0x6f,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,
- 0x6e,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x71,0x0,0x75,0x0,
- 0xed,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7b,0x49,0x66,0x20,
- 0x74,0x68,0x65,0x20,0x62,0x75,0x69,0x6c,0x74,0x2d,0x69,0x6e,0x20,0x73,0x65,0x72,
- 0x76,0x65,0x72,0x20,0x6c,0x6f,0x6f,0x6b,0x75,0x70,0x73,0x20,0x66,0x61,0x69,0x6c,
- 0x2c,0x20,0x74,0x68,0x65,0x20,0x67,0x61,0x6d,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,
- 0x74,0x72,0x79,0x20,0x74,0x68,0x65,0x20,0x61,0x64,0x64,0x72,0x65,0x73,0x73,0x20,
- 0x67,0x69,0x76,0x65,0x6e,0x20,0x68,0x65,0x72,0x65,0x20,0x61,0x6e,0x64,0x20,0x75,
- 0x73,0x65,0x20,0x69,0x74,0x20,0x61,0x73,0x20,0x61,0x20,0x62,0x61,0x63,0x6b,0x75,
- 0x70,0x20,0x6d,0x61,0x73,0x74,0x65,0x72,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x20,
- 0x61,0x64,0x64,0x72,0x65,0x73,0x73,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,
- 0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,
- 0x0,0xa6,0x0,0x53,0x0,0x69,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,
- 0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x61,0x0,0x64,0x0,0x6f,
- 0x0,0x2c,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x67,
- 0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x6f,
- 0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x72,0x0,0xe1,0x0,0x20,
- 0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x72,0x0,0x63,
- 0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x65,
- 0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x55,
- 0x0,0x54,0x0,0x43,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x73,
- 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6d,
- 0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x3f,0x49,0x66,0x20,0x74,0x69,0x63,0x6b,0x65,0x64,0x2c,0x20,0x6c,0x6f,0x67,
- 0x20,0x77,0x69,0x6c,0x6c,0x20,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x20,0x61,0x20,
- 0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x20,0x69,0x6e,0x20,0x55,0x54,0x43,
- 0x20,0x62,0x65,0x66,0x6f,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x6e,0x61,0x6d,0x65,
- 0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,
- 0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xb0,0x0,0x53,0x0,0x69,0x0,
- 0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,
- 0x72,0x0,0x63,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x6c,0x0,
- 0x6f,0x0,0x73,0x0,0x20,0x0,0x6e,0x0,0x75,0x0,0x65,0x0,0x76,0x0,0x6f,0x0,
- 0x73,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x61,0x0,0x6a,0x0,
- 0x65,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x65,0x0,
- 0x63,0x0,0x65,0x0,0x72,0x0,0xe1,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,
- 0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x74,0x0,
- 0x65,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x69,0x0,
- 0x6f,0x0,0x72,0x0,0x20,0x0,0x28,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x0,
- 0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x74,0x0,
- 0x20,0x0,0x4f,0x0,0x4f,0x0,0x43,0x0,0x29,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x8f,0x49,0x66,0x20,0x74,0x69,0x63,0x6b,0x65,0x64,0x2c,0x20,
- 0x6e,0x65,0x77,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x73,0x20,0x77,0x69,0x6c,
- 0x6c,0x20,0x61,0x70,0x70,0x65,0x61,0x72,0x20,0x61,0x74,0x20,0x74,0x68,0x65,0x20,
- 0x62,0x6f,0x74,0x74,0x6f,0x6d,0x20,0x28,0x6c,0x69,0x6b,0x65,0x20,0x74,0x68,0x65,
- 0x20,0x4f,0x4f,0x43,0x20,0x63,0x68,0x61,0x74,0x6c,0x6f,0x67,0x29,0x2e,0x20,0x54,
- 0x68,0x65,0x20,0x74,0x72,0x61,0x64,0x69,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x20,0x28,
- 0x41,0x4f,0x31,0x29,0x20,0x62,0x65,0x68,0x61,0x76,0x69,0x6f,0x75,0x72,0x20,0x69,
- 0x73,0x20,0x65,0x71,0x75,0x69,0x76,0x61,0x6c,0x65,0x6e,0x74,0x20,0x74,0x6f,0x20,
- 0x74,0x68,0x69,0x73,0x20,0x62,0x65,0x69,0x6e,0x67,0x20,0x75,0x6e,0x74,0x69,0x63,
- 0x6b,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,
- 0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x1,0x68,0x0,0x53,
- 0x0,0x69,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x72,
- 0x0,0x63,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x6c,0x0,0x6f,
- 0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x61,0x0,0x6a,
- 0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x6e,0x0,0x75,0x0,0x65,0x0,0x76,0x0,0x6f,
- 0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x63,
- 0x0,0x65,0x0,0x72,0x0,0xe1,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x70,
- 0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x2c,0x0,0x20,
- 0x0,0x79,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x6e,
- 0x0,0x73,0x0,0x61,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x70,0x0,0x61,
- 0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x65,0x0,0x72,0x0,0xe1,0x0,0x20,0x0,0x65,
- 0x0,0x6e,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x67,
- 0x0,0x75,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6c,
- 0x0,0xed,0x0,0x6e,0x0,0x65,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73,
- 0x0,0x70,0x0,0x75,0x0,0xe9,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c,
- 0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6d,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x2e,
- 0x0,0x20,0x0,0x43,0x0,0x75,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,
- 0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73,
- 0x0,0x6d,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x2c,
- 0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x75,0x0,0x65,0x0,0x73,
- 0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x6f,
- 0x0,0x20,0x0,0x27,0x0,0x6e,0x0,0x6f,0x0,0x6d,0x0,0x62,0x0,0x72,0x0,0x65,
- 0x0,0x3a,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x61,0x0,0x6a,
- 0x0,0x65,0x0,0x27,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x99,
- 0x49,0x66,0x20,0x74,0x69,0x63,0x6b,0x65,0x64,0x2c,0x20,0x6e,0x65,0x77,0x20,0x6d,
- 0x65,0x73,0x73,0x61,0x67,0x65,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x61,0x70,0x70,
- 0x65,0x61,0x72,0x20,0x73,0x65,0x70,0x61,0x72,0x61,0x74,0x65,0x64,0x2c,0x20,0x77,
- 0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,
- 0x63,0x6f,0x6d,0x69,0x6e,0x67,0x20,0x6f,0x6e,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,
- 0x78,0x74,0x20,0x6c,0x69,0x6e,0x65,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x74,0x68,
- 0x65,0x20,0x6e,0x61,0x6d,0x65,0x2e,0x20,0x57,0x68,0x65,0x6e,0x20,0x75,0x6e,0x74,
- 0x69,0x63,0x6b,0x65,0x64,0x2c,0x20,0x69,0x74,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,
- 0x79,0x73,0x20,0x69,0x74,0x20,0x61,0x73,0x20,0x27,0x6e,0x61,0x6d,0x65,0x3a,0x20,
- 0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x27,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,
- 0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,
- 0x0,0x0,0xce,0x0,0x53,0x0,0x69,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,
- 0xe1,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,
- 0x74,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,
- 0x20,0x0,0x6a,0x0,0x75,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,
- 0x65,0x0,0x72,0x0,0x6d,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x72,0x0,0xe1,0x0,
- 0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0,
- 0x72,0x0,0x65,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x64,0x0,0x75,0x0,0x7a,0x0,
- 0x63,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x63,0x0,
- 0x74,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,
- 0x6f,0x0,0x6e,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,
- 0x20,0x0,0x62,0x0,0x75,0x0,0x63,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x65,0x0,
- 0x6e,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,
- 0x6d,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,
- 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4c,0x49,0x66,0x20,0x74,0x72,
- 0x75,0x65,0x2c,0x20,0x74,0x68,0x65,0x20,0x67,0x61,0x6d,0x65,0x20,0x77,0x69,0x6c,
- 0x6c,0x20,0x61,0x6c,0x6c,0x6f,0x77,0x20,0x6c,0x6f,0x6f,0x70,0x69,0x6e,0x67,0x20,
- 0x73,0x6f,0x75,0x6e,0x64,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x73,0x20,0x74,0x6f,
- 0x20,0x70,0x6c,0x61,0x79,0x20,0x6f,0x6e,0x20,0x70,0x72,0x65,0x61,0x6e,0x69,0x6d,
- 0x61,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,
- 0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,
- 0xb2,0x0,0x53,0x0,0x69,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,
- 0x20,0x0,0x6d,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x61,0x0,0x64,0x0,0x61,0x0,
- 0x2c,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x6a,0x0,0x75,0x0,0x65,0x0,
- 0x67,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,
- 0x64,0x0,0x75,0x0,0x63,0x0,0x69,0x0,0x72,0x0,0xe1,0x0,0x20,0x0,0x75,0x0,
- 0x6e,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,
- 0x20,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x70,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,
- 0x63,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x75,0x0,
- 0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0,
- 0x27,0x0,0x64,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x27,0x0,0x20,0x0,0x75,0x0,
- 0x6e,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x70,0x0,0x61,0x0,0x63,0x0,0x69,0x0,
- 0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4b,0x49,0x66,0x20,
- 0x74,0x72,0x75,0x65,0x2c,0x20,0x74,0x68,0x65,0x20,0x67,0x61,0x6d,0x65,0x20,0x77,
- 0x69,0x6c,0x6c,0x20,0x70,0x6c,0x61,0x79,0x20,0x61,0x20,0x62,0x6c,0x69,0x70,0x20,
- 0x73,0x6f,0x75,0x6e,0x64,0x20,0x65,0x76,0x65,0x6e,0x20,0x77,0x68,0x65,0x6e,0x20,
- 0x61,0x20,0x73,0x70,0x61,0x63,0x65,0x20,0x69,0x73,0x20,0x27,0x62,0x65,0x69,0x6e,
- 0x67,0x20,0x73,0x61,0x69,0x64,0x27,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,
- 0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,
- 0x0,0x7a,0x0,0x53,0x0,0x69,0x0,0x20,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x73,
- 0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x43,0x0,0x4d,0x0,0x2c,0x0,0x20,
- 0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x61,0x0,0x20,
- 0x0,0x71,0x0,0x75,0x0,0xe9,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x73,0x0,0x6f,
- 0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x73,0x0,0x20,
- 0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x75,0x0,0x65,0x0,0x73,0x0,0x74,
- 0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x72,0x0,0x67,0x0,0x61,
- 0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x39,0x49,0x66,0x20,0x79,0x6f,0x75,0x27,0x72,0x65,0x20,
- 0x61,0x20,0x43,0x4d,0x2c,0x20,0x65,0x6e,0x74,0x65,0x72,0x20,0x77,0x68,0x61,0x74,
- 0x20,0x63,0x61,0x73,0x65,0x73,0x20,0x79,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x77,
- 0x69,0x6c,0x6c,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x68,0x6f,0x73,0x74,0x2e,0x7,
- 0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,
- 0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x4a,0x0,0x75,0x0,0x65,0x0,
- 0x7a,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4a,0x75,0x64,
- 0x67,0x65,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,
- 0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4a,0x0,
- 0x75,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x6,0x4a,0x75,0x72,0x6f,0x72,0x3a,0x7,0x0,0x0,0x0,0xf,
- 0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,
- 0x3,0x0,0x0,0x0,0x36,0x0,0x50,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x72,0x0,
- 0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xfa,0x0,0x73,0x0,0x69,0x0,
- 0x63,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,
- 0x6a,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x18,0x4b,0x69,0x6c,0x6c,0x20,0x4d,0x75,0x73,0x69,0x63,0x20,
- 0x4f,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x7,0x0,0x0,
- 0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x49,0x0,0x64,0x0,0x69,0x0,0x6f,0x0,
- 0x6d,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4c,
- 0x61,0x6e,0x67,0x75,0x61,0x67,0x65,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,
- 0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,
- 0x0,0x2c,0x0,0x49,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x69,
- 0x0,0x72,0x0,0x20,0x0,0x68,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x72,
- 0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x49,0x0,0x43,0x0,0x3a,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4c,0x6f,0x67,0x20,0x67,0x6f,0x65,0x73,
- 0x20,0x64,0x6f,0x77,0x6e,0x77,0x61,0x72,0x64,0x73,0x3a,0x7,0x0,0x0,0x0,0xf,
- 0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,
- 0x3,0x0,0x0,0x0,0x2a,0x0,0x4c,0x0,0x69,0x0,0x6d,0x0,0x69,0x0,0x74,0x0,
- 0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x68,0x0,0x69,0x0,
- 0x73,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x3a,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x4c,0x6f,0x67,0x20,0x6c,0x65,0x6e,
- 0x67,0x74,0x68,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,
- 0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4d,
- 0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x6e,
- 0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x67,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0xb,0x4c,0x6f,0x67,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x7,
- 0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,
- 0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4e,0x0,0x75,0x0,0x65,0x0,
- 0x76,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0xed,0x0,0x6e,0x0,0x65,0x0,0x61,0x0,
- 0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x67,0x0,0x3a,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x6f,0x67,0x20,0x6e,0x65,0x77,
- 0x6c,0x69,0x6e,0x65,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,
- 0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,
- 0x4d,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,
- 0x20,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,
- 0x65,0x0,0x6e,0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x67,0x0,0x3a,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x4c,0x6f,0x67,0x20,0x74,0x69,0x6d,0x65,0x73,
- 0x74,0x61,0x6d,0x70,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,
- 0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xe,0x0,
- 0x4d,0x0,0xfa,0x0,0x73,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4d,0x75,0x73,0x69,0x63,0x3a,0x7,0x0,0x0,
- 0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x45,0x0,0x6e,0x0,0x76,0x0,0x69,0x0,
- 0x61,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,
- 0x6f,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x73,0x0,0x65,0x0,
- 0x72,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x46,
- 0x72,0x61,0x6d,0x65,0x20,0x45,0x66,0x66,0x65,0x63,0x74,0x73,0x3a,0x7,0x0,0x0,
- 0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0x0,0x0,0x0,0xac,0x0,0x52,0x0,0x65,0x0,0x70,0x0,0x72,0x0,
- 0x6f,0x0,0x64,0x0,0x75,0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,
- 0x20,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,
- 0x64,0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x70,0x0,0x20,0x0,
- 0x22,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x7a,0x0,
- 0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x64,0x0,
- 0x61,0x0,0x20,0x0,0x58,0x0,0x20,0x0,0x73,0x0,0xed,0x0,0x6d,0x0,0x62,0x0,
- 0x6f,0x0,0x6c,0x0,0x6f,0x0,0x73,0x0,0x22,0x0,0x2c,0x0,0x20,0x0,0x64,0x0,
- 0x6f,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x58,0x0,0x20,0x0,0x65,0x0,
- 0x73,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x73,0x0,
- 0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,
- 0x70,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x47,0x50,0x6c,0x61,
- 0x79,0x20,0x61,0x20,0x62,0x6c,0x69,0x70,0x20,0x73,0x6f,0x75,0x6e,0x64,0x20,0x22,
- 0x6f,0x6e,0x63,0x65,0x20,0x70,0x65,0x72,0x20,0x65,0x76,0x65,0x72,0x79,0x20,0x58,
- 0x20,0x73,0x79,0x6d,0x62,0x6f,0x6c,0x73,0x22,0x2c,0x20,0x77,0x68,0x65,0x72,0x65,
- 0x20,0x58,0x20,0x69,0x73,0x20,0x74,0x68,0x65,0x20,0x62,0x6c,0x69,0x70,0x20,0x72,
- 0x61,0x74,0x65,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,
- 0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x42,
- 0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20,
- 0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x65,0x0,0x78,0x0,0x70,0x0,0x6c,
- 0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x2e,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x50,0x72,0x65,0x74,0x74,0x79,
- 0x20,0x73,0x65,0x6c,0x66,0x2d,0x65,0x78,0x70,0x6c,0x61,0x6e,0x61,0x74,0x6f,0x72,
- 0x79,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,
- 0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x46,0x0,0x69,
- 0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0xc,0x50,0x72,0x6f,0x73,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x3a,
- 0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,
- 0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xaa,0x0,0x41,0x0,0x63,0x0,0x74,
- 0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x65,
- 0x0,0x6c,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x79,
- 0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x6c,
- 0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65,
- 0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,
- 0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,
- 0x0,0x66,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x75,
- 0x0,0x73,0x0,0x75,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x70,
- 0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,
- 0x0,0x63,0x0,0x6f,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x64,0x0,0x61,
- 0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3d,0x52,0x65,
- 0x66,0x72,0x65,0x73,0x68,0x20,0x74,0x68,0x65,0x20,0x74,0x68,0x65,0x6d,0x65,0x20,
- 0x61,0x6e,0x64,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x61,0x6c,0x6c,0x20,0x6f,
- 0x66,0x20,0x74,0x68,0x65,0x20,0x75,0x69,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,
- 0x73,0x20,0x74,0x6f,0x20,0x6d,0x61,0x74,0x63,0x68,0x2e,0x7,0x0,0x0,0x0,0xf,
- 0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,
- 0x3,0x0,0x0,0x0,0x8,0x0,0x53,0x0,0x46,0x0,0x58,0x0,0x3a,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x46,0x58,0x3a,0x7,0x0,0x0,0x0,0xf,
- 0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,
- 0x3,0x0,0x0,0x1,0x3a,0x0,0x45,0x0,0x6e,0x0,0x76,0x0,0xed,0x0,0x65,0x0,
- 0x20,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x62,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,
- 0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x61,0x0,
- 0x6e,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x2c,0x0,0x20,0x0,
- 0x64,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x6f,0x0,
- 0x73,0x0,0x20,0x0,0x79,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,
- 0x64,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x0,
- 0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x66,0x0,0x69,0x0,
- 0x6e,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x63,0x0,0x68,0x0,
- 0x61,0x0,0x72,0x0,0x2e,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x61,0x0,
- 0x20,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0xe9,0x0,0x73,0x0,0x20,0x0,
- 0x64,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x72,0x0,0x65,0x0,
- 0x64,0x0,0x2e,0x0,0x20,0x0,0x53,0x0,0x6f,0x0,0x6c,0x0,0x6f,0x0,0x20,0x0,
- 0x66,0x0,0x75,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,
- 0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x65,0x0,
- 0x72,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x73,0x0,
- 0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x64,0x0,0x6d,0x0,
- 0x69,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,
- 0x61,0x0,0x20,0x0,0x66,0x0,0x75,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,
- 0x6e,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x64,0x0,0x2e,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8c,0x53,0x65,0x6e,0x64,0x20,0x73,0x63,
- 0x72,0x65,0x65,0x6e,0x2d,0x73,0x68,0x61,0x6b,0x69,0x6e,0x67,0x2c,0x20,0x66,0x6c,
- 0x61,0x73,0x68,0x65,0x73,0x20,0x61,0x6e,0x64,0x20,0x73,0x6f,0x75,0x6e,0x64,0x73,
- 0x20,0x61,0x73,0x20,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,
- 0x68,0x65,0x20,0x63,0x68,0x61,0x72,0x2e,0x69,0x6e,0x69,0x20,0x6f,0x76,0x65,0x72,
- 0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x2e,0x20,0x4f,0x6e,
- 0x6c,0x79,0x20,0x77,0x6f,0x72,0x6b,0x73,0x20,0x66,0x6f,0x72,0x20,0x73,0x65,0x72,
- 0x76,0x65,0x72,0x73,0x20,0x74,0x68,0x61,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,
- 0x74,0x20,0x74,0x68,0x69,0x73,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x61,
- 0x6c,0x69,0x74,0x79,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,
- 0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xe2,0x0,
- 0x45,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,
- 0x65,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,
- 0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,
- 0x64,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,
- 0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x53,0x0,
- 0x46,0x0,0x58,0x0,0x2e,0x0,0x20,0x0,0x4c,0x0,0x61,0x0,0x73,0x0,0x20,0x0,
- 0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6a,0x0,0x65,0x0,0x63,0x0,
- 0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x79,0x0,
- 0x20,0x0,0x6c,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x66,0x0,0x65,0x0,
- 0x63,0x0,0x74,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,
- 0x73,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,
- 0x65,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x75,0x0,
- 0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,
- 0x6d,0x0,0x6f,0x0,0x20,0x0,0x27,0x0,0x53,0x0,0x46,0x0,0x58,0x0,0x27,0x0,
- 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x55,0x53,0x65,0x74,0x73,0x20,
- 0x74,0x68,0x65,0x20,0x53,0x46,0x58,0x27,0x73,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,
- 0x74,0x20,0x76,0x6f,0x6c,0x75,0x6d,0x65,0x2e,0x20,0x49,0x6e,0x74,0x65,0x72,0x6a,
- 0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x61,0x6e,0x64,0x20,0x61,0x63,0x74,0x75,
- 0x61,0x6c,0x20,0x73,0x6f,0x75,0x6e,0x64,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x73,
- 0x20,0x63,0x6f,0x75,0x6e,0x74,0x20,0x61,0x73,0x20,0x27,0x53,0x46,0x58,0x27,0x2e,
- 0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,
- 0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x45,0x0,0x73,0x0,0x74,
- 0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x65,
- 0x0,0x6c,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,
- 0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,
- 0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x64,0x0,0x69,0x0,0x6f,0x0,0x2e,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x25,0x53,0x65,0x74,0x73,0x20,0x74,0x68,0x65,
- 0x20,0x61,0x75,0x64,0x69,0x6f,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x20,0x66,0x6f,
- 0x72,0x20,0x61,0x6c,0x6c,0x20,0x73,0x6f,0x75,0x6e,0x64,0x73,0x2e,0x7,0x0,0x0,
- 0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0x0,0x0,0x0,0x7e,0x0,0x45,0x0,0x73,0x0,0x74,0x0,0x61,0x0,
- 0x62,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,
- 0x20,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,
- 0x20,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,
- 0x61,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x64,0x0,
- 0x75,0x0,0x63,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,
- 0x65,0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,
- 0x6e,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x62,0x0,0x6c,0x0,
- 0x69,0x0,0x70,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x53,
- 0x65,0x74,0x73,0x20,0x74,0x68,0x65,0x20,0x64,0x65,0x6c,0x61,0x79,0x20,0x62,0x65,
- 0x74,0x77,0x65,0x65,0x6e,0x20,0x70,0x6c,0x61,0x79,0x69,0x6e,0x67,0x20,0x74,0x68,
- 0x65,0x20,0x62,0x6c,0x69,0x70,0x20,0x73,0x6f,0x75,0x6e,0x64,0x73,0x2e,0x7,0x0,
- 0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,
- 0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x82,0x0,0x45,0x0,0x73,0x0,0x74,0x0,0x61,
- 0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6c,
- 0x0,0x20,0x0,0x69,0x0,0x64,0x0,0x69,0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x20,
- 0x0,0x73,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,
- 0x0,0x73,0x0,0x65,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6c,
- 0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,
- 0x0,0x69,0x0,0x64,0x0,0x69,0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x64,
- 0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x73,
- 0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x40,0x53,0x65,0x74,0x73,0x20,0x74,0x68,0x65,0x20,0x6c,0x61,0x6e,
- 0x67,0x75,0x61,0x67,0x65,0x20,0x69,0x66,0x20,0x79,0x6f,0x75,0x20,0x64,0x6f,0x6e,
- 0x27,0x74,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x75,0x73,0x65,0x20,0x79,
- 0x6f,0x75,0x72,0x20,0x73,0x79,0x73,0x74,0x65,0x6d,0x20,0x6c,0x61,0x6e,0x67,0x75,
- 0x61,0x67,0x65,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,
- 0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x62,0x0,0x45,
- 0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x65,
- 0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x75,
- 0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x64,
- 0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x61,
- 0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x61,
- 0x0,0x20,0x0,0x6d,0x0,0xfa,0x0,0x73,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x2e,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x20,0x53,0x65,0x74,0x73,0x20,0x74,
- 0x68,0x65,0x20,0x6d,0x75,0x73,0x69,0x63,0x27,0x73,0x20,0x64,0x65,0x66,0x61,0x75,
- 0x6c,0x74,0x20,0x76,0x6f,0x6c,0x75,0x6d,0x65,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,
- 0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,
- 0x0,0x0,0x1,0xac,0x0,0x45,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x62,0x0,0x6c,
- 0x0,0x65,0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x74,
- 0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x73,0x0,0x75,
- 0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x69,
- 0x0,0x7a,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,
- 0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x6a,0x0,0x75,0x0,0x65,0x0,0x67,0x0,0x6f,
- 0x0,0x2e,0x0,0x20,0x0,0x53,0x0,0x69,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,
- 0x0,0x6e,0x0,0x75,0x0,0x65,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x65,
- 0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x62,0x0,0x69,
- 0x0,0xe9,0x0,0x6e,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x6d,0x0,0x62,0x0,0x69,
- 0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x61,0x0,0x73,0x0,0x70,
- 0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c,
- 0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x62,0x0,0x62,0x0,0x79,0x0,0x2c,0x0,0x20,
- 0x0,0x64,0x0,0x65,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0xe1,0x0,0x20,0x0,0x76,
- 0x0,0x6f,0x0,0x6c,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x20,
- 0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x65,
- 0x0,0x6c,0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x62,0x0,0x62,0x0,0x79,0x0,0x20,
- 0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,
- 0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x6d,
- 0x0,0x62,0x0,0x69,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x72,
- 0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x63,
- 0x0,0x74,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x6f,
- 0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x69,0x0,0x72,0x0,0x73,0x0,0x65,0x0,0x20,
- 0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,
- 0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x79,0x0,0x20,
- 0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x61,
- 0x0,0x6c,0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x62,0x0,0x62,0x0,0x79,0x0,0x2e,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xbb,0x53,0x65,0x74,0x73,0x20,0x74,
- 0x68,0x65,0x20,0x74,0x68,0x65,0x6d,0x65,0x20,0x75,0x73,0x65,0x64,0x20,0x69,0x6e,
- 0x2d,0x67,0x61,0x6d,0x65,0x2e,0x20,0x49,0x66,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,
- 0x77,0x20,0x74,0x68,0x65,0x6d,0x65,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x73,0x20,
- 0x74,0x68,0x65,0x20,0x6c,0x6f,0x62,0x62,0x79,0x27,0x73,0x20,0x6c,0x6f,0x6f,0x6b,
- 0x20,0x61,0x73,0x20,0x77,0x65,0x6c,0x6c,0x2c,0x20,0x79,0x6f,0x75,0x27,0x6c,0x6c,
- 0x20,0x6e,0x65,0x65,0x64,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x6f,0x61,0x64,0x20,
- 0x74,0x68,0x65,0x20,0x6c,0x6f,0x62,0x62,0x79,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,
- 0x65,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x73,0x20,0x74,0x6f,0x20,0x74,0x61,0x6b,
- 0x65,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x2c,0x20,0x73,0x75,0x63,0x68,0x20,0x61,
- 0x73,0x20,0x62,0x79,0x20,0x6a,0x6f,0x69,0x6e,0x69,0x6e,0x67,0x20,0x61,0x20,0x73,
- 0x65,0x72,0x76,0x65,0x72,0x20,0x61,0x6e,0x64,0x20,0x6c,0x65,0x61,0x76,0x69,0x6e,
- 0x67,0x20,0x69,0x74,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,
- 0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x6e,0x0,
- 0x45,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,
- 0x65,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,
- 0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,
- 0x6c,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x70,0x0,
- 0x73,0x0,0x2c,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,
- 0x6e,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,
- 0x68,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x61,0x0,0x72,0x0,0x2e,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x38,0x53,0x65,0x74,0x73,0x20,0x74,0x68,0x65,0x20,
- 0x76,0x6f,0x6c,0x75,0x6d,0x65,0x20,0x6f,0x66,0x20,0x74,0x68,0x65,0x20,0x62,0x6c,
- 0x69,0x70,0x73,0x2c,0x20,0x74,0x68,0x65,0x20,0x74,0x61,0x6c,0x6b,0x69,0x6e,0x67,
- 0x20,0x73,0x6f,0x75,0x6e,0x64,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x73,0x2e,0x7,
- 0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,
- 0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x41,0x0,0x6a,0x0,0x75,0x0,
- 0x73,0x0,0x74,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x8,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,
- 0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,
- 0x0,0x0,0x16,0x0,0x54,0x0,0x61,0x0,0x71,0x0,0x75,0x0,0xed,0x0,0x67,0x0,
- 0x72,0x0,0x61,0x0,0x66,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0xd,0x53,0x74,0x65,0x6e,0x6f,0x67,0x72,0x61,0x70,0x68,0x65,0x72,0x3a,
- 0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,
- 0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x4d,0x0,0x61,0x0,0x6e,
- 0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x66,
- 0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0xf,0x53,0x74,0x69,0x63,0x6b,0x79,0x20,0x45,0x66,0x66,
- 0x65,0x63,0x74,0x73,0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,
- 0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x24,0x0,
- 0x4d,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,
- 0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,
- 0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x53,0x74,0x69,
- 0x63,0x6b,0x79,0x20,0x50,0x72,0x65,0x61,0x6e,0x69,0x6d,0x73,0x3a,0x7,0x0,0x0,
- 0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,
- 0x67,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,
- 0x65,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,
- 0x69,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0xe,0x53,0x74,0x69,0x63,0x6b,0x79,0x20,0x53,0x6f,0x75,0x6e,0x64,0x73,
- 0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,
- 0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xa6,0x0,0x4c,0x0,0x61,0x0,
- 0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x63,0x0,
- 0x69,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x70,0x0,0xed,0x0,
- 0x78,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,
- 0x74,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x64,0x0,0x61,0x0,
- 0x20,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x61,0x0,
- 0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x72,0x0,
- 0x65,0x0,0x67,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,
- 0x64,0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x43,0x0,0x2e,0x0,0x20,0x0,0x50,0x0,
- 0x72,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6d,0x0,
- 0x69,0x0,0x6e,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x3a,0x0,0x20,0x0,0x30,0x0,
- 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x44,0x54,0x68,0x65,0x20,0x64,
- 0x69,0x73,0x74,0x61,0x6e,0x63,0x65,0x20,0x69,0x6e,0x20,0x70,0x69,0x78,0x65,0x6c,
- 0x73,0x20,0x62,0x65,0x74,0x77,0x65,0x65,0x6e,0x20,0x65,0x61,0x63,0x68,0x20,0x65,
- 0x6e,0x74,0x72,0x79,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x49,0x43,0x20,0x6c,
- 0x6f,0x67,0x2e,0x20,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x3a,0x20,0x30,0x2e,0x7,
- 0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,
- 0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x54,0x0,0x65,0x0,0x6d,0x0,
- 0x61,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x73,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,
- 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x54,0x68,0x65,0x6d,0x65,
- 0x3a,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,
- 0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x52,0x0,0x45,0x0,0x73,0x0,
- 0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x76,0x0,0x69,0x0,
- 0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,
- 0x64,0x0,0x6d,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,
- 0x65,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,
- 0x20,0x0,0x63,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x73,0x0,0x2e,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x29,0x54,0x68,0x69,0x73,0x20,0x73,0x65,0x72,0x76,
- 0x65,0x72,0x20,0x64,0x6f,0x65,0x73,0x20,0x6e,0x6f,0x74,0x20,0x73,0x75,0x70,0x70,
- 0x6f,0x72,0x74,0x20,0x63,0x61,0x73,0x65,0x20,0x61,0x6c,0x65,0x72,0x74,0x73,0x2e,
- 0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,
- 0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x4c,0x0,0x45,0x0,0x73,0x0,0x74,
- 0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x76,0x0,0x69,0x0,0x64,
- 0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x64,0x0,0x6d,0x0,0x69,0x0,0x74,
- 0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x61,
- 0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x73,
- 0x0,0x6f,0x0,0x73,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,
- 0x54,0x68,0x69,0x73,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x20,0x73,0x75,0x70,0x70,
- 0x6f,0x72,0x74,0x73,0x20,0x63,0x61,0x73,0x65,0x20,0x61,0x6c,0x65,0x72,0x74,0x73,
- 0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,
- 0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xd0,0x0,0x41,0x0,0x63,0x0,
- 0x74,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,
- 0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x6d,0x0,
- 0x69,0x0,0x74,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,
- 0x20,0x0,0x6c,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,
- 0x73,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x20,0x0,
- 0x64,0x0,0x65,0x0,0x66,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,
- 0x73,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x70,0x0,
- 0x69,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x65,0x0,
- 0xf1,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0,
- 0x75,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,
- 0x65,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x70,0x0,
- 0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,
- 0x7a,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x4d,0x54,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x20,0x6f,
- 0x6e,0x20,0x74,0x6f,0x20,0x61,0x6c,0x6c,0x6f,0x77,0x20,0x63,0x68,0x61,0x72,0x61,
- 0x63,0x74,0x65,0x72,0x73,0x20,0x74,0x6f,0x20,0x64,0x65,0x66,0x69,0x6e,0x65,0x20,
- 0x74,0x68,0x65,0x69,0x72,0x20,0x6f,0x77,0x6e,0x20,0x63,0x75,0x73,0x74,0x6f,0x6d,
- 0x20,0x63,0x68,0x61,0x74,0x20,0x62,0x6f,0x78,0x20,0x64,0x65,0x73,0x69,0x67,0x6e,
- 0x73,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,
- 0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xba,0x0,0x41,0x0,0x63,
- 0x0,0x74,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x20,0x0,0x70,
- 0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x74,
- 0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x6c,
- 0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x73,0x0,0x69,0x0,0x6c,0x0,0x6c,
- 0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x6e,0x0,0x69,
- 0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x73,
- 0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x61,0x0,0x63,0x0,0x74,
- 0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x70,
- 0x0,0x75,0x0,0xe9,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x72,
- 0x0,0x65,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x64,0x0,0x75,0x0,0x63,0x0,0x69,
- 0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x6f,
- 0x0,0x74,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x54,
- 0x54,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x20,0x6f,0x6e,0x20,0x74,0x6f,0x20,
- 0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x20,0x70,0x72,0x65,0x61,0x6e,0x69,0x6d,0x61,
- 0x74,0x69,0x6f,0x6e,0x20,0x63,0x68,0x65,0x63,0x6b,0x62,0x6f,0x78,0x20,0x66,0x72,
- 0x6f,0x6d,0x20,0x63,0x6c,0x65,0x61,0x72,0x69,0x6e,0x67,0x20,0x61,0x66,0x74,0x65,
- 0x72,0x20,0x70,0x6c,0x61,0x79,0x69,0x6e,0x67,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,
- 0x6f,0x74,0x65,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,
- 0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xc4,0x0,0x41,
- 0x0,0x63,0x0,0x74,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x20,
- 0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x76,0x0,0x69,
- 0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,
- 0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0xfa,0x0,0x20,
- 0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x70,0x0,0x6c,0x0,0x65,0x0,0x67,0x0,0x61,
- 0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x65,
- 0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x65,
- 0x0,0x6c,0x0,0x69,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x65,
- 0x0,0x6c,0x0,0x20,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,
- 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x70,0x0,0x75,0x0,0xe9,0x0,0x73,
- 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x70,0x0,0x72,
- 0x0,0x6f,0x0,0x64,0x0,0x75,0x0,0x63,0x0,0x69,0x0,0x72,0x0,0x6c,0x0,0x6f,
- 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x57,0x54,0x75,0x72,0x6e,
- 0x20,0x74,0x68,0x69,0x73,0x20,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x70,0x72,0x65,0x76,
- 0x65,0x6e,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x73,0x20,
- 0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x20,0x66,0x72,0x6f,0x6d,0x20,0x63,0x6c,
- 0x65,0x61,0x72,0x69,0x6e,0x67,0x20,0x74,0x68,0x65,0x20,0x65,0x66,0x66,0x65,0x63,
- 0x74,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x70,0x6c,0x61,0x79,0x69,0x6e,0x67,0x20,
- 0x69,0x74,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,
- 0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xbe,0x0,0x41,0x0,
- 0x63,0x0,0x74,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x20,0x0,
- 0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x76,0x0,0x69,0x0,
- 0x74,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,
- 0x65,0x0,0x6c,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0xfa,0x0,0x20,0x0,
- 0x64,0x0,0x65,0x0,0x73,0x0,0x70,0x0,0x6c,0x0,0x65,0x0,0x67,0x0,0x61,0x0,
- 0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,
- 0x6f,0x0,0x6e,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,
- 0x72,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x73,0x0,
- 0x6f,0x0,0x6e,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,
- 0x73,0x0,0x70,0x0,0x75,0x0,0xe9,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,
- 0x20,0x0,0x72,0x0,0x65,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x64,0x0,0x75,0x0,
- 0x63,0x0,0x69,0x0,0x72,0x0,0x6c,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x54,0x54,0x75,0x72,0x6e,0x20,0x74,0x68,0x69,0x73,0x20,0x6f,
- 0x6e,0x20,0x74,0x6f,0x20,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x20,0x74,0x68,0x65,
- 0x20,0x73,0x6f,0x75,0x6e,0x64,0x20,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x20,
- 0x66,0x72,0x6f,0x6d,0x20,0x63,0x6c,0x65,0x61,0x72,0x69,0x6e,0x67,0x20,0x74,0x68,
- 0x65,0x20,0x73,0x6f,0x75,0x6e,0x64,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x70,0x6c,
- 0x61,0x79,0x69,0x6e,0x67,0x20,0x69,0x74,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,
- 0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,
- 0x0,0x0,0x56,0x0,0x50,0x0,0x65,0x0,0x72,0x0,0x6d,0x0,0x69,0x0,0x74,0x0,
- 0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,
- 0x73,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,
- 0x63,0x0,0x68,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x49,0x0,0x43,0x0,0x20,0x0,
- 0x64,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x76,0x0,
- 0x69,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x2f,0x55,0x73,0x65,0x20,0x74,0x68,0x65,0x20,0x6d,0x61,0x72,0x6b,0x75,
- 0x70,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,
- 0x73,0x65,0x72,0x76,0x65,0x72,0x20,0x49,0x43,0x20,0x63,0x68,0x61,0x74,0x6c,0x6f,
- 0x67,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,
- 0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0xa0,0x0,0x53,0x0,0x75,
- 0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6d,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x20,
- 0x0,0x4f,0x0,0x4f,0x0,0x43,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x65,
- 0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x65,
- 0x0,0x72,0x0,0xe1,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6d,
- 0x0,0xe1,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,
- 0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,
- 0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x75,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,
- 0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,
- 0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,
- 0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x4d,0x59,0x6f,0x75,0x72,0x20,0x4f,0x4f,0x43,0x20,0x6e,
- 0x61,0x6d,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x61,0x75,0x74,0x6f,
- 0x6d,0x61,0x74,0x69,0x63,0x61,0x6c,0x6c,0x79,0x20,0x73,0x65,0x74,0x20,0x74,0x6f,
- 0x20,0x74,0x68,0x69,0x73,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x77,0x68,0x65,0x6e,
- 0x20,0x79,0x6f,0x75,0x20,0x6a,0x6f,0x69,0x6e,0x20,0x61,0x20,0x73,0x65,0x72,0x76,
- 0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0xf,0x41,0x4f,0x4f,0x70,0x74,0x69,0x6f,0x6e,
- 0x73,0x44,0x69,0x61,0x6c,0x6f,0x67,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x22,0x0,
- 0x25,0x0,0x31,0x0,0x22,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x20,0x0,0x73,0x0,
- 0x69,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,
- 0x73,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x2e,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x22,0x25,0x31,0x22,0x20,0x68,0x61,
- 0x73,0x20,0x62,0x65,0x65,0x6e,0x20,0x74,0x72,0x61,0x6e,0x73,0x66,0x65,0x72,0x72,
- 0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0xff,0xff,0xff,0xff,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x3,0x41,0x2f,0x4d,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x41,0x0,0xf1,0x0,0x61,0x0,0x64,
- 0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x6e,0x0,0x75,0x0,0x65,0x0,0x76,0x0,0x61,
- 0x0,0x20,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x63,
- 0x0,0x69,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x13,0x41,0x64,0x64,0x20,0x6e,0x65,0x77,0x20,0x65,0x76,0x69,0x64,
- 0x65,0x6e,0x63,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x7c,0x0,0x41,0x0,0x67,0x0,
- 0x72,0x0,0x65,0x0,0x67,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x74,0x0,0x65,0x0,
- 0x78,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x75,0x0,
- 0x20,0x0,0xfa,0x0,0x6c,0x0,0x74,0x0,0x69,0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,
- 0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x61,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,
- 0x68,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,
- 0x63,0x0,0x75,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,
- 0x73,0x0,0x74,0x0,0xe9,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x72,0x0,0x63,0x0,
- 0x61,0x0,0x64,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x32,0x41,0x64,0x64,0x20,0x74,0x65,0x78,0x74,0x20,0x74,0x6f,0x20,0x79,0x6f,0x75,
- 0x72,0x20,0x6c,0x61,0x73,0x74,0x20,0x73,0x70,0x6f,0x6b,0x65,0x6e,0x20,0x6d,0x65,
- 0x73,0x73,0x61,0x67,0x65,0x20,0x77,0x68,0x65,0x6e,0x20,0x63,0x68,0x65,0x63,0x6b,
- 0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x41,0x0,0x64,0x0,0x69,0x0,0x74,0x0,
- 0x69,0x0,0x76,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x41,
- 0x64,0x64,0x69,0x74,0x69,0x76,0x65,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x5e,0x0,0x4c,0x0,0x65,0x0,
- 0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x6d,0x0,0x69,0x0,0x74,0x0,0x65,0x0,
- 0x20,0x0,0x63,0x0,0x61,0x0,0x6d,0x0,0x62,0x0,0x69,0x0,0x61,0x0,0x72,0x0,
- 0x20,0x0,0x76,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,
- 0x61,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x73,0x0,
- 0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x63,0x0,0x6c,0x0,0x69,0x0,
- 0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x33,0x41,0x6c,0x6c,0x6f,0x77,0x73,0x20,0x79,0x6f,0x75,0x20,0x74,0x6f,
- 0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x20,0x76,0x61,0x72,0x69,0x6f,0x75,0x73,0x20,
- 0x61,0x73,0x70,0x65,0x63,0x74,0x73,0x20,0x6f,0x66,0x20,0x74,0x68,0x65,0x20,0x63,
- 0x6c,0x69,0x65,0x6e,0x74,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xb0,0x0,0x55,0x0,0x6e,0x0,0x61,
- 0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0x61,
- 0x0,0x7a,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x61,
- 0x0,0x79,0x0,0x75,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x6c,0x0,0x6f,0x0,0x20,
- 0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x75,0x0,0x6e,0x0,0x63,0x0,0x69,
- 0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x63,0x0,0x61,
- 0x0,0x73,0x0,0x6f,0x0,0x20,0x0,0x28,0x0,0x64,0x0,0x65,0x0,0x62,0x0,0x65,
- 0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,
- 0x0,0x43,0x0,0x4d,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,
- 0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x6e,
- 0x0,0x75,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x63,
- 0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x61,0x41,0x6e,0x20,0x69,0x6e,0x74,0x65,0x72,0x66,0x61,0x63,0x65,
- 0x20,0x74,0x6f,0x20,0x68,0x65,0x6c,0x70,0x20,0x79,0x6f,0x75,0x20,0x61,0x6e,0x6e,
- 0x6f,0x75,0x6e,0x63,0x65,0x20,0x61,0x20,0x63,0x61,0x73,0x65,0x20,0x28,0x79,0x6f,
- 0x75,0x20,0x68,0x61,0x76,0x65,0x20,0x74,0x6f,0x20,0x62,0x65,0x20,0x61,0x20,0x43,
- 0x4d,0x20,0x66,0x69,0x72,0x73,0x74,0x20,0x74,0x6f,0x20,0x62,0x65,0x20,0x61,0x62,
- 0x6c,0x65,0x20,0x74,0x6f,0x20,0x61,0x6e,0x6e,0x6f,0x75,0x6e,0x63,0x65,0x20,0x63,
- 0x61,0x73,0x65,0x73,0x29,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,
- 0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x4c,0x0,0x6f,0x0,0x62,0x0,
- 0x62,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x42,0x61,0x63,
- 0x6b,0x20,0x74,0x6f,0x20,0x4c,0x6f,0x62,0x62,0x79,0x7,0x0,0x0,0x0,0x9,0x43,
- 0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x80,0x0,0x43,
- 0x0,0x6f,0x0,0x6e,0x0,0x76,0x0,0x69,0x0,0xe9,0x0,0x72,0x0,0x74,0x0,0x65,
- 0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x73,
- 0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,
- 0x0,0x2e,0x0,0x20,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,
- 0x0,0x72,0x0,0xe1,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,
- 0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x75,0x0,0x61,0x0,0x72,0x0,0x20,
- 0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,
- 0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6a,0x0,0x65,0x0,0x2e,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4f,0x42,0x65,0x63,0x6f,0x6d,0x65,0x20,0x61,
- 0x20,0x73,0x70,0x65,0x63,0x74,0x61,0x74,0x6f,0x72,0x2e,0x20,0x59,0x6f,0x75,0x20,
- 0x77,0x6f,0x6e,0x27,0x74,0x20,0x62,0x65,0x20,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,
- 0x20,0x69,0x6e,0x74,0x65,0x72,0x61,0x63,0x74,0x20,0x77,0x69,0x74,0x68,0x20,0x74,
- 0x68,0x65,0x20,0x69,0x6e,0x2d,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x20,
- 0x73,0x63,0x72,0x65,0x65,0x6e,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0xff,0xff,0xff,0xff,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x5,0x42,0x6c,0x69,0x70,0x73,0x7,0x0,0x0,0x0,0x9,0x43,
- 0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x82,0x0,0x41,
- 0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x70,
- 0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x20,
- 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,
- 0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,
- 0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6a,
- 0x0,0x65,0x0,0x20,0x0,0x79,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x6d,0x0,0x62,
- 0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x65,
- 0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6a,0x0,0x65,0x0,0x2e,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3f,0x42,0x72,0x69,0x6e,0x67,0x20,
- 0x75,0x70,0x20,0x74,0x68,0x65,0x20,0x43,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,
- 0x20,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x53,0x63,0x72,0x65,0x65,0x6e,0x20,0x61,
- 0x6e,0x64,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x20,0x79,0x6f,0x75,0x72,0x20,0x63,
- 0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,
- 0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x41,0x0,
- 0x62,0x0,0x72,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,
- 0x76,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,
- 0x64,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,
- 0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x1d,0x42,0x72,0x69,0x6e,0x67,0x20,0x75,0x70,0x20,0x74,0x68,0x65,0x20,
- 0x45,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x2e,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0xff,0xff,0xff,0xff,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x4c,
- 0x49,0x45,0x4e,0x54,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4c,0x0,0x6c,0x0,0x61,0x0,0x6d,
- 0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x72,
- 0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0xe,0x43,0x61,0x6c,0x6c,0x20,0x4d,0x6f,0x64,0x65,0x72,0x61,0x74,0x6f,0x72,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0xff,0xff,0xff,0xff,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x61,
- 0x6c,0x6c,0x20,0x6d,0x6f,0x64,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x61,0x0,0x73,
- 0x0,0x6f,0x0,0x20,0x0,0x68,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x20,
- 0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x25,0x0,0x31,0x0,0x2e,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x43,0x61,0x73,0x65,0x20,0x6d,0x61,0x64,
- 0x65,0x20,0x62,0x79,0x20,0x25,0x31,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,
- 0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0xff,0xff,0xff,0xff,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x61,0x73,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0xff,0xff,0xff,0xff,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x43,0x68,0x61,0x6e,0x67,0x65,
- 0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x7,0x0,0x0,0x0,0x9,0x43,
- 0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x5a,0x0,0x43,
- 0x0,0x61,0x0,0x6d,0x0,0x62,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6c,
- 0x0,0x20,0x0,0x6f,0x0,0x72,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x64,
- 0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x63,
- 0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x74,
- 0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x6e,
- 0x0,0x61,0x0,0x6a,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x32,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x74,0x68,0x65,0x20,0x6f,0x72,0x64,
- 0x65,0x72,0x20,0x6f,0x66,0x20,0x61,0x70,0x70,0x65,0x61,0x72,0x61,0x6e,0x63,0x65,
- 0x20,0x66,0x6f,0x72,0x20,0x79,0x6f,0x75,0x72,0x20,0x63,0x68,0x61,0x72,0x61,0x63,
- 0x74,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x1,0x42,0x0,0x43,0x0,0x61,0x0,0x6d,0x0,0x62,
- 0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x63,0x0,0x6f,
- 0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20,
- 0x0,0x74,0x0,0x65,0x0,0x78,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x6e,
- 0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x74,
- 0x0,0x20,0x0,0x49,0x0,0x43,0x0,0x2e,0x0,0xa,0x0,0xa1,0x0,0x54,0x0,0x61,
- 0x0,0x6d,0x0,0x62,0x0,0x69,0x0,0xe9,0x0,0x6e,0x0,0x20,0x0,0x70,0x0,0x75,
- 0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6c,0x0,0x65,
- 0x0,0x63,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x20,
- 0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x74,
- 0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x20,
- 0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x61,0x0,0x6a,0x0,0x65,0x0,0x20,
- 0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x20,
- 0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x6d,0x0,0x65,
- 0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x79,0x0,0x20,0x0,0x75,0x0,0x73,
- 0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x6d,0x0,0x65,
- 0x0,0x6e,0x0,0xfa,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x70,0x0,0x6c,
- 0x0,0x65,0x0,0x67,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x70,
- 0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x6d,0x0,0x62,
- 0x0,0x69,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x20,0x0,0x63,
- 0x0,0x6f,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x91,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x74,0x68,0x65,0x20,0x74,
- 0x65,0x78,0x74,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x6f,0x66,0x20,0x74,0x68,0x65,
- 0x20,0x73,0x70,0x6f,0x6b,0x65,0x6e,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2e,
- 0xa,0x59,0x6f,0x75,0x20,0x63,0x61,0x6e,0x20,0x61,0x6c,0x73,0x6f,0x20,0x73,0x65,
- 0x6c,0x65,0x63,0x74,0x20,0x61,0x20,0x70,0x61,0x72,0x74,0x20,0x6f,0x66,0x20,0x79,
- 0x6f,0x75,0x72,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x6c,0x79,0x20,0x74,0x79,
- 0x70,0x65,0x64,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x61,0x6e,0x64,0x20,
- 0x75,0x73,0x65,0x20,0x74,0x68,0x65,0x20,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,
- 0x20,0x74,0x6f,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x20,0x69,0x74,0x73,0x20,0x63,
- 0x6f,0x6c,0x6f,0x72,0x21,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,
- 0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x2,0x46,0x0,0x45,0x0,0x6c,0x0,0x69,0x0,
- 0x6a,0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x66,0x0,
- 0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,
- 0x61,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x64,0x0,
- 0x75,0x0,0x63,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,
- 0x73,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0xf3,0x0,0x78,0x0,0x69,0x0,
- 0x6d,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x61,0x0,
- 0x6a,0x0,0x65,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x61,0x0,
- 0x64,0x0,0x6f,0x0,0x2e,0x0,0xa,0x0,0x4c,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,
- 0x65,0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,
- 0x73,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x66,0x0,0x69,0x0,0x6e,0x0,
- 0x65,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x68,0x0,
- 0x65,0x0,0x6d,0x0,0x65,0x0,0x2f,0x0,0x65,0x0,0x66,0x0,0x66,0x0,0x65,0x0,
- 0x63,0x0,0x74,0x0,0x73,0x0,0x2f,0x0,0x65,0x0,0x66,0x0,0x66,0x0,0x65,0x0,
- 0x63,0x0,0x74,0x0,0x73,0x0,0x2e,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x2e,0x0,
- 0x20,0x0,0x54,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x73,0x0,
- 0x6f,0x0,0x6e,0x0,0x61,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x75,0x0,
- 0x65,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x66,0x0,0x69,0x0,
- 0x6e,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x63,0x0,
- 0x74,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x73,0x0,
- 0x6f,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x64,0x0,
- 0x6f,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0xa,0x0,0x63,0x0,
- 0x68,0x0,0x61,0x0,0x72,0x0,0x2e,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,
- 0x5b,0x0,0x4f,0x0,0x70,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,
- 0x73,0x0,0x5d,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x67,0x0,
- 0x6f,0x0,0x72,0x0,0xed,0x0,0x61,0x0,0x2c,0x0,0x20,0x0,0x65,0x0,0x66,0x0,
- 0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x3d,0x0,0x20,0x0,
- 0x27,0x0,0x6d,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,
- 0x65,0x0,0x27,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,
- 0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x69,0x0,
- 0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x69,0x0,
- 0x73,0x0,0x63,0x0,0x2f,0x0,0x3c,0x0,0x6d,0x0,0x69,0x0,0x73,0x0,0x63,0x0,
- 0x6e,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x3e,0x0,0x2f,0x0,0x65,0x0,0x66,0x0,
- 0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x73,0x0,0x2e,0x0,0x69,0x0,0x6e,0x0,
- 0x69,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,
- 0x65,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,
- 0x65,0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x73,0x0,0x2e,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0x13,0x43,0x68,0x6f,0x6f,0x73,0x65,0x20,
- 0x61,0x6e,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x20,0x74,0x6f,0x20,0x70,0x6c,0x61,
- 0x79,0x20,0x6f,0x6e,0x20,0x79,0x6f,0x75,0x72,0x20,0x6e,0x65,0x78,0x74,0x20,0x73,
- 0x70,0x6f,0x6b,0x65,0x6e,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2e,0xa,0x54,
- 0x68,0x65,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x73,0x20,0x61,0x72,0x65,0x20,0x64,
- 0x65,0x66,0x69,0x6e,0x65,0x64,0x20,0x69,0x6e,0x20,0x79,0x6f,0x75,0x72,0x20,0x74,
- 0x68,0x65,0x6d,0x65,0x2f,0x65,0x66,0x66,0x65,0x63,0x74,0x73,0x2f,0x65,0x66,0x66,
- 0x65,0x63,0x74,0x73,0x2e,0x69,0x6e,0x69,0x2e,0x20,0x59,0x6f,0x75,0x72,0x20,0x63,
- 0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x20,0x63,0x61,0x6e,0x20,0x64,0x65,0x66,
- 0x69,0x6e,0x65,0x20,0x63,0x75,0x73,0x74,0x6f,0x6d,0x20,0x65,0x66,0x66,0x65,0x63,
- 0x74,0x73,0x20,0x62,0x79,0xa,0x63,0x68,0x61,0x72,0x2e,0x69,0x6e,0x69,0x20,0x5b,
- 0x4f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x5d,0x20,0x63,0x61,0x74,0x65,0x67,0x6f,0x72,
- 0x79,0x2c,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x73,0x20,0x3d,0x20,0x27,0x6d,0x69,
- 0x73,0x63,0x6e,0x61,0x6d,0x65,0x27,0x20,0x77,0x68,0x65,0x72,0x65,0x20,0x69,0x74,
- 0x20,0x72,0x65,0x66,0x65,0x72,0x65,0x73,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x63,
- 0x2f,0x3c,0x6d,0x69,0x73,0x63,0x6e,0x61,0x6d,0x65,0x3e,0x2f,0x65,0x66,0x66,0x65,
- 0x63,0x74,0x73,0x2e,0x69,0x6e,0x69,0x20,0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20,
- 0x74,0x68,0x65,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x73,0x2e,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x10,
- 0x0,0x45,0x0,0x6c,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x72,0x0,0x2e,0x0,0x2e,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x68,0x6f,0x6f,0x73,0x65,
- 0x2e,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,
- 0x1,0x3,0x0,0x0,0x0,0xce,0x0,0x43,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x72,
- 0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x70,
- 0x0,0x65,0x0,0x72,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x63,0x0,0x69,
- 0x0,0xf3,0x0,0x6e,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,
- 0x0,0x76,0x0,0x69,0x0,0x73,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,
- 0x0,0x61,0x0,0x72,0x0,0x2f,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x74,0x0,0x61,
- 0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6e,
- 0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x2e,0x0,0xa,0x0,0x53,0x0,0x65,0x0,0x20,
- 0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x75,
- 0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0xe1,0x0,0x20,0x0,0x73,0x0,0x69,
- 0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x79,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x6d,
- 0x0,0x62,0x0,0x69,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,
- 0x0,0x67,0x0,0x75,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x61,0x0,0x64,0x0,0x6f,
- 0x0,0x73,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x60,0x43,0x6c,
- 0x6f,0x73,0x65,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,
- 0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x2f,0x65,0x64,0x69,0x74,0x69,0x6e,0x67,
- 0x20,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x2e,0xa,0x59,0x6f,0x75,0x20,0x77,0x69,
- 0x6c,0x6c,0x20,0x62,0x65,0x20,0x70,0x72,0x6f,0x6d,0x70,0x74,0x65,0x64,0x20,0x69,
- 0x66,0x20,0x74,0x68,0x65,0x72,0x65,0x27,0x73,0x20,0x61,0x6e,0x79,0x20,0x75,0x6e,
- 0x73,0x61,0x76,0x65,0x64,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x73,0x2e,0x7,0x0,
- 0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,
- 0x0,0x3a,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x65,
- 0x0,0x72,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x20,
- 0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x74,0x0,0x65,
- 0x0,0x67,0x0,0x6f,0x0,0x72,0x0,0xed,0x0,0x61,0x0,0x73,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x17,0x43,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x20,0x41,
- 0x6c,0x6c,0x20,0x43,0x61,0x74,0x65,0x67,0x6f,0x72,0x69,0x65,0x73,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0x80,0x0,0x4c,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x64,0x0,
- 0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x63,0x0,
- 0x74,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x20,0x0,
- 0x67,0x0,0x6c,0x0,0x6f,0x0,0x62,0x0,0x61,0x0,0x6c,0x0,0x2e,0x0,0x20,0x0,
- 0x48,0x0,0x61,0x0,0x67,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6c,0x0,0x69,0x0,
- 0x63,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x63,0x0,
- 0x61,0x0,0x6d,0x0,0x62,0x0,0x69,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x61,0x0,
- 0x20,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,
- 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x37,0x43,0x75,0x72,0x72,0x65,
- 0x6e,0x74,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x69,0x73,0x20,0x67,
- 0x6c,0x6f,0x62,0x61,0x6c,0x2e,0x20,0x43,0x6c,0x69,0x63,0x6b,0x20,0x74,0x6f,0x20,
- 0x73,0x77,0x69,0x74,0x63,0x68,0x20,0x74,0x6f,0x20,0x70,0x72,0x69,0x76,0x61,0x74,
- 0x65,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,
- 0x1,0x3,0x0,0x0,0x0,0x80,0x0,0x4c,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x76,
- 0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x20,
- 0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x65,
- 0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x61,0x0,0x64,
- 0x0,0x61,0x0,0x2e,0x0,0x20,0x0,0x48,0x0,0x61,0x0,0x67,0x0,0x61,0x0,0x20,
- 0x0,0x63,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,
- 0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x6d,0x0,0x62,0x0,0x69,0x0,0x61,
- 0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x62,
- 0x0,0x61,0x0,0x6c,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x37,
- 0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,
- 0x20,0x69,0x73,0x20,0x70,0x72,0x69,0x76,0x61,0x74,0x65,0x2e,0x20,0x43,0x6c,0x69,
- 0x63,0x6b,0x20,0x74,0x6f,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x20,0x74,0x6f,0x20,
- 0x67,0x6c,0x6f,0x62,0x61,0x6c,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0xa1,0x0,0x47,0x0,
- 0x72,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,
- 0x73,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,
- 0x64,0x0,0x6f,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,
- 0x75,0x73,0x74,0x6f,0x6d,0x20,0x53,0x68,0x6f,0x75,0x74,0x21,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x38,
- 0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x75,0x0,0x79,
- 0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x72,
- 0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x61,
- 0x0,0x6c,0x0,0x75,0x0,0x64,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x18,0x44,0x65,0x63,0x72,0x65,0x61,0x73,0x65,0x20,0x74,0x68,0x65,0x20,0x68,
- 0x65,0x61,0x6c,0x74,0x68,0x20,0x62,0x61,0x72,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,
- 0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x50,
- 0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6d,
- 0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x64,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x7,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,
- 0x44,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x75,0x0,0x79,0x0,0x65,0x0,
- 0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x76,0x0,
- 0x69,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x44,0x65,0x73,0x74,0x72,0x6f,0x79,0x20,0x74,
- 0x68,0x69,0x73,0x20,0x70,0x69,0x65,0x63,0x65,0x20,0x6f,0x66,0x20,0x65,0x76,0x69,
- 0x64,0x65,0x6e,0x63,0x65,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,
- 0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x96,0x0,0x4d,0x0,0x6f,0x0,0x73,0x0,
- 0x74,0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6d,0x0,
- 0x62,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,
- 0x73,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,
- 0x64,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,
- 0x20,0x0,0x74,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x6c,0x0,
- 0x6f,0x0,0x73,0x0,0x20,0x0,0x75,0x0,0x73,0x0,0x75,0x0,0x61,0x0,0x72,0x0,
- 0x69,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x75,0x0,0x61,0x0,0x6e,0x0,
- 0x64,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe9,0x0,0x20,0x0,
- 0x6d,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x2e,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x38,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,
- 0x20,0x63,0x75,0x73,0x74,0x6f,0x6d,0x69,0x7a,0x65,0x64,0x20,0x73,0x68,0x6f,0x77,
- 0x6e,0x61,0x6d,0x65,0x73,0x20,0x66,0x6f,0x72,0x20,0x61,0x6c,0x6c,0x20,0x75,0x73,
- 0x65,0x72,0x73,0x20,0x77,0x68,0x65,0x6e,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,
- 0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,
- 0x3,0x0,0x0,0x0,0x7e,0x0,0x4d,0x0,0x75,0x0,0x65,0x0,0x73,0x0,0x74,0x0,
- 0x72,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,
- 0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0,
- 0x61,0x0,0x72,0x0,0x70,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x73,0x0,0x20,0x0,
- 0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x63,0x0,
- 0x74,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x71,0x0,0x75,0x0,
- 0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x61,0x0,0x20,0x0,
- 0x73,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,
- 0x72,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x37,0x44,0x69,0x73,
- 0x70,0x6c,0x61,0x79,0x20,0x74,0x68,0x65,0x20,0x6c,0x69,0x73,0x74,0x20,0x6f,0x66,
- 0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x20,0x66,0x6f,0x6c,0x64,0x65,
- 0x72,0x73,0x20,0x79,0x6f,0x75,0x20,0x77,0x69,0x73,0x68,0x20,0x74,0x6f,0x20,0x6d,
- 0x75,0x74,0x65,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x5c,0x0,0x4d,0x0,0x75,0x0,0x65,0x0,0x73,
- 0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6c,
- 0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,
- 0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6a,
- 0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,
- 0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x6a,0x0,0x61,
- 0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2c,0x44,0x69,
- 0x73,0x70,0x6c,0x61,0x79,0x20,0x74,0x68,0x65,0x20,0x6c,0x69,0x73,0x74,0x20,0x6f,
- 0x66,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x73,0x20,0x74,0x6f,0x20,
- 0x70,0x61,0x69,0x72,0x20,0x77,0x69,0x74,0x68,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,
- 0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xfc,0x0,0x4e,
- 0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x75,0x0,0x63,0x0,0x68,
- 0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x64,
- 0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,
- 0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x6e,
- 0x0,0x20,0x0,0x63,0x0,0x75,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,
- 0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe9,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x72,
- 0x0,0x63,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x65,0x0,0x76,
- 0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x71,
- 0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x70,0x0,0x72,0x0,0x6f,
- 0x0,0x64,0x0,0x75,0x0,0x7a,0x0,0x63,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x73,
- 0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x6f,
- 0x0,0x20,0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x6e,
- 0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x74,
- 0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0,0x65,
- 0x0,0x6e,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x6e,
- 0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x71,0x44,0x6f,0x20,0x6e,0x6f,0x74,0x20,0x6c,0x69,0x73,0x74,0x65,
- 0x6e,0x20,0x74,0x6f,0x20,0x6d,0x6f,0x64,0x20,0x63,0x61,0x6c,0x6c,0x73,0x20,0x77,
- 0x68,0x65,0x6e,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2c,0x20,0x70,0x72,0x65,
- 0x76,0x65,0x6e,0x74,0x69,0x6e,0x67,0x20,0x74,0x68,0x65,0x6d,0x20,0x66,0x72,0x6f,
- 0x6d,0x20,0x70,0x6c,0x61,0x79,0x69,0x6e,0x67,0x20,0x73,0x6f,0x75,0x6e,0x64,0x73,
- 0x20,0x6f,0x72,0x20,0x66,0x6f,0x63,0x75,0x73,0x69,0x6e,0x67,0x20,0x61,0x74,0x74,
- 0x65,0x6e,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x6e,0x20,0x74,0x68,0x65,0x20,0x77,0x69,
- 0x6e,0x64,0x6f,0x77,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,
- 0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0xbf,0x0,0x51,0x0,0x75,0x0,
- 0x69,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x67,0x0,0x75,0x0,
- 0x61,0x0,0x72,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x74,0x0,0x75,0x0,
- 0x73,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x6d,0x0,0x62,0x0,0x69,0x0,0x6f,0x0,
- 0x73,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x44,0x6f,0x20,
- 0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65,
- 0x20,0x79,0x6f,0x75,0x72,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x73,0x3f,0x7,0x0,
- 0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,
- 0x0,0x3a,0x0,0xbf,0x0,0x44,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x61,0x0,0x20,
- 0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x76,0x0,0x61,
- 0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x61,
- 0x0,0x6d,0x0,0x62,0x0,0x69,0x0,0x6f,0x0,0x73,0x0,0x3f,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x21,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x69,0x73,
- 0x68,0x20,0x74,0x6f,0x20,0x6b,0x65,0x65,0x70,0x20,0x79,0x6f,0x75,0x72,0x20,0x63,
- 0x68,0x61,0x6e,0x67,0x65,0x73,0x3f,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x45,0x0,0x72,0x0,
- 0x72,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x45,
- 0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x40,0x0,0x4c,0x0,0x61,0x0,0x20,0x0,0x65,
- 0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,
- 0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x64,0x0,0x6f,
- 0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x63,
- 0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x1b,0x45,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x68,0x61,0x73,0x20,0x62,
- 0x65,0x65,0x6e,0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x2e,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0x3a,0x0,0x45,0x0,0x78,0x0,0x70,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x69,0x0,
- 0x72,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x20,0x0,
- 0x6c,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x74,0x0,0x65,0x0,
- 0x67,0x0,0x6f,0x0,0x72,0x0,0xed,0x0,0x61,0x0,0x73,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x15,0x45,0x78,0x70,0x61,0x6e,0x64,0x20,0x41,0x6c,0x6c,0x20,
- 0x43,0x61,0x74,0x65,0x67,0x6f,0x72,0x69,0x65,0x73,0x7,0x0,0x0,0x0,0x9,0x43,
- 0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x46,
- 0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x73,0x0,0x65,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x46,0x61,0x64,0x65,0x20,0x49,0x6e,0x7,
- 0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,
- 0x0,0x0,0x26,0x0,0x44,0x0,0x65,0x0,0x73,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,
- 0x65,0x0,0x63,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x41,0x0,0x6e,0x0,0x74,0x0,
- 0x65,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x11,0x46,0x61,0x64,0x65,0x20,0x4f,0x75,0x74,0x20,0x50,0x72,0x65,0x76,
- 0x69,0x6f,0x75,0x73,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0xff,0xff,0xff,0xff,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x4,0x46,0x6c,0x69,0x70,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x47,0x0,0x65,0x0,0x6e,
- 0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x70,
- 0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6a,0x0,0x65,
- 0x0,0x73,0x0,0x3a,0x0,0xa,0x0,0x25,0x0,0x31,0x0,0x2f,0x0,0x25,0x0,0x32,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x47,0x65,0x6e,0x65,0x72,0x61,
- 0x74,0x69,0x6e,0x67,0x20,0x63,0x68,0x61,0x72,0x73,0x3a,0xa,0x25,0x31,0x2f,0x25,
- 0x32,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,
- 0x3,0x0,0x0,0x0,0xe,0x0,0x47,0x0,0x75,0x0,0x61,0x0,0x72,0x0,0x64,0x0,
- 0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x47,0x75,0x61,
- 0x72,0x64,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,
- 0x1,0x3,0x0,0x0,0x0,0x14,0x0,0xa1,0x0,0x43,0x0,0x75,0x0,0x6c,0x0,0x70,
- 0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x7,0x47,0x75,0x69,0x6c,0x74,0x79,0x21,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x18,0x0,
- 0xa1,0x0,0x55,0x0,0x6e,0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,
- 0x6e,0x0,0x74,0x0,0x6f,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x8,0x48,0x6f,0x6c,0x64,0x20,0x49,0x74,0x21,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,
- 0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xe6,0x0,0x53,0x0,
- 0x69,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x72,0x0,
- 0x63,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x6e,0x0,
- 0x69,0x0,0x6d,0x0,0x2c,0x0,0x20,0x0,0x6d,0x0,0x75,0x0,0x65,0x0,0x73,0x0,
- 0x74,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x74,0x0,
- 0x65,0x0,0x78,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,
- 0x65,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0,
- 0x69,0x0,0x6e,0x0,0x6d,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x61,0x0,0x74,0x0,
- 0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,
- 0x69,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x20,0x0,
- 0x6c,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,
- 0x63,0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0,
- 0x72,0x0,0x65,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x64,0x0,0x75,0x0,0x63,0x0,
- 0x65,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x74,0x0,
- 0xe1,0x0,0x6e,0x0,0x65,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,
- 0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5e,0x49,0x66,0x20,
- 0x70,0x72,0x65,0x61,0x6e,0x69,0x6d,0x20,0x69,0x73,0x20,0x63,0x68,0x65,0x63,0x6b,
- 0x65,0x64,0x2c,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x74,0x68,0x65,0x20,
- 0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x65,0x78,0x74,0x20,0x69,0x6d,0x6d,0x65,0x64,
- 0x69,0x61,0x74,0x65,0x6c,0x79,0x20,0x61,0x73,0x20,0x74,0x68,0x65,0x20,0x61,0x6e,
- 0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x20,0x70,0x6c,0x61,0x79,0x73,0x20,0x63,0x6f,
- 0x6e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x6c,0x79,0x2e,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x22,0x0,
- 0x49,0x0,0x6d,0x0,0xe1,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,
- 0x20,0x0,0x28,0x0,0x2a,0x0,0x20,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,0x0,
- 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x49,0x6d,0x61,0x67,0x65,
- 0x73,0x20,0x28,0x2a,0x2e,0x70,0x6e,0x67,0x29,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,
- 0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0xff,0xff,0xff,0xff,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x49,0x6d,0x6d,0x65,0x64,0x69,0x61,0x74,0x65,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0x34,0x0,0x41,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,
- 0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x72,
- 0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x61,
- 0x0,0x6c,0x0,0x75,0x0,0x64,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x18,0x49,0x6e,0x63,0x72,0x65,0x61,0x73,0x65,0x20,0x74,0x68,0x65,0x20,0x68,
- 0x65,0x61,0x6c,0x74,0x68,0x20,0x62,0x61,0x72,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,
- 0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x41,
- 0x0,0x72,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x73,0x0,0x20,
- 0x0,0x49,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x2a,0x0,0x2e,0x0,0x69,
- 0x0,0x6e,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,
- 0x49,0x6e,0x69,0x20,0x46,0x69,0x6c,0x65,0x73,0x20,0x28,0x2a,0x2e,0x69,0x6e,0x69,
- 0x29,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,
- 0x3,0x0,0x0,0x0,0xec,0x0,0x4c,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x65,0x0,
- 0x72,0x0,0x6d,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,
- 0x63,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,
- 0x65,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,
- 0x20,0x0,0x63,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x63,0x0,
- 0x75,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x73,0x0,
- 0x74,0x0,0xe1,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,
- 0x69,0x0,0x74,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x2e,0x0,0xa,0x0,0x28,0x0,
- 0xa1,0x0,0x50,0x0,0x75,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,
- 0x63,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,
- 0x61,0x0,0x72,0x0,0x20,0x0,0x74,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x70,0x0,
- 0x72,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,
- 0x69,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6c,0x0,
- 0x61,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,
- 0x75,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x21,0x0,
- 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5a,0x4c,0x65,0x74,0x73,0x20,
- 0x79,0x6f,0x75,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x20,0x63,0x61,0x73,0x65,
- 0x20,0x61,0x6c,0x65,0x72,0x74,0x73,0x20,0x77,0x68,0x65,0x6e,0x20,0x65,0x6e,0x61,
- 0x62,0x6c,0x65,0x64,0x2e,0xa,0x28,0x59,0x6f,0x75,0x20,0x63,0x61,0x6e,0x20,0x73,
- 0x65,0x74,0x20,0x79,0x6f,0x75,0x72,0x20,0x70,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,
- 0x63,0x65,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x53,0x65,0x74,0x74,0x69,
- 0x6e,0x67,0x73,0x21,0x29,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,
- 0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x48,0x0,0x43,0x0,0x61,0x0,0x72,0x0,
- 0x67,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x64,0x0,
- 0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,
- 0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x68,0x0,
- 0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x2e,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,
- 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x20,0x4c,0x6f,0x61,0x64,0x20,
- 0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x66,0x72,0x6f,0x6d,0x20,0x61,0x6e,
- 0x20,0x2e,0x69,0x6e,0x69,0x20,0x66,0x69,0x6c,0x65,0x2e,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0xff,0xff,0xff,0xff,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4d,0x61,0x73,0x74,0x65,0x72,0x7,
- 0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,
- 0x0,0x0,0xe,0x0,0x4d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x61,0x0,0x6a,0x0,
- 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x65,0x73,0x73,0x61,
- 0x67,0x65,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,
- 0x1,0x3,0x0,0x0,0x0,0x6e,0x0,0x52,0x0,0x65,0x0,0x66,0x0,0x6c,0x0,0x65,
- 0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x67,
- 0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,
- 0x0,0x20,0x0,0x74,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x73,
- 0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x75,
- 0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,
- 0x0,0xe9,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x61,0x0,0x64,
- 0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2c,0x4d,0x69,
- 0x72,0x72,0x6f,0x72,0x20,0x79,0x6f,0x75,0x72,0x20,0x63,0x68,0x61,0x72,0x61,0x63,
- 0x74,0x65,0x72,0x27,0x73,0x20,0x65,0x6d,0x6f,0x74,0x65,0x73,0x20,0x77,0x68,0x65,
- 0x6e,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,
- 0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0xff,0xff,0xff,0xff,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x4d,0x75,0x73,0x69,0x63,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0xc,0x0,0x4e,0x0,0x6f,0x0,0x6d,0x0,0x62,0x0,0x72,0x0,0x65,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e,0x61,0x6d,0x65,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x4a,0x0,
- 0x4e,0x0,0x6f,0x0,0x6d,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x3a,0x0,0x20,0x0,
- 0x25,0x0,0x31,0x0,0xa,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,
- 0x6e,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x32,0x0,0xa,0x0,0x44,0x0,0x65,0x0,
- 0x73,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,
- 0x6e,0x0,0x3a,0x0,0xa,0x0,0x25,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x22,0x4e,0x61,0x6d,0x65,0x3a,0x20,0x25,0x31,0xa,0x49,0x6d,0x61,0x67,
- 0x65,0x3a,0x20,0x25,0x32,0xa,0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,
- 0x6e,0x3a,0xa,0x25,0x33,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,
- 0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x4c,0x0,0x4e,0x0,0x61,0x0,0x76,0x0,
- 0x65,0x0,0x67,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x25,0x0,
- 0x31,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x65,0x0,
- 0x6c,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x63,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,
- 0x6e,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,
- 0x43,0x0,0x4d,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x4e,
- 0x61,0x76,0x69,0x67,0x61,0x74,0x65,0x20,0x74,0x6f,0x20,0x25,0x31,0x20,0x66,0x6f,
- 0x72,0x20,0x74,0x68,0x65,0x20,0x43,0x4d,0x20,0x64,0x6f,0x63,0x2e,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0x8,0x0,0x4e,0x0,0x61,0x0,0x64,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x4,0x4e,0x6f,0x6e,0x65,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0xa1,0x0,0x50,0x0,
- 0x72,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x21,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x4f,0x62,0x6a,0x65,0x63,0x74,0x69,
- 0x6f,0x6e,0x21,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0xa1,0x0,0x55,0x0,0x70,0x0,0x73,0x0,
- 0x2c,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x73,0x0,0x20,0x0,
- 0x73,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,
- 0x64,0x0,0x6f,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4f,
- 0x6f,0x70,0x73,0x2c,0x20,0x79,0x6f,0x75,0x27,0x72,0x65,0x20,0x6d,0x75,0x74,0x65,
- 0x64,0x21,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,
- 0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x41,0x0,0x62,0x0,0x72,0x0,0x69,0x0,0x72,
- 0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x76,0x0,0x65,
- 0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x6f,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x20,0x49,0x6e,0x76,0x65,0x6e,
- 0x74,0x6f,0x72,0x79,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,
- 0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0xf1,0x0,0x61,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x8,0x50,0x61,0x73,0x73,0x77,0x6f,0x72,0x64,0x7,0x0,
- 0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0xff,0xff,
- 0xff,0xff,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x50,0x61,0x73,0x73,
- 0x77,0x6f,0x72,0x64,0x65,0x64,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x52,0x0,0x65,0x0,0x70,
- 0x0,0x72,0x0,0x6f,0x0,0x64,0x0,0x75,0x0,0x63,0x0,0x69,0x0,0x72,0x0,0x20,
- 0x0,0x63,0x0,0x61,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x20,
- 0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x69,
- 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x50,0x6c,0x61,0x79,
- 0x20,0x52,0x61,0x6e,0x64,0x6f,0x6d,0x20,0x53,0x6f,0x6e,0x67,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xbe,
- 0x0,0x52,0x0,0x65,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x64,0x0,0x75,0x0,0x7a,
- 0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x61,
- 0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x6e,
- 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x73,
- 0x0,0x6f,0x0,0x6c,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,
- 0x0,0x61,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x67,0x0,0xfa,
- 0x0,0x6e,0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x66,
- 0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x6f,
- 0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x6f,
- 0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x75,0x0,0x61,0x0,0x6e,0x0,0x64,
- 0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe9,0x0,0x20,0x0,0x6d,
- 0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x2e,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x42,0x50,0x6c,0x61,0x79,0x20,0x61,0x20,0x73,
- 0x69,0x6e,0x67,0x6c,0x65,0x2d,0x73,0x68,0x6f,0x74,0x20,0x61,0x6e,0x69,0x6d,0x61,
- 0x74,0x69,0x6f,0x6e,0x20,0x61,0x73,0x20,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x20,
- 0x62,0x79,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x6f,0x74,0x65,0x20,0x77,0x68,0x65,
- 0x6e,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,
- 0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xee,0x0,0x52,
- 0x0,0x65,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x64,0x0,0x75,0x0,0x7a,0x0,0x63,
- 0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x64,0x0,0x6f,
- 0x0,0x20,0x0,0x79,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x61,
- 0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,
- 0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x63,
- 0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6c,
- 0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x6e,
- 0x0,0x61,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0xe1,0x0,0x66,0x0,0x69,0x0,0x63,
- 0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,
- 0x0,0x73,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x74,
- 0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x61,0x0,0x6a,
- 0x0,0x65,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x61,0x0,0x64,
- 0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x75,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,
- 0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe9,0x0,0x20,0x0,0x6d,0x0,0x61,
- 0x0,0x72,0x0,0x63,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x5d,0x50,0x6c,0x61,0x79,0x20,0x72,0x65,0x61,0x6c,0x69,
- 0x7a,0x61,0x74,0x69,0x6f,0x6e,0x20,0x73,0x6f,0x75,0x6e,0x64,0x20,0x61,0x6e,0x64,
- 0x20,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x20,0x69,0x6e,0x20,0x74,0x68,
- 0x65,0x20,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x20,0x6f,0x6e,0x20,0x74,0x68,
- 0x65,0x20,0x6e,0x65,0x78,0x74,0x20,0x73,0x70,0x6f,0x6b,0x65,0x6e,0x20,0x6d,0x65,
- 0x73,0x73,0x61,0x67,0x65,0x20,0x77,0x68,0x65,0x6e,0x20,0x63,0x68,0x65,0x63,0x6b,
- 0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0xff,0xff,0xff,0xff,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x3,0x50,0x72,0x65,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0xff,0xff,0xff,0xff,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x7,0x50,0x72,0x65,0x61,0x6e,0x69,0x6d,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,
- 0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x7a,0x0,0x50,0x0,
- 0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,
- 0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x76,0x0,0x69,0x0,
- 0x64,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x61,0x0,
- 0x20,0x0,0x74,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x65,0x0,
- 0x6e,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0xf3,0x0,
- 0x78,0x0,0x69,0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,
- 0x73,0x0,0x61,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x62,0x0,
- 0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x46,0x50,0x72,0x65,0x73,0x65,0x6e,0x74,0x20,0x74,0x68,0x69,0x73,0x20,0x70,0x69,
- 0x65,0x63,0x65,0x20,0x6f,0x66,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,
- 0x74,0x6f,0x20,0x65,0x76,0x65,0x72,0x79,0x6f,0x6e,0x65,0x20,0x6f,0x6e,0x20,0x79,
- 0x6f,0x75,0x72,0x20,0x6e,0x65,0x78,0x74,0x20,0x73,0x70,0x6f,0x6b,0x65,0x6e,0x20,
- 0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x52,0x0,0x61,0x0,
- 0x7a,0x0,0xf3,0x0,0x6e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x7,0x52,0x65,0x61,0x73,0x6f,0x6e,0x3a,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,
- 0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xaa,0x0,0x41,0x0,0x63,
- 0x0,0x74,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x20,
- 0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x20,
- 0x0,0x79,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x20,
- 0x0,0x6c,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6d,
- 0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,
- 0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,
- 0x0,0x72,0x0,0x66,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,
- 0x0,0x75,0x0,0x73,0x0,0x75,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x20,
- 0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,
- 0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x64,
- 0x0,0x61,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3d,
- 0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x74,0x68,0x65,0x20,0x74,0x68,0x65,0x6d,
- 0x65,0x20,0x61,0x6e,0x64,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x61,0x6c,0x6c,
- 0x20,0x6f,0x66,0x20,0x74,0x68,0x65,0x20,0x75,0x69,0x20,0x65,0x6c,0x65,0x6d,0x65,
- 0x6e,0x74,0x73,0x20,0x74,0x6f,0x20,0x6d,0x61,0x74,0x63,0x68,0x2e,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0xff,0xff,0xff,
- 0xff,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x52,0x65,0x6c,0x6f,0x61,
- 0x64,0x20,0x74,0x68,0x65,0x6d,0x65,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xcc,0x0,0x45,0x0,0x6c,0x0,
- 0x69,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,
- 0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x73,0x0,0x77,0x0,0x61,0x0,0x70,0x0,
- 0x20,0x0,0x73,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x63,0x0,0x69,0x0,
- 0x6f,0x0,0x6e,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x63,0x0,
- 0x74,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,
- 0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,
- 0x6c,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x79,0x0,0x20,0x0,
- 0x72,0x0,0x65,0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x61,0x0,0x20,0x0,
- 0x61,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,
- 0x70,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,
- 0x63,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x72,0x0,
- 0x65,0x0,0x73,0x0,0x20,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x67,0x0,0x69,0x0,
- 0x6e,0x0,0x61,0x0,0x6c,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x60,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x63,0x75,0x72,0x72,
- 0x65,0x6e,0x74,0x6c,0x79,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x69,
- 0x6e,0x69,0x73,0x77,0x61,0x70,0x20,0x66,0x72,0x6f,0x6d,0x20,0x74,0x68,0x65,0x20,
- 0x6c,0x69,0x73,0x74,0x20,0x61,0x6e,0x64,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,
- 0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x20,
- 0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x20,0x66,0x6f,0x6c,0x64,0x65,0x72,
- 0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,
- 0x3,0x0,0x0,0x0,0x6e,0x0,0x53,0x0,0x6f,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,
- 0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x61,0x0,
- 0x74,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0,
- 0x64,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,
- 0x72,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x63,0x0,
- 0x74,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,
- 0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,
- 0x72,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x38,0x52,0x65,0x71,
- 0x75,0x65,0x73,0x74,0x20,0x74,0x68,0x65,0x20,0x61,0x74,0x74,0x65,0x6e,0x74,0x69,
- 0x6f,0x6e,0x20,0x6f,0x66,0x20,0x74,0x68,0x65,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,
- 0x74,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x27,0x73,0x20,0x6d,0x6f,0x64,0x65,0x72,
- 0x61,0x74,0x6f,0x72,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,
- 0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x52,0x0,0x65,0x0,0x67,0x0,
- 0x72,0x0,0x65,0x0,0x73,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x20,0x0,
- 0x6c,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x61,0x0,
- 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x76,0x0,
- 0x69,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x2e,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x1f,0x52,0x65,0x74,0x75,0x72,0x6e,0x20,0x62,0x61,
- 0x63,0x6b,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x72,0x76,0x65,0x72,
- 0x20,0x6c,0x69,0x73,0x74,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x47,0x0,0x75,0x0,0x61,
- 0x0,0x72,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x76,
- 0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x6f,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x61,0x76,0x65,0x20,0x49,0x6e,0x76,
- 0x65,0x6e,0x74,0x6f,0x72,0x79,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x92,0x0,0x47,0x0,0x75,0x0,0x61,
- 0x0,0x72,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x73,
- 0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x6d,0x0,0x62,0x0,0x69,0x0,0x6f,0x0,0x73,
- 0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,
- 0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x65,
- 0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x64,
- 0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x79,0x0,0x20,
- 0x0,0x65,0x0,0x6e,0x0,0x76,0x0,0x69,0x0,0x61,0x0,0x72,0x0,0x6c,0x0,0x6f,
- 0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,
- 0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x48,0x53,0x61,0x76,0x65,0x20,0x61,0x6e,0x79,0x20,0x63,
- 0x68,0x61,0x6e,0x67,0x65,0x73,0x20,0x6d,0x61,0x64,0x65,0x20,0x74,0x6f,0x20,0x74,
- 0x68,0x69,0x73,0x20,0x70,0x69,0x65,0x63,0x65,0x20,0x6f,0x66,0x20,0x65,0x76,0x69,
- 0x64,0x65,0x6e,0x63,0x65,0x20,0x61,0x6e,0x64,0x20,0x73,0x65,0x6e,0x64,0x20,0x74,
- 0x68,0x65,0x6d,0x20,0x74,0x6f,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x2e,0x7,0x0,
- 0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,
- 0x0,0x4a,0x0,0x47,0x0,0x75,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x61,0x0,0x72,
- 0x0,0x20,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x63,
- 0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x75,0x0,0x6e,
- 0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x76,0x0,0x6f,
- 0x0,0x20,0x0,0x2e,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x2e,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x1e,0x53,0x61,0x76,0x65,0x20,0x65,0x76,0x69,0x64,0x65,
- 0x6e,0x63,0x65,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x2e,0x69,0x6e,0x69,0x20,0x66,
- 0x69,0x6c,0x65,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x42,0x0,0x75,0x0,0x73,0x0,0x63,
- 0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53,0x65,
- 0x61,0x72,0x63,0x68,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x6a,0x0,0x53,0x0,0x65,0x0,0x6c,0x0,0x65,
- 0x0,0x63,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x75,
- 0x0,0x6e,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x6e,
- 0x0,0x61,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x20,
- 0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x64,
- 0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x70,
- 0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x6a,0x0,0x61,0x0,0x72,0x0,0x73,0x0,0x65,
- 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x29,0x53,0x65,0x6c,0x65,
- 0x63,0x74,0x20,0x61,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x20,0x79,
- 0x6f,0x75,0x20,0x77,0x69,0x73,0x68,0x20,0x74,0x6f,0x20,0x70,0x61,0x69,0x72,0x20,
- 0x77,0x69,0x74,0x68,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,
- 0x6f,0x6f,0x6d,0x1,0x3,0xff,0xff,0xff,0xff,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x6,0x53,0x65,0x72,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,
- 0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x2,0x6,0x0,0x45,0x0,
- 0x73,0x0,0x74,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x65,0x0,
- 0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x63,0x0,
- 0x74,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,
- 0x6e,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,
- 0x61,0x0,0x20,0x0,0x6a,0x0,0x75,0x0,0x67,0x0,0x61,0x0,0x72,0x0,0x20,0x0,
- 0x65,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x72,0x0,
- 0xf3,0x0,0x78,0x0,0x69,0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,0x27,0x0,0x50,0x0,
- 0x72,0x0,0x65,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x27,0x0,0x2e,0x0,
- 0x20,0x0,0x44,0x0,0x65,0x0,0x6a,0x0,0x61,0x0,0x72,0x0,0x6c,0x0,0x6f,0x0,
- 0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x64,0x0,
- 0x65,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,
- 0x64,0x0,0x6f,0x0,0x20,0x0,0x75,0x0,0x73,0x0,0x61,0x0,0x72,0x0,0xe1,0x0,
- 0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,
- 0x64,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x66,0x0,0x69,0x0,0x6e,0x0,
- 0x69,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,
- 0x65,0x0,0x6d,0x0,0x6f,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,
- 0x65,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x73,0x0,0x69,0x0,0x20,0x0,0x68,0x0,
- 0x61,0x0,0x79,0x0,0x29,0x0,0x2e,0x0,0xa,0x0,0x45,0x0,0x64,0x0,0x69,0x0,
- 0x74,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x69,0x0,
- 0x62,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x79,0x0,
- 0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,
- 0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x45,0x0,0x6e,0x0,0x74,0x0,
- 0x65,0x0,0x72,0x0,0x2c,0x0,0x20,0x0,0x5b,0x0,0x58,0x0,0x5d,0x0,0x20,0x0,
- 0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,
- 0x6d,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x2e,0x0,0x20,0x0,0x45,0x0,
- 0x73,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x67,0x0,
- 0x75,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,
- 0x65,0x0,0x6e,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x2f,0x0,
- 0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x65,0x0,
- 0x72,0x0,0x73,0x0,0x2f,0x0,0x3c,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,
- 0x6e,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x3e,0x0,0x2f,0x0,0x69,0x0,0x6e,0x0,
- 0x69,0x0,0x73,0x0,0x77,0x0,0x61,0x0,0x70,0x0,0x73,0x0,0x2e,0x0,0x69,0x0,
- 0x6e,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe1,0x53,0x65,0x74,
- 0x20,0x61,0x20,0x73,0x6f,0x75,0x6e,0x64,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x20,
- 0x74,0x6f,0x20,0x70,0x6c,0x61,0x79,0x20,0x6f,0x6e,0x20,0x79,0x6f,0x75,0x72,0x20,
- 0x6e,0x65,0x78,0x74,0x20,0x27,0x50,0x72,0x65,0x61,0x6e,0x69,0x6d,0x27,0x2e,0x20,
- 0x4c,0x65,0x61,0x76,0x69,0x6e,0x67,0x20,0x69,0x74,0x20,0x6f,0x6e,0x20,0x44,0x65,
- 0x66,0x61,0x75,0x6c,0x74,0x20,0x77,0x69,0x6c,0x6c,0x20,0x75,0x73,0x65,0x20,0x74,
- 0x68,0x65,0x20,0x65,0x6d,0x6f,0x74,0x65,0x2d,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,
- 0x20,0x73,0x6f,0x75,0x6e,0x64,0x20,0x28,0x69,0x66,0x20,0x61,0x6e,0x79,0x29,0x2e,
- 0xa,0x45,0x64,0x69,0x74,0x20,0x62,0x79,0x20,0x74,0x79,0x70,0x69,0x6e,0x67,0x20,
- 0x61,0x6e,0x64,0x20,0x70,0x72,0x65,0x73,0x73,0x69,0x6e,0x67,0x20,0x45,0x6e,0x74,
- 0x65,0x72,0x2c,0x20,0x5b,0x58,0x5d,0x20,0x74,0x6f,0x20,0x72,0x65,0x6d,0x6f,0x76,
- 0x65,0x2e,0x20,0x54,0x68,0x69,0x73,0x20,0x73,0x61,0x76,0x65,0x73,0x20,0x74,0x6f,
- 0x20,0x79,0x6f,0x75,0x72,0x20,0x62,0x61,0x73,0x65,0x2f,0x63,0x68,0x61,0x72,0x61,
- 0x63,0x74,0x65,0x72,0x73,0x2f,0x3c,0x63,0x68,0x61,0x72,0x6e,0x61,0x6d,0x65,0x3e,
- 0x2f,0x73,0x6f,0x75,0x6e,0x64,0x6c,0x69,0x73,0x74,0x2e,0x69,0x6e,0x69,0x7,0x0,
- 0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,
- 0x0,0x86,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,
- 0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x65,0x0,0x6d,
- 0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x74,
- 0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x6e,
- 0x0,0x61,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,
- 0x0,0x20,0x0,0x75,0x0,0x73,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6e,
- 0x0,0x20,0x0,0x74,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0xf3,0x0,0x78,
- 0x0,0x69,0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,
- 0x0,0x61,0x0,0x6a,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x38,0x53,0x65,0x74,0x20,0x79,0x6f,0x75,0x72,0x20,0x63,0x68,0x61,0x72,0x61,
- 0x63,0x74,0x65,0x72,0x27,0x73,0x20,0x65,0x6d,0x6f,0x74,0x65,0x20,0x74,0x6f,0x20,
- 0x70,0x6c,0x61,0x79,0x20,0x6f,0x6e,0x20,0x79,0x6f,0x75,0x72,0x20,0x6e,0x65,0x78,
- 0x74,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,
- 0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x62,0x0,0x45,
- 0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x65,
- 0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x6e,0x0,0x64,
- 0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x70,0x0,0x6c,0x0,0x65,0x0,0x6d,
- 0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x20,
- 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x65,
- 0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6a,0x0,0x65,0x0,0x2e,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x53,0x65,0x74,0x20,0x79,0x6f,
- 0x75,0x72,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x27,0x73,0x20,0x73,
- 0x75,0x70,0x70,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x61,0x72,0x79,0x20,0x62,0x61,0x63,
- 0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,
- 0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0xff,0xff,0xff,0xff,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,
- 0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0xff,0xff,
- 0xff,0xff,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x53,0x66,0x78,0x7,
- 0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,
- 0x0,0x0,0x8c,0x0,0x41,0x0,0x67,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,
- 0x6c,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,
- 0x6c,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,
- 0x6c,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x69,0x0,0x65,0x0,
- 0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,
- 0x61,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,
- 0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x75,0x0,0x61,0x0,0x6e,0x0,
- 0x64,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe9,0x0,0x20,0x0,
- 0x6d,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x2e,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x35,0x53,0x68,0x61,0x6b,0x65,0x20,0x74,
- 0x68,0x65,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x6f,0x6e,0x20,0x6e,0x65,0x78,
- 0x74,0x20,0x73,0x70,0x6f,0x6b,0x65,0x6e,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,
- 0x20,0x77,0x68,0x65,0x6e,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x2e,0x7,0x0,
- 0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0xff,0xff,
- 0xff,0xff,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x68,0x6f,0x77,
- 0x6e,0x61,0x6d,0x65,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0xff,0xff,0xff,0xff,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x9,0x53,0x68,0x6f,0x77,0x6e,0x61,0x6d,0x65,0x73,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x14,0x0,
- 0x45,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x61,0x0,0x64,0x0,
- 0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x53,0x70,0x65,
- 0x63,0x74,0x61,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x8c,0x0,0xa1,0x0,0x47,0x0,0x75,
- 0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x63,
- 0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0xe9,0x0,0x78,0x0,0x69,0x0,0x74,0x0,0x6f,
- 0x0,0x2c,0x0,0x20,0x0,0x70,0x0,0x75,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x20,
- 0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x65,
- 0x0,0x6c,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x63,0x0,0x20,0x0,0x79,0x0,0x20,
- 0x0,0x64,0x0,0x6f,0x0,0x63,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x6b,
- 0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x61,
- 0x0,0x72,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x69,
- 0x0,0x6e,0x0,0x69,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x36,
- 0x53,0x75,0x63,0x63,0x65,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x73,0x61,0x76,0x65,
- 0x64,0x2c,0x20,0x65,0x64,0x69,0x74,0x20,0x64,0x6f,0x63,0x20,0x61,0x6e,0x64,0x20,
- 0x63,0x6d,0x64,0x6f,0x63,0x20,0x6c,0x69,0x6e,0x6b,0x20,0x6f,0x6e,0x20,0x74,0x68,
- 0x65,0x20,0x69,0x6e,0x69,0x21,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x4c,0x0,0x43,0x0,0x61,0x0,0x6d,
- 0x0,0x62,0x0,0x69,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x74,
- 0x0,0x72,0x0,0x65,0x0,0x20,0x0,0xe1,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x73,
- 0x0,0x20,0x0,0x79,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x61,
- 0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0xfa,0x0,0x73,
- 0x0,0x69,0x0,0x63,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,
- 0x53,0x77,0x69,0x74,0x63,0x68,0x20,0x62,0x65,0x74,0x77,0x65,0x65,0x6e,0x20,0x41,
- 0x72,0x65,0x61,0x73,0x20,0x61,0x6e,0x64,0x20,0x4d,0x75,0x73,0x69,0x63,0x20,0x6c,
- 0x69,0x73,0x74,0x73,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,
- 0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x54,0x0,0x43,0x0,0x61,0x0,0x6d,0x0,0x62,
- 0x0,0x69,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x65,
- 0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,
- 0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x76,0x0,0x65,
- 0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x67,
- 0x0,0x6c,0x0,0x6f,0x0,0x62,0x0,0x61,0x0,0x6c,0x0,0x2e,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x24,0x53,0x77,0x69,0x74,0x63,0x68,0x20,0x65,0x76,0x69,
- 0x64,0x65,0x6e,0x63,0x65,0x20,0x74,0x6f,0x20,0x67,0x6c,0x6f,0x62,0x61,0x6c,0x20,
- 0x69,0x6e,0x76,0x65,0x6e,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,
- 0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x54,0x0,0x45,
- 0x0,0x6e,0x0,0x76,0x0,0x69,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x61,
- 0x0,0x20,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x63,
- 0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x69,0x0,0x6e,
- 0x0,0x76,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x6f,
- 0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x61,0x0,0x64,0x0,0x6f,
- 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x25,0x53,0x77,0x69,0x74,
- 0x63,0x68,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x74,0x6f,0x20,0x70,
- 0x72,0x69,0x76,0x61,0x74,0x65,0x20,0x69,0x6e,0x76,0x65,0x6e,0x74,0x6f,0x72,0x79,
- 0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,
- 0x3,0x0,0x0,0x0,0x16,0x0,0x53,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x72,0x0,
- 0x6f,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0xb,0x53,0x79,0x6e,0x63,0x68,0x72,0x6f,0x6e,0x69,0x7a,0x65,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0x14,0x0,0xa1,0x0,0x54,0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x20,
- 0x0,0x45,0x0,0x73,0x0,0x6f,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0xa,0x54,0x61,0x6b,0x65,0x20,0x54,0x68,0x61,0x74,0x21,0x7,0x0,0x0,0x0,
- 0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xc,
- 0x0,0x45,0x0,0x6e,0x0,0x20,0x0,0x75,0x0,0x73,0x0,0x6f,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x61,0x6b,0x65,0x6e,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x30,0x0,
- 0x45,0x0,0x6c,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x61,0x0,
- 0x6a,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0x75,0x0,
- 0x79,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x6f,0x0,0x2e,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x54,0x68,0x65,0x20,0x6d,0x65,0x73,
- 0x73,0x61,0x67,0x65,0x20,0x69,0x73,0x20,0x74,0x6f,0x6f,0x20,0x6c,0x6f,0x6e,0x67,
- 0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,
- 0x3,0x0,0x0,0x0,0x62,0x0,0x4c,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x76,0x0,
- 0x69,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x20,0x0,
- 0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x73,0x0,0x20,0x0,
- 0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,
- 0x64,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,
- 0x68,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x6d,0x0,0x62,0x0,0x69,0x0,
- 0x61,0x0,0x64,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x36,0x54,0x68,0x65,0x20,0x70,0x69,0x65,0x63,0x65,0x20,0x6f,0x66,0x20,0x65,0x76,
- 0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x79,0x6f,0x75,0x27,0x76,0x65,0x20,0x62,0x65,
- 0x65,0x6e,0x20,0x65,0x64,0x69,0x74,0x69,0x6e,0x67,0x20,0x68,0x61,0x73,0x20,0x63,
- 0x68,0x61,0x6e,0x67,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x8c,0x0,0x45,0x0,0x73,0x0,
- 0x74,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x72,0x0,
- 0x61,0x0,0x72,0x0,0xe1,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x61,0x0,
- 0x6e,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,
- 0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x76,0x0,
- 0x69,0x0,0x65,0x0,0x77,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,
- 0x74,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,
- 0x74,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,
- 0x73,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x69,0x0,
- 0x6f,0x0,0x6e,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x49,0x54,0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x64,0x69,0x73,0x70,0x6c,
- 0x61,0x79,0x20,0x74,0x68,0x65,0x20,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,
- 0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,
- 0x20,0x61,0x73,0x20,0x73,0x6f,0x6f,0x6e,0x20,0x61,0x73,0x20,0x69,0x74,0x20,0x69,
- 0x73,0x20,0x70,0x72,0x65,0x73,0x73,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,
- 0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x2,0x2,0x0,0x45,
- 0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x73,0x0,0x74,
- 0x0,0x72,0x0,0x61,0x0,0x72,0x0,0xe1,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,
- 0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0xf3,
- 0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,
- 0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x70,
- 0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x69,
- 0x0,0x7a,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x66,
- 0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6e,
- 0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x65,0x0,0x77,
- 0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x6e,
- 0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x20,
- 0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,
- 0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,
- 0x0,0x2e,0x0,0xa,0x0,0x50,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x68,
- 0x0,0x61,0x0,0x63,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x61,
- 0x0,0x2c,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,
- 0x0,0x70,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,
- 0x0,0x74,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6f,
- 0x0,0x6e,0x0,0x61,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x62,
- 0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x6e,
- 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x74,
- 0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6f,
- 0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x64,0x0,0x6f,
- 0x0,0x73,0x0,0x20,0x0,0x5b,0x0,0x77,0x0,0x65,0x0,0x62,0x0,0x70,0x0,0x2f,
- 0x0,0x61,0x0,0x70,0x0,0x6e,0x0,0x67,0x0,0x2f,0x0,0x67,0x0,0x69,0x0,0x66,
- 0x0,0x2f,0x0,0x70,0x0,0x6e,0x0,0x67,0x0,0x5d,0x0,0x2e,0x0,0x20,0x0,0x59,
- 0x0,0x20,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x73,
- 0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x61,
- 0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x20,
- 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x64,
- 0x0,0x6f,0x0,0x20,0x0,0x5b,0x0,0x77,0x0,0x61,0x0,0x76,0x0,0x2f,0x0,0x6f,
- 0x0,0x67,0x0,0x67,0x0,0x2f,0x0,0x6f,0x0,0x70,0x0,0x75,0x0,0x73,0x0,0x5d,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd6,0x54,0x68,0x69,0x73,0x20,0x77,
- 0x69,0x6c,0x6c,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x74,0x68,0x65,0x20,
- 0x63,0x75,0x73,0x74,0x6f,0x6d,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,
- 0x2d,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x20,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,
- 0x6f,0x6e,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x76,0x69,0x65,0x77,0x70,0x6f,
- 0x72,0x74,0x20,0x61,0x73,0x20,0x73,0x6f,0x6f,0x6e,0x20,0x61,0x73,0x20,0x69,0x74,
- 0x20,0x69,0x73,0x20,0x70,0x72,0x65,0x73,0x73,0x65,0x64,0x2e,0xa,0x54,0x6f,0x20,
- 0x6d,0x61,0x6b,0x65,0x20,0x6f,0x6e,0x65,0x2c,0x20,0x79,0x6f,0x75,0x72,0x20,0x63,
- 0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x27,0x73,0x20,0x66,0x6f,0x6c,0x64,0x65,
- 0x72,0x20,0x6d,0x75,0x73,0x74,0x20,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x20,0x63,
- 0x75,0x73,0x74,0x6f,0x6d,0x2e,0x5b,0x77,0x65,0x62,0x70,0x2f,0x61,0x70,0x6e,0x67,
- 0x2f,0x67,0x69,0x66,0x2f,0x70,0x6e,0x67,0x5d,0x20,0x61,0x6e,0x64,0x20,0x63,0x75,
- 0x73,0x74,0x6f,0x6d,0x2e,0x5b,0x77,0x61,0x76,0x2f,0x6f,0x67,0x67,0x2f,0x6f,0x70,
- 0x75,0x73,0x5d,0x20,0x73,0x6f,0x75,0x6e,0x64,0x20,0x65,0x66,0x66,0x65,0x63,0x74,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0x10,0x0,0x41,0x0,0x6c,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x6e,
- 0x0,0x64,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x54,0x6f,
- 0x20,0x62,0x65,0x68,0x69,0x6e,0x64,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x41,0x0,0x6c,0x0,
- 0x20,0x0,0x66,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x54,0x6f,0x20,0x66,0x72,0x6f,0x6e,0x74,0x7,
- 0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,
- 0x0,0x0,0x6a,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,
- 0x61,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x65,0x0,
- 0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x74,0x0,
- 0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,
- 0x76,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x79,0x0,0x20,0x0,
- 0x65,0x0,0x6c,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x74,0x0,0x20,0x0,
- 0x67,0x0,0x6c,0x0,0x6f,0x0,0x62,0x0,0x61,0x0,0x6c,0x0,0x2e,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x54,0x6f,0x67,0x67,0x6c,0x65,0x20,0x62,0x65,
- 0x74,0x77,0x65,0x65,0x6e,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x20,0x63,0x68,0x61,
- 0x74,0x20,0x61,0x6e,0x64,0x20,0x67,0x6c,0x6f,0x62,0x61,0x6c,0x20,0x41,0x4f,0x32,
- 0x20,0x63,0x68,0x61,0x74,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xbc,0x0,0xa1,0x0,0x44,0x0,0x65,
- 0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x73,
- 0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,
- 0x0,0x74,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,
- 0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x61,0x0,0x72,0x0,0x20,
- 0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x21,
- 0x0,0x20,0x0,0x53,0x0,0x6f,0x0,0x6c,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x65,
- 0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x75,
- 0x0,0x6e,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6d,0x0,0x62,0x0,0x72,0x0,0x65,
- 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x68,
- 0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x6e,
- 0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x69,
- 0x0,0xf3,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x51,
- 0x54,0x6f,0x6f,0x20,0x6d,0x61,0x6e,0x79,0x20,0x61,0x72,0x67,0x75,0x6d,0x65,0x6e,
- 0x74,0x73,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x61,0x20,0x63,0x61,0x73,
- 0x65,0x21,0x20,0x59,0x6f,0x75,0x20,0x6f,0x6e,0x6c,0x79,0x20,0x6e,0x65,0x65,0x64,
- 0x20,0x6f,0x6e,0x65,0x20,0x66,0x69,0x6c,0x65,0x6e,0x61,0x6d,0x65,0x2c,0x20,0x77,
- 0x69,0x74,0x68,0x6f,0x75,0x74,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,
- 0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,
- 0x3,0x0,0x0,0x1,0x2,0x0,0xa1,0x0,0x44,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,
- 0x73,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x61,0x0,
- 0x72,0x0,0x67,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,
- 0x73,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x73,0x0,
- 0x61,0x0,0x6c,0x0,0x76,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,
- 0x20,0x0,0x63,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x21,0x0,0x20,0x0,0x53,0x0,
- 0x6f,0x0,0x6c,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x63,0x0,0x65,0x0,
- 0x73,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,
- 0x6e,0x0,0x6f,0x0,0x6d,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x64,0x0,
- 0x65,0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x76,0x0,
- 0x6f,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x78,0x0,
- 0x74,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0,
- 0x79,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,
- 0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,
- 0x61,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x64,0x0,
- 0x65,0x0,0x6c,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x62,0x0,0x75,0x0,
- 0x6e,0x0,0x61,0x0,0x6c,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x67,0x54,0x6f,0x6f,0x20,0x6d,0x61,0x6e,0x79,0x20,0x61,0x72,0x67,0x75,0x6d,0x65,
- 0x6e,0x74,0x73,0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x61,0x20,0x63,0x61,
- 0x73,0x65,0x21,0x20,0x59,0x6f,0x75,0x20,0x6f,0x6e,0x6c,0x79,0x20,0x6e,0x65,0x65,
- 0x64,0x20,0x61,0x20,0x66,0x69,0x6c,0x65,0x6e,0x61,0x6d,0x65,0x20,0x77,0x69,0x74,
- 0x68,0x6f,0x75,0x74,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x20,0x61,
- 0x6e,0x64,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,
- 0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x21,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,
- 0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x54,0x0,0x54,0x0,0x72,
- 0x0,0x61,0x0,0x6e,0x0,0x73,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x72,
- 0x0,0x20,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x63,
- 0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x69,0x0,0x6e,
- 0x0,0x76,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x6f,
- 0x0,0x20,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x62,0x0,0x61,0x0,0x6c,0x0,0x2e,
- 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x26,0x54,0x72,0x61,0x6e,0x73,0x66,
- 0x65,0x72,0x20,0x65,0x76,0x69,0x64,0x65,0x6e,0x63,0x65,0x20,0x74,0x6f,0x20,0x67,
- 0x6c,0x6f,0x62,0x61,0x6c,0x20,0x69,0x6e,0x76,0x65,0x6e,0x74,0x6f,0x72,0x79,0x2e,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0x56,0x0,0x54,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x73,0x0,0x66,
- 0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x76,0x0,0x69,
- 0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x61,
- 0x0,0x6c,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x6e,0x0,0x74,
- 0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x69,
- 0x0,0x76,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,
- 0x0,0x0,0x0,0x27,0x54,0x72,0x61,0x6e,0x73,0x66,0x65,0x72,0x20,0x65,0x76,0x69,
- 0x64,0x65,0x6e,0x63,0x65,0x20,0x74,0x6f,0x20,0x70,0x72,0x69,0x76,0x61,0x74,0x65,
- 0x20,0x69,0x6e,0x76,0x65,0x6e,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x9,
- 0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0xff,0xff,0xff,0xff,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x55,0x4e,0x4b,0x4e,0x4f,0x57,0x4e,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0x90,0x0,0x43,0x0,0x75,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,
- 0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x73,
- 0x0,0x20,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x61,0x0,0x64,
- 0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x74,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x72,
- 0x0,0xf3,0x0,0x78,0x0,0x69,0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x65,
- 0x0,0x6e,0x0,0x73,0x0,0x61,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,
- 0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x6e,
- 0x0,0x61,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0xe1,
- 0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x69,0x0,0x74,
- 0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x47,0x57,0x68,
- 0x65,0x6e,0x20,0x74,0x68,0x69,0x73,0x20,0x69,0x73,0x20,0x74,0x75,0x72,0x6e,0x65,
- 0x64,0x20,0x6f,0x6e,0x2c,0x20,0x79,0x6f,0x75,0x72,0x20,0x6e,0x65,0x78,0x74,0x20,
- 0x69,0x6e,0x2d,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x20,0x6d,0x65,0x73,
- 0x73,0x61,0x67,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x61,0x20,0x73,
- 0x68,0x6f,0x75,0x74,0x21,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,
- 0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x74,0x0,0xa1,0x0,0x4e,0x0,0x6f,0x0,
- 0x20,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x20,0x0,
- 0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x70,0x0,
- 0x65,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x60,0x0,0x62,0x0,0x61,0x0,0x73,0x0,
- 0x65,0x0,0x2f,0x0,0x63,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x73,0x0,0x20,0x0,
- 0x2f,0x0,0x60,0x0,0x21,0x0,0x20,0x0,0x46,0x0,0x75,0x0,0x65,0x0,0x20,0x0,
- 0x63,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x70,0x0,
- 0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x2e,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x91,0x59,0x6f,0x75,0x20,0x64,0x6f,0x6e,0x27,0x74,
- 0x20,0x68,0x61,0x76,0x65,0x20,0x61,0x20,0x60,0x62,0x61,0x73,0x65,0x2f,0x63,0x61,
- 0x73,0x65,0x73,0x2f,0x60,0x20,0x66,0x6f,0x6c,0x64,0x65,0x72,0x21,0x20,0x49,0x74,
- 0x20,0x77,0x61,0x73,0x20,0x6a,0x75,0x73,0x74,0x20,0x6d,0x61,0x64,0x65,0x20,0x66,
- 0x6f,0x72,0x20,0x79,0x6f,0x75,0x2c,0x20,0x62,0x75,0x74,0x20,0x73,0x65,0x65,0x69,
- 0x6e,0x67,0x20,0x61,0x73,0x20,0x69,0x74,0x20,0x57,0x41,0x53,0x20,0x6a,0x75,0x73,
- 0x74,0x20,0x6d,0x61,0x64,0x65,0x20,0x66,0x6f,0x72,0x20,0x79,0x6f,0x75,0x2c,0x20,
- 0x69,0x74,0x27,0x73,0x20,0x6c,0x69,0x6b,0x65,0x6c,0x79,0x20,0x74,0x68,0x61,0x74,
- 0x20,0x79,0x6f,0x75,0x20,0x73,0x6f,0x6d,0x65,0x68,0x6f,0x77,0x20,0x64,0x65,0x6c,
- 0x65,0x74,0x65,0x64,0x20,0x69,0x74,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,
- 0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x1,0x16,0x0,0xa1,0x0,0x4e,
- 0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x73,
- 0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,
- 0x0,0x70,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x60,0x0,0x62,0x0,0x61,
- 0x0,0x73,0x0,0x65,0x0,0x2f,0x0,0x63,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x73,
- 0x0,0x20,0x0,0x2f,0x0,0x60,0x0,0x21,0x0,0x20,0x0,0x48,0x0,0x61,0x0,0x20,
- 0x0,0x73,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x72,0x0,0x65,
- 0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,
- 0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x2e,0x0,0x20,0x0,0x50,0x0,0x65,0x0,0x72,
- 0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x62,0x0,0x69,0x0,0x64,0x0,0x6f,
- 0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x6e,
- 0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x69,
- 0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,
- 0x0,0x70,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x2c,0x0,0x20,0x0,0x74,0x0,0x61,
- 0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x68,0x0,0x61,
- 0x0,0x62,0x0,0xed,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x73,
- 0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x67,0x0,0x75,0x0,0x61,0x0,0x72,0x0,0x64,
- 0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x68,0x0,0xed,
- 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xae,0x59,0x6f,0x75,0x20,
- 0x64,0x6f,0x6e,0x27,0x74,0x20,0x68,0x61,0x76,0x65,0x20,0x61,0x20,0x60,0x62,0x61,
- 0x73,0x65,0x2f,0x63,0x61,0x73,0x65,0x73,0x2f,0x60,0x20,0x66,0x6f,0x6c,0x64,0x65,
- 0x72,0x21,0x20,0x49,0x74,0x20,0x77,0x61,0x73,0x20,0x6a,0x75,0x73,0x74,0x20,0x6d,
- 0x61,0x64,0x65,0x20,0x66,0x6f,0x72,0x20,0x79,0x6f,0x75,0x2c,0x20,0x62,0x75,0x74,
- 0x20,0x73,0x65,0x65,0x69,0x6e,0x67,0x20,0x61,0x73,0x20,0x69,0x74,0x20,0x57,0x41,
- 0x53,0x20,0x6a,0x75,0x73,0x74,0x20,0x6d,0x61,0x64,0x65,0x20,0x66,0x6f,0x72,0x20,
- 0x79,0x6f,0x75,0x2c,0x20,0x69,0x74,0x27,0x73,0x20,0x6c,0x69,0x6b,0x65,0x6c,0x79,
- 0x20,0x74,0x68,0x65,0x20,0x63,0x61,0x73,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x79,
- 0x6f,0x75,0x27,0x72,0x65,0x20,0x6c,0x6f,0x6f,0x6b,0x69,0x6e,0x67,0x20,0x66,0x6f,
- 0x72,0x20,0x63,0x61,0x6e,0x27,0x74,0x20,0x62,0x65,0x20,0x66,0x6f,0x75,0x6e,0x64,
- 0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x72,0x65,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,
- 0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x48,
- 0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x20,
- 0x0,0x76,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x2e,0x8,0x0,
- 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x59,0x6f,0x75,0x20,0x68,0x61,0x76,0x65,
- 0x20,0x62,0x65,0x65,0x6e,0x20,0x62,0x61,0x6e,0x6e,0x65,0x64,0x2e,0x7,0x0,0x0,
- 0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,
- 0x3a,0x0,0x44,0x0,0x65,0x0,0x62,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x70,0x0,
- 0x72,0x0,0x6f,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,
- 0x6e,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,
- 0x72,0x0,0x61,0x0,0x7a,0x0,0xf3,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,
- 0x6,0x0,0x0,0x0,0x1a,0x59,0x6f,0x75,0x20,0x6d,0x75,0x73,0x74,0x20,0x70,0x72,
- 0x6f,0x76,0x69,0x64,0x65,0x20,0x61,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x2e,0x7,
- 0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,
- 0x0,0x1,0x6e,0x0,0xa1,0x0,0x44,0x0,0x65,0x0,0x62,0x0,0x65,0x0,0x20,0x0,
- 0x64,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x6e,0x0,
- 0x6f,0x0,0x6d,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,
- 0x20,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,
- 0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x61,0x0,
- 0x72,0x0,0x67,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x28,0x0,0x6e,0x0,0x6f,0x0,
- 0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x63,0x0,0x65,0x0,
- 0x73,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x74,0x0,
- 0x65,0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x29,0x0,0x21,0x0,
- 0x20,0x0,0x41,0x0,0x73,0x0,0x65,0x0,0x67,0x0,0xfa,0x0,0x72,0x0,0x65,0x0,
- 0x73,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x71,0x0,0x75,0x0,
- 0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe9,0x0,0x20,0x0,0x65,0x0,
- 0x6e,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,
- 0x70,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x60,0x0,0x62,0x0,0x61,0x0,
- 0x73,0x0,0x65,0x0,0x2f,0x0,0x63,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x73,0x0,
- 0x2f,0x0,0x60,0x0,0x20,0x0,0x79,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,
- 0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x67,0x0,
- 0x61,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,
- 0x6d,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,
- 0x72,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x2e,0x0,0xa,0x0,0x43,0x0,
- 0x61,0x0,0x73,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,
- 0x20,0x0,0x70,0x0,0x75,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0,
- 0x61,0x0,0x72,0x0,0x67,0x0,0x61,0x0,0x72,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,
- 0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xae,0x59,0x6f,0x75,0x20,0x6e,
- 0x65,0x65,0x64,0x20,0x74,0x6f,0x20,0x67,0x69,0x76,0x65,0x20,0x61,0x20,0x66,0x69,
- 0x6c,0x65,0x6e,0x61,0x6d,0x65,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x28,
- 0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x6e,0x65,
- 0x65,0x64,0x65,0x64,0x29,0x21,0x20,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,
- 0x20,0x74,0x68,0x61,0x74,0x20,0x69,0x74,0x20,0x69,0x73,0x20,0x69,0x6e,0x20,0x74,
- 0x68,0x65,0x20,0x60,0x62,0x61,0x73,0x65,0x2f,0x63,0x61,0x73,0x65,0x73,0x2f,0x60,
- 0x20,0x66,0x6f,0x6c,0x64,0x65,0x72,0x2c,0x20,0x61,0x6e,0x64,0x20,0x74,0x68,0x61,
- 0x74,0x20,0x69,0x74,0x20,0x69,0x73,0x20,0x61,0x20,0x63,0x6f,0x72,0x72,0x65,0x63,
- 0x74,0x6c,0x79,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x74,0x65,0x64,0x20,0x69,0x6e,
- 0x69,0x2e,0xa,0x43,0x61,0x73,0x65,0x73,0x20,0x79,0x6f,0x75,0x20,0x63,0x61,0x6e,
- 0x20,0x6c,0x6f,0x61,0x64,0x3a,0x20,0x25,0x31,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,
- 0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0xdc,0x0,0xa1,0x0,
- 0x44,0x0,0x65,0x0,0x62,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x72,0x0,
- 0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6d,0x0,0x62,0x0,
- 0x72,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x72,0x0,
- 0x63,0x0,0x68,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0,
- 0x72,0x0,0x61,0x0,0x20,0x0,0x67,0x0,0x75,0x0,0x61,0x0,0x72,0x0,0x64,0x0,
- 0x61,0x0,0x72,0x0,0x20,0x0,0x28,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,
- 0x65,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x69,0x0,
- 0x74,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x78,0x0,
- 0x74,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x29,0x0,
- 0x20,0x0,0x79,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x65,0x0,0x73,0x0,
- 0x74,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,
- 0x6c,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,
- 0x64,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x62,0x0,
- 0x75,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x54,0x59,0x6f,0x75,0x20,0x6e,0x65,0x65,0x64,0x20,0x74,0x6f,0x20,0x67,
- 0x69,0x76,0x65,0x20,0x61,0x20,0x66,0x69,0x6c,0x65,0x6e,0x61,0x6d,0x65,0x20,0x74,
- 0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x28,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,
- 0x6e,0x20,0x6e,0x6f,0x74,0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x29,0x20,0x61,0x6e,
- 0x64,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x20,
- 0x73,0x74,0x61,0x74,0x75,0x73,0x21,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,
- 0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x84,0x0,0x53,0x0,0x65,0x0,
- 0x20,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x63,0x0,
- 0x65,0x0,0x64,0x0,0x69,0x0,0xf3,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,
- 0x62,0x0,0x6f,0x0,0x74,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0,0x20,0x0,0x70,0x0,
- 0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x68,0x0,
- 0x61,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x72,0x0,
- 0x20,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x64,0x0,0x61,0x0,
- 0x73,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,
- 0x72,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x2e,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2d,0x59,0x6f,0x75,0x20,0x77,0x65,0x72,
- 0x65,0x20,0x67,0x72,0x61,0x6e,0x74,0x65,0x64,0x20,0x74,0x68,0x65,0x20,0x44,0x69,
- 0x73,0x61,0x62,0x6c,0x65,0x20,0x4d,0x6f,0x64,0x63,0x61,0x6c,0x6c,0x73,0x20,0x62,
- 0x75,0x74,0x74,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,
- 0x72,0x6f,0x6f,0x6d,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x53,0x0,0x75,0x0,0x20,
- 0x0,0x63,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x31,
- 0x0,0x22,0x0,0x20,0x0,0x66,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x61,
- 0x0,0x72,0x0,0x67,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x21,0x8,0x0,0x0,0x0,
- 0x0,0x6,0x0,0x0,0x0,0x1a,0x59,0x6f,0x75,0x72,0x20,0x63,0x61,0x73,0x65,0x20,
- 0x22,0x25,0x31,0x22,0x20,0x77,0x61,0x73,0x20,0x6c,0x6f,0x61,0x64,0x65,0x64,0x21,
- 0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,0x3,
- 0x0,0x0,0x0,0x32,0x0,0x68,0x0,0x61,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x70,
- 0x0,0x72,0x0,0x6f,0x0,0x64,0x0,0x75,0x0,0x63,0x0,0x69,0x0,0x64,0x0,0x6f,
- 0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x6e,0x0,0x63,
- 0x0,0x69,0x0,0xf3,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,
- 0x68,0x61,0x73,0x20,0x70,0x6c,0x61,0x79,0x65,0x64,0x20,0x61,0x20,0x73,0x6f,0x6e,
- 0x67,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,0x6d,0x1,
- 0x3,0x0,0x0,0x0,0x2e,0x0,0x68,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,
- 0x65,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,
- 0x20,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,
- 0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x68,0x61,0x73,
- 0x20,0x70,0x72,0x65,0x73,0x65,0x6e,0x74,0x65,0x64,0x20,0x65,0x76,0x69,0x64,0x65,
- 0x6e,0x63,0x65,0x7,0x0,0x0,0x0,0x9,0x43,0x6f,0x75,0x72,0x74,0x72,0x6f,0x6f,
- 0x6d,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x41,0x0,0x63,0x0,0x65,0x0,0x72,0x0,
- 0x63,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x5,0x41,0x62,0x6f,0x75,0x74,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,
- 0x62,0x79,0x1,0x3,0x0,0x0,0x0,0x5e,0x0,0x4c,0x0,0x65,0x0,0x20,0x0,0x70,
- 0x0,0x65,0x0,0x72,0x0,0x6d,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x63,
- 0x0,0x61,0x0,0x6d,0x0,0x62,0x0,0x69,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x76,
- 0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x73,
- 0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,
- 0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x63,0x0,0x6c,0x0,0x69,0x0,0x65,0x0,0x6e,
- 0x0,0x74,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x33,
- 0x41,0x6c,0x6c,0x6f,0x77,0x73,0x20,0x79,0x6f,0x75,0x20,0x74,0x6f,0x20,0x63,0x68,
- 0x61,0x6e,0x67,0x65,0x20,0x76,0x61,0x72,0x69,0x6f,0x75,0x73,0x20,0x61,0x73,0x70,
- 0x65,0x63,0x74,0x73,0x20,0x6f,0x66,0x20,0x74,0x68,0x65,0x20,0x63,0x6c,0x69,0x65,
- 0x6e,0x74,0x2e,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,
- 0x0,0x0,0x24,0x0,0x41,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6e,0x0,
- 0x65,0x0,0x79,0x0,0x20,0x0,0x4f,0x0,0x6e,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,
- 0x65,0x0,0x20,0x0,0x25,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x12,0x41,0x74,0x74,0x6f,0x72,0x6e,0x65,0x79,0x20,0x4f,0x6e,0x6c,0x69,0x6e,0x65,
- 0x20,0x25,0x31,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,
- 0x0,0x0,0x10,0x0,0x43,0x0,0x61,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x6c,0x0,
- 0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x61,0x6e,
- 0x63,0x65,0x6c,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,
- 0x0,0x1,0x32,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,
- 0x65,0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,
- 0x73,0x0,0x75,0x0,0x20,0x0,0x63,0x0,0x6c,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,
- 0x74,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe9,0x0,0x20,0x0,
- 0x63,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,
- 0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x72,0x0,
- 0x65,0x0,0x63,0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,
- 0x65,0x0,0x2e,0x0,0xa,0x0,0xbf,0x0,0x44,0x0,0x65,0x0,0x73,0x0,0x63,0x0,
- 0x61,0x0,0x72,0x0,0x67,0x0,0xf3,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x64,0x0,
- 0x6f,0x0,0x73,0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x72,0x0,
- 0x65,0x0,0x63,0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,
- 0x63,0x0,0x6f,0x0,0x72,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x61,0x0,
- 0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,
- 0x73,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x79,0x0,
- 0x2e,0x0,0x63,0x0,0x63,0x0,0x2f,0x0,0x67,0x0,0x65,0x0,0x74,0x0,0x61,0x0,
- 0x6f,0x0,0x2c,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x6c,0x0,0x75,0x0,
- 0x69,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x67,0x0,
- 0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x70,0x0,
- 0x65,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x27,0x0,0x62,0x0,0x61,0x0,0x73,0x0,
- 0x65,0x0,0x27,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x95,0x49,
- 0x74,0x20,0x64,0x6f,0x65,0x73,0x6e,0x27,0x74,0x20,0x6c,0x6f,0x6f,0x6b,0x20,0x6c,
- 0x69,0x6b,0x65,0x20,0x79,0x6f,0x75,0x72,0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,0x20,
- 0x69,0x73,0x20,0x73,0x65,0x74,0x20,0x75,0x70,0x20,0x63,0x6f,0x72,0x72,0x65,0x63,
- 0x74,0x6c,0x79,0x2e,0xa,0x44,0x69,0x64,0x20,0x79,0x6f,0x75,0x20,0x64,0x6f,0x77,
- 0x6e,0x6c,0x6f,0x61,0x64,0x20,0x61,0x6c,0x6c,0x20,0x72,0x65,0x73,0x6f,0x75,0x72,
- 0x63,0x65,0x73,0x20,0x63,0x6f,0x72,0x72,0x65,0x63,0x74,0x6c,0x79,0x20,0x66,0x72,
- 0x6f,0x6d,0x20,0x74,0x69,0x6e,0x79,0x2e,0x63,0x63,0x2f,0x67,0x65,0x74,0x61,0x6f,
- 0x2c,0x20,0x69,0x6e,0x63,0x6c,0x75,0x64,0x69,0x6e,0x67,0x20,0x74,0x68,0x65,0x20,
- 0x6c,0x61,0x72,0x67,0x65,0x20,0x27,0x62,0x61,0x73,0x65,0x27,0x20,0x66,0x6f,0x6c,
- 0x64,0x65,0x72,0x3f,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,
- 0x0,0x0,0x0,0x10,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x61,0x0,0x6e,
- 0x0,0x64,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4c,0x6f,
- 0x61,0x64,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,
- 0x3,0x0,0x0,0x0,0xc,0x0,0x4e,0x0,0x6f,0x0,0x6d,0x0,0x62,0x0,0x72,0x0,
- 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e,0x61,0x6d,0x65,0x7,
- 0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0xff,0xff,0xff,0xff,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4e,0x6f,0x7,0x0,0x0,0x0,0x5,
- 0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x46,0x0,0x75,0x0,
- 0x65,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,
- 0xed,0x0,0x6e,0x0,0x65,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x7,0x4f,0x66,0x66,0x6c,0x69,0x6e,0x65,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,
- 0x62,0x79,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x45,0x0,0x6e,0x0,0x20,0x0,0x6c,
- 0x0,0xed,0x0,0x6e,0x0,0x65,0x0,0x61,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x31,
- 0x0,0x2f,0x0,0x25,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,
- 0x4f,0x6e,0x6c,0x69,0x6e,0x65,0x3a,0x20,0x25,0x31,0x2f,0x25,0x32,0x7,0x0,0x0,
- 0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x42,0x0,
- 0x75,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,
- 0x0,0x0,0x6,0x53,0x65,0x61,0x72,0x63,0x68,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,
- 0x62,0x62,0x79,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x41,0x0,0x6a,0x0,0x75,0x0,
- 0x73,0x0,0x74,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
- 0x8,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,
- 0x62,0x62,0x79,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x56,0x0,0x65,0x0,0x72,0x0,
- 0x73,0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x31,0x8,
- 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x56,0x65,0x72,0x73,0x69,0x6f,0x6e,
- 0x3a,0x20,0x25,0x31,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,0x3,
- 0x0,0x0,0x0,0x4,0x0,0x53,0x0,0xed,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,
- 0x0,0x3,0x59,0x65,0x73,0x7,0x0,0x0,0x0,0x5,0x4c,0x6f,0x62,0x62,0x79,0x1,
- 0x3,0xff,0xff,0xff,0xff,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x55,
- 0x4e,0x4b,0x4e,0x4f,0x57,0x4e,0x7,0x0,0x0,0x0,0xc,0x63,0x68,0x61,0x74,0x6c,
- 0x6f,0x67,0x70,0x69,0x65,0x63,0x65,0x1,0x3,0xff,0xff,0xff,0xff,0x8,0x0,0x0,
- 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x45,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,
- 0xf,0x64,0x65,0x62,0x75,0x67,0x5f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x73,
- 0x1,0x3,0xff,0xff,0xff,0xff,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,
- 0x45,0x72,0x72,0x6f,0x72,0x3a,0x20,0x25,0x31,0x7,0x0,0x0,0x0,0xf,0x64,0x65,
- 0x62,0x75,0x67,0x5f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x73,0x1,0x3,0xff,
- 0xff,0xff,0xff,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4e,0x6f,0x74,
- 0x69,0x63,0x65,0x7,0x0,0x0,0x0,0xf,0x64,0x65,0x62,0x75,0x67,0x5f,0x66,0x75,
- 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x73,0x1,0x88,0x0,0x0,0x0,0x2,0x1,0x1,
-
-};
-
-static const unsigned char qt_resource_name[] = {
- // resource
- 0x0,0x8,
- 0xc,0xa6,0xc7,0x95,
- 0x0,0x72,
- 0x0,0x65,0x0,0x73,0x0,0x6f,0x0,0x75,0x0,0x72,0x0,0x63,0x0,0x65,
- // logo_ao2.png
- 0x0,0xc,
- 0xa,0x4e,0x9d,0xe7,
- 0x0,0x6c,
- 0x0,0x6f,0x0,0x67,0x0,0x6f,0x0,0x5f,0x0,0x61,0x0,0x6f,0x0,0x32,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
- // translations
- 0x0,0xc,
- 0xd,0xfc,0x11,0x13,
- 0x0,0x74,
- 0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x73,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73,
- // fonts
- 0x0,0x5,
- 0x0,0x6d,0x65,0xb3,
- 0x0,0x66,
- 0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x73,
- // Ace-Attorney.ttf
- 0x0,0x10,
- 0x7,0xce,0xd0,0x86,
- 0x0,0x41,
- 0x0,0x63,0x0,0x65,0x0,0x2d,0x0,0x41,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6e,0x0,0x65,0x0,0x79,0x0,0x2e,0x0,0x74,0x0,0x74,0x0,0x66,
- // ao_de.qm
- 0x0,0x8,
- 0x5,0x5a,0x88,0x7d,
- 0x0,0x61,
- 0x0,0x6f,0x0,0x5f,0x0,0x64,0x0,0x65,0x0,0x2e,0x0,0x71,0x0,0x6d,
- // ao_pl.qm
- 0x0,0x8,
- 0x5,0x66,0xf8,0x7d,
- 0x0,0x61,
- 0x0,0x6f,0x0,0x5f,0x0,0x70,0x0,0x6c,0x0,0x2e,0x0,0x71,0x0,0x6d,
- // ao_jp.qm
- 0x0,0x8,
- 0x5,0x61,0x38,0x7d,
- 0x0,0x61,
- 0x0,0x6f,0x0,0x5f,0x0,0x6a,0x0,0x70,0x0,0x2e,0x0,0x71,0x0,0x6d,
- // ao_ru.qm
- 0x0,0x8,
- 0x5,0x69,0x88,0x7d,
- 0x0,0x61,
- 0x0,0x6f,0x0,0x5f,0x0,0x72,0x0,0x75,0x0,0x2e,0x0,0x71,0x0,0x6d,
- // ao_pt.qm
- 0x0,0x8,
- 0x5,0x67,0x78,0x7d,
- 0x0,0x61,
- 0x0,0x6f,0x0,0x5f,0x0,0x70,0x0,0x74,0x0,0x2e,0x0,0x71,0x0,0x6d,
- // ao_en.qm
- 0x0,0x8,
- 0x5,0x5c,0x18,0x7d,
- 0x0,0x61,
- 0x0,0x6f,0x0,0x5f,0x0,0x65,0x0,0x6e,0x0,0x2e,0x0,0x71,0x0,0x6d,
- // ao_es.qm
- 0x0,0x8,
- 0x5,0x5c,0x68,0x7d,
- 0x0,0x61,
- 0x0,0x6f,0x0,0x5f,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x71,0x0,0x6d,
-
-};
-
-static const unsigned char qt_resource_struct[] = {
- // :
- 0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,
-0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
- // :/resource
- 0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x2,
-0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
- // :/resource/fonts
- 0x0,0x0,0x0,0x52,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc,
-0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
- // :/resource/logo_ao2.png
- 0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,
-0x0,0x0,0x1,0x80,0x9f,0x12,0xac,0xf2,
- // :/resource/translations
- 0x0,0x0,0x0,0x34,0x0,0x2,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x5,
-0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
- // :/resource/translations/ao_de.qm
- 0x0,0x0,0x0,0x88,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x80,0xf2,
-0x0,0x0,0x1,0x80,0x9f,0x12,0xac,0xf2,
- // :/resource/translations/ao_en.qm
- 0x0,0x0,0x0,0xf6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0xa1,0xbf,
-0x0,0x0,0x1,0x80,0x9f,0x12,0xac,0xf2,
- // :/resource/translations/ao_es.qm
- 0x0,0x0,0x1,0xc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0xa1,0xe4,
-0x0,0x0,0x1,0x80,0x9f,0x12,0xac,0xf2,
- // :/resource/translations/ao_jp.qm
- 0x0,0x0,0x0,0xb4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x25,0x22,
-0x0,0x0,0x1,0x80,0x9f,0x12,0xac,0xf2,
- // :/resource/translations/ao_pl.qm
- 0x0,0x0,0x0,0x9e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x34,0xfa,
-0x0,0x0,0x1,0x80,0x9f,0x12,0xac,0xf2,
- // :/resource/translations/ao_pt.qm
- 0x0,0x0,0x0,0xe0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x2,0xa1,
-0x0,0x0,0x1,0x80,0x9f,0x12,0xac,0xf2,
- // :/resource/translations/ao_ru.qm
- 0x0,0x0,0x0,0xca,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x34,0x91,
-0x0,0x0,0x1,0x80,0x9f,0x12,0xac,0xf2,
- // :/resource/fonts/Ace-Attorney.ttf
- 0x0,0x0,0x0,0x62,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x72,0x7a,
-0x0,0x0,0x1,0x80,0x9f,0x12,0xac,0xe8,
-
-};
-
-#ifdef QT_NAMESPACE
-# define QT_RCC_PREPEND_NAMESPACE(name) ::QT_NAMESPACE::name
-# define QT_RCC_MANGLE_NAMESPACE0(x) x
-# define QT_RCC_MANGLE_NAMESPACE1(a, b) a##_##b
-# define QT_RCC_MANGLE_NAMESPACE2(a, b) QT_RCC_MANGLE_NAMESPACE1(a,b)
-# define QT_RCC_MANGLE_NAMESPACE(name) QT_RCC_MANGLE_NAMESPACE2( \
- QT_RCC_MANGLE_NAMESPACE0(name), QT_RCC_MANGLE_NAMESPACE0(QT_NAMESPACE))
-#else
-# define QT_RCC_PREPEND_NAMESPACE(name) name
-# define QT_RCC_MANGLE_NAMESPACE(name) name
-#endif
-
-#ifdef QT_NAMESPACE
-namespace QT_NAMESPACE {
-#endif
-
-bool qRegisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *);
-bool qUnregisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *);
-
-#if defined(__ELF__) || defined(__APPLE__)
-static inline unsigned char qResourceFeatureZlib()
-{
- extern const unsigned char qt_resourceFeatureZlib;
- return qt_resourceFeatureZlib;
-}
-#else
-unsigned char qResourceFeatureZlib();
-#endif
-
-#ifdef QT_NAMESPACE
-}
-#endif
-
-int QT_RCC_MANGLE_NAMESPACE(qInitResources_resources)();
-int QT_RCC_MANGLE_NAMESPACE(qInitResources_resources)()
-{
- int version = 3;
- QT_RCC_PREPEND_NAMESPACE(qRegisterResourceData)
- (version, qt_resource_struct, qt_resource_name, qt_resource_data);
- return 1;
-}
-
-int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_resources)();
-int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_resources)()
-{
- int version = 3;
- version += QT_RCC_PREPEND_NAMESPACE(qResourceFeatureZlib());
- QT_RCC_PREPEND_NAMESPACE(qUnregisterResourceData)
- (version, qt_resource_struct, qt_resource_name, qt_resource_data);
- return 1;
-}
-
-namespace {
- struct initializer {
- initializer() { QT_RCC_MANGLE_NAMESPACE(qInitResources_resources)(); }
- ~initializer() { QT_RCC_MANGLE_NAMESPACE(qCleanupResources_resources)(); }
- } dummy;
-}
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
deleted file mode 100644
index 297a4f4..0000000
--- a/src/CMakeLists.txt
+++ /dev/null
@@ -1,39 +0,0 @@
-target_sources(Attorney_Online PRIVATE
-aoapplication.cpp
-aoblipplayer.cpp
-aobutton.cpp
-aocaseannouncerdialog.cpp
-aocharbutton.cpp
-aoclocklabel.cpp
-aoemotebutton.cpp
-aoemotepreview.cpp
-aoevidencebutton.cpp
-aoevidencedisplay.cpp
-aoimage.cpp
-aolayer.cpp
-aomusicplayer.cpp
-aooptionsdialog.cpp
-aoclocklabel.cpp
-aopacket.cpp
-aosfxplayer.cpp
-aotextarea.cpp
-aoutils.cpp
-charselect.cpp
-chatlogpiece.cpp
-courtroom.cpp
-debug_functions.cpp
-demoserver.cpp
-discord_rich_presence.cpp
-emotes.cpp
-evidence.cpp
-file_functions.cpp
-hardware_functions.cpp
-lobby.cpp
-main.cpp
-misc_functions.cpp
-networkmanager.cpp
-packet_distribution.cpp
-path_functions.cpp
-scrolltext.cpp
-text_file_functions.cpp
-)
diff --git a/src/aoapplication.cpp b/src/aoapplication.cpp
index 24682bc..a3ed6b9 100644
--- a/src/aoapplication.cpp
+++ b/src/aoapplication.cpp
@@ -1,24 +1,24 @@
#include "aoapplication.h"
-#include "bassmidi.h"
#include "courtroom.h"
#include "debug_functions.h"
#include "lobby.h"
#include "networkmanager.h"
#include "options.h"
-
#include "widgets/aooptionsdialog.h"
+#include
+
static QtMessageHandler original_message_handler;
static AOApplication *message_handler_context;
-void message_handler(QtMsgType type, const QMessageLogContext &context,
- const QString &msg)
+void message_handler(QtMsgType type, const QMessageLogContext &context, const QString &msg)
{
- emit message_handler_context->qt_log_message(type, context, msg);
+ Q_EMIT message_handler_context->qt_log_message(type, context, msg);
original_message_handler(type, context, msg);
}
-AOApplication::AOApplication(int &argc, char **argv) : QApplication(argc, argv)
+AOApplication::AOApplication(int &argc, char **argv)
+ : QApplication(argc, argv)
{
net_manager = new NetworkManager(this);
discord = new AttorneyOnline::Discord();
@@ -40,15 +40,20 @@ AOApplication::~AOApplication()
qInstallMessageHandler(original_message_handler);
}
+bool AOApplication::is_lobby_constructed()
+{
+ return w_lobby;
+}
+
void AOApplication::construct_lobby()
{
- if (lobby_constructed) {
+ if (is_lobby_constructed())
+ {
qWarning() << "lobby was attempted constructed when it already exists";
return;
}
w_lobby = new Lobby(this, net_manager);
- lobby_constructed = true;
QRect geometry = QGuiApplication::primaryScreen()->geometry();
int x = (geometry.width() - w_lobby->width()) / 2;
@@ -56,72 +61,85 @@ void AOApplication::construct_lobby()
w_lobby->move(x, y);
if (Options::getInstance().discordEnabled())
+ {
discord->state_lobby();
+ }
if (demo_server)
- demo_server->deleteLater();
+ {
+ demo_server->deleteLater();
+ }
demo_server = new DemoServer(this);
w_lobby->show();
}
void AOApplication::destruct_lobby()
{
- if (!lobby_constructed) {
+ if (!is_lobby_constructed())
+ {
qWarning() << "lobby was attempted destructed when it did not exist";
return;
}
delete w_lobby;
w_lobby = nullptr;
- lobby_constructed = false;
+}
+
+bool AOApplication::is_courtroom_constructed()
+{
+ return w_courtroom;
}
void AOApplication::construct_courtroom()
{
- if (courtroom_constructed) {
+ if (is_courtroom_constructed())
+ {
qWarning() << "courtroom was attempted constructed when it already exists";
return;
}
w_courtroom = new Courtroom(this);
- courtroom_constructed = true;
QRect geometry = QGuiApplication::primaryScreen()->geometry();
int x = (geometry.width() - w_courtroom->width()) / 2;
int y = (geometry.height() - w_courtroom->height()) / 2;
w_courtroom->move(x, y);
- if (demo_server != nullptr) {
- QObject::connect(demo_server, &DemoServer::skip_timers,
- w_courtroom, &Courtroom::skip_clocks);
+ if (demo_server != nullptr)
+ {
+ QObject::connect(demo_server, &DemoServer::skip_timers, w_courtroom, &Courtroom::skip_clocks);
}
- else {
+ else
+ {
qWarning() << "demo server did not exist during courtroom construction";
}
}
void AOApplication::destruct_courtroom()
{
- if (!courtroom_constructed) {
+ if (!is_courtroom_constructed())
+ {
qWarning() << "courtroom was attempted destructed when it did not exist";
return;
}
delete w_courtroom;
w_courtroom = nullptr;
- courtroom_constructed = false;
}
QString AOApplication::get_version_string()
{
- return QString::number(RELEASE) + "." + QString::number(MAJOR_VERSION) + "." +
- QString::number(MINOR_VERSION);
+ return QString::number(RELEASE) + "." + QString::number(MAJOR_VERSION) + "." + QString::number(MINOR_VERSION);
}
void AOApplication::server_disconnected()
{
- if (courtroom_constructed) {
- call_notice(tr("Disconnected from server."));
+ if (is_courtroom_constructed())
+ {
+ if (w_courtroom->isVisible())
+ {
+ call_notice(tr("Disconnected from server."));
+ }
construct_lobby();
destruct_courtroom();
}
@@ -135,22 +153,21 @@ void AOApplication::loading_cancelled()
void AOApplication::call_settings_menu()
{
- AOOptionsDialog* l_dialog = new AOOptionsDialog(nullptr, this);
- if (courtroom_constructed) {
- connect(l_dialog, &AOOptionsDialog::reloadThemeRequest,
- w_courtroom, &Courtroom::on_reload_theme_clicked);
- }
+ AOOptionsDialog *l_dialog = new AOOptionsDialog(this);
+ if (is_courtroom_constructed())
+ {
+ connect(l_dialog, &AOOptionsDialog::reloadThemeRequest, w_courtroom, &Courtroom::on_reload_theme_clicked);
+ }
- if(lobby_constructed) {
- }
- l_dialog->exec();
- delete l_dialog;
+ if (is_lobby_constructed())
+ {}
+ l_dialog->exec();
+ delete l_dialog;
}
// Callback for when BASS device is lost
// Only actually used for music syncs
-void CALLBACK AOApplication::BASSreset(HSTREAM handle, DWORD channel,
- DWORD data, void *user)
+void CALLBACK AOApplication::BASSreset(HSTREAM handle, DWORD channel, DWORD data, void *user)
{
Q_UNUSED(handle);
Q_UNUSED(channel);
@@ -175,16 +192,19 @@ void AOApplication::initBASS()
unsigned int a = 0;
BASS_DEVICEINFO info;
- if (Options::getInstance().audioOutputDevice() == "default") {
+ if (Options::getInstance().audioOutputDevice() == "default")
+ {
BASS_Init(-1, 48000, BASS_DEVICE_LATENCY, nullptr, nullptr);
load_bass_plugins();
}
- else {
- for (a = 0; BASS_GetDeviceInfo(a, &info); a++) {
- if (Options::getInstance().audioOutputDevice() == info.name) {
+ else
+ {
+ for (a = 0; BASS_GetDeviceInfo(a, &info); a++)
+ {
+ if (Options::getInstance().audioOutputDevice() == info.name)
+ {
BASS_SetDevice(a);
- BASS_Init(static_cast(a), 48000, BASS_DEVICE_LATENCY, nullptr,
- nullptr);
+ BASS_Init(static_cast(a), 48000, BASS_DEVICE_LATENCY, nullptr, nullptr);
load_bass_plugins();
qInfo() << info.name << "was set as the default audio output device.";
BASS_SetConfigPtr(BASS_CONFIG_MIDI_DEFFONT, QString(get_base_path() + "soundfont.sf2").toStdString().c_str());
diff --git a/include/aoapplication.h b/src/aoapplication.h
similarity index 75%
rename from include/aoapplication.h
rename to src/aoapplication.h
index 2b79f6e..c2a0191 100644
--- a/include/aoapplication.h
+++ b/src/aoapplication.h
@@ -1,5 +1,4 @@
-#ifndef AOAPPLICATION_H
-#define AOAPPLICATION_H
+#pragma once
#include "aopacket.h"
#include "datatypes.h"
@@ -8,46 +7,40 @@
#include "serverdata.h"
#include "widgets/aooptionsdialog.h"
-#include "bass.h"
+#include
#include
-#include
-#include
-#include
-
-#include
-#include
-
-#include
-
-#include
-#include
-
#include
+#include
+#include
+#include
+#include
+#include
+#include
#include
+#include
+#include
#include
#include
#include
-
-#include
+#include
class NetworkManager;
class Lobby;
class Courtroom;
class Options;
-class VPath : QString {
+class VPath : QString
+{
using QString::QString;
public:
- explicit VPath(const QString &str) : QString(str) {}
- inline QString const &toQString() const { return *this; }
- inline bool operator==(const VPath &str) const {
- return this->toQString() == str.toQString();
- }
- inline VPath operator+(const VPath &str) const {
- return VPath(this->toQString() + str.toQString());
- }
+ explicit VPath(const QString &str)
+ : QString(str)
+ {}
+ inline const QString &toQString() const { return *this; }
+ inline bool operator==(const VPath &str) const { return this->toQString() == str.toQString(); }
+ inline VPath operator+(const VPath &str) const { return VPath(this->toQString() + str.toQString()); }
};
inline uint qHash(const VPath &key, uint seed = qGlobalQHashSeed())
@@ -55,7 +48,8 @@ inline uint qHash(const VPath &key, uint seed = qGlobalQHashSeed())
return qHash(key.toQString(), seed);
}
-class AOApplication : public QApplication {
+class AOApplication : public QApplication
+{
Q_OBJECT
public:
@@ -63,27 +57,25 @@ public:
~AOApplication();
NetworkManager *net_manager;
- Lobby *w_lobby;
- Courtroom *w_courtroom;
+ Lobby *w_lobby = nullptr;
+ Courtroom *w_courtroom = nullptr;
AttorneyOnline::Discord *discord;
QFont default_font;
- bool lobby_constructed = false;
- bool courtroom_constructed = false;
-
+ bool is_lobby_constructed();
void construct_lobby();
void destruct_lobby();
+ bool is_courtroom_constructed();
void construct_courtroom();
void destruct_courtroom();
- void server_packet_received(AOPacket *p_packet);
+ void server_packet_received(AOPacket p_packet);
- void send_server_packet(AOPacket *p_packet);
+ void send_server_packet(AOPacket p_packet);
void call_settings_menu();
- void call_announce_menu(Courtroom *court);
qint64 latency = 0;
QString window_title;
@@ -114,18 +106,11 @@ public:
static const int MAJOR_VERSION = 10;
static const int MINOR_VERSION = 1;
- // Adds the server to favorite_servers.ini
- void add_favorite_server(int p_server);
- void remove_favorite_server(int p_server);
-
- void set_server_list(QVector &servers) { server_list = servers; }
- QVector &get_server_list() { return server_list; }
-
- // Returns the character the player has currently selected
- QString get_current_char();
+ void set_server_list(QVector &servers) { server_list = servers; }
+ QVector &get_server_list() { return server_list; }
// implementation in path_functions.cpp
- VPath get_theme_path(QString p_file, QString p_theme="");
+ VPath get_theme_path(QString p_file, QString p_theme = QString());
VPath get_character_path(QString p_char, QString p_file);
VPath get_misc_path(QString p_misc, QString p_file);
VPath get_sounds_path(QString p_file);
@@ -133,18 +118,17 @@ public:
VPath get_background_path(QString p_file);
VPath get_default_background_path(QString p_file);
VPath get_evidence_path(QString p_file);
- QVector get_asset_paths(QString p_element, QString p_theme="", QString p_subtheme="", QString p_default_theme="", QString p_misc="", QString p_character="", QString p_placeholder="");
+ QVector get_asset_paths(QString p_element, QString p_theme = QString(), QString p_subtheme = QString(), QString p_default_theme = QString(), QString p_misc = QString(), QString p_character = QString(), QString p_placeholder = QString());
QString get_asset_path(QVector pathlist);
- QString get_image_path(QVector pathlist, bool static_image=false);
+ QString get_image_path(QVector pathlist, bool static_image = false);
QString get_sfx_path(QVector pathlist);
- QString get_config_value(QString p_identifier, QString p_config, QString p_theme="", QString p_subtheme="", QString p_default_theme="", QString p_misc="");
- QString get_asset(QString p_element, QString p_theme="", QString p_subtheme="", QString p_default_theme="", QString p_misc="", QString p_character="", QString p_placeholder="");
- QString get_image(QString p_element, QString p_theme="", QString p_subtheme="", QString p_default_theme="", QString p_misc="", QString p_character="", QString p_placeholder="", bool static_image=false);
- QString get_sfx(QString p_sfx, QString p_misc="", QString p_character="");
- QString get_pos_path(const QString& pos, bool desk = false);
+ QString get_config_value(QString p_identifier, QString p_config, QString p_theme = QString(), QString p_subtheme = QString(), QString p_default_theme = QString(), QString p_misc = QString());
+ QString get_asset(QString p_element, QString p_theme = QString(), QString p_subtheme = QString(), QString p_default_theme = QString(), QString p_misc = QString(), QString p_character = QString(), QString p_placeholder = QString());
+ QString get_image(QString p_element, QString p_theme = QString(), QString p_subtheme = QString(), QString p_default_theme = QString(), QString p_misc = QString(), QString p_character = QString(), QString p_placeholder = QString(), bool static_image = false);
+ QString get_sfx(QString p_sfx, QString p_misc = QString(), QString p_character = QString());
+ QString get_pos_path(const QString &pos, bool desk = false);
QString get_case_sensitive_path(QString p_file);
- QString get_real_path(const VPath &vpath, const QStringList &suffixes={""});
- void invalidate_lookup_cache();
+ QString get_real_path(const VPath &vpath, const QStringList &suffixes = {""});
////// Functions for reading and writing files //////
// Implementations file_functions.cpp
@@ -188,15 +172,10 @@ public:
QPoint get_button_spacing(QString p_identifier, QString p_file);
// Returns the dimensions of widget with specified identifier from p_file
- pos_size_type get_element_dimensions(QString p_identifier, QString p_file,
- QString p_misc = "");
+ pos_size_type get_element_dimensions(QString p_identifier, QString p_file, QString p_misc = QString());
// Returns the value to you
- QString get_design_element(QString p_identifier, QString p_file,
- QString p_misc = "");
-
- // Returns the value of font_size with p_identifier from p_file
- int get_font_size(QString p_identifier, QString p_file);
+ QString get_design_element(QString p_identifier, QString p_file, QString p_misc = QString());
// Returns the color with p_identifier from p_file
QColor get_color(QString p_identifier, QString p_file);
@@ -212,32 +191,24 @@ public:
QString get_penalty_value(QString p_identifier);
// Returns the sfx with p_identifier from courtroom_sounds.ini in the current theme path
- QString get_court_sfx(QString p_identifier, QString p_misc="");
+ QString get_court_sfx(QString p_identifier, QString p_misc = QString());
// Figure out if we can opus this or if we should fall back to wav
QString get_sfx_suffix(VPath sound_to_check);
// Can we use APNG for this? If not, WEBP? If not, GIF? If not, fall back to
// PNG.
- QString get_image_suffix(VPath path_to_check, bool static_image=false);
+ QString get_image_suffix(VPath path_to_check, bool static_image = false);
// Returns the value of p_search_line within target_tag and terminator_tag
- QString read_char_ini(QString p_char, QString p_search_line,
- QString target_tag);
+ QString read_char_ini(QString p_char, QString p_search_line, QString target_tag);
// Returns a QStringList of all key=value definitions on a given tag.
- QStringList read_ini_tags(VPath p_file, QString target_tag = "");
-
- // Sets the char.ini p_search_line key under tag target_tag to value.
- void set_char_ini(QString p_char, QString value, QString p_search_line,
- QString target_tag);
+ QStringList read_ini_tags(VPath p_file, QString target_tag = QString());
// Returns the text between target_tag and terminator_tag in p_file
QString get_stylesheet(QString p_file);
- // Returns the text between target_tag and terminator_tag in p_file
- QString get_tagged_stylesheet(QString target_tag, QString p_file);
-
// Returns the side of the p_char character from that characters ini file
QString get_char_side(QString p_char);
@@ -294,9 +265,6 @@ public:
// Returns the sfx of p_char's p_emote
QString get_sfx_name(QString p_char, int p_emote);
- // Returns the blipsound of p_char's p_emote
- QString get_emote_blip(QString p_char, int p_emote);
-
// Returns if the sfx is defined as looping in char.ini
QString get_sfx_looping(QString p_char, int p_emote);
@@ -340,7 +308,7 @@ public:
// Currently defined subtheme
QString subtheme;
- //Default is always default.
+ // Default is always default.
const QString default_theme = "default";
// The file name of the log file in base/logs.
@@ -348,26 +316,22 @@ public:
void initBASS();
static void load_bass_plugins();
- static void CALLBACK BASSreset(HSTREAM handle, DWORD channel, DWORD data,
- void *user);
+ static void CALLBACK BASSreset(HSTREAM handle, DWORD channel, DWORD data, void *user);
static void doBASSreset();
QElapsedTimer demo_timer;
- DemoServer* demo_server = nullptr;
+ DemoServer *demo_server = nullptr;
private:
- QVector server_list;
+ QVector server_list;
QHash asset_lookup_cache;
QHash dir_listing_cache;
QSet dir_listing_exist_cache;
-public slots:
+public Q_SLOTS:
void server_disconnected();
void loading_cancelled();
-signals:
- void qt_log_message(QtMsgType type, const QMessageLogContext &context,
- const QString &msg);
+Q_SIGNALS:
+ void qt_log_message(QtMsgType type, const QMessageLogContext &context, const QString &msg);
};
-
-#endif // AOAPPLICATION_H
diff --git a/src/aoblipplayer.cpp b/src/aoblipplayer.cpp
index 5dc2467..3a13d78 100644
--- a/src/aoblipplayer.cpp
+++ b/src/aoblipplayer.cpp
@@ -1,60 +1,54 @@
#include "aoblipplayer.h"
-AOBlipPlayer::AOBlipPlayer(QWidget *parent, AOApplication *p_ao_app)
+AOBlipPlayer::AOBlipPlayer(AOApplication *ao_app)
+ : ao_app(ao_app)
+{}
+
+void AOBlipPlayer::setVolume(int value)
{
- m_parent = parent;
- ao_app = p_ao_app;
+ m_volume = value;
+ updateInternalVolume();
}
-void AOBlipPlayer::set_blips(QString p_sfx)
+void AOBlipPlayer::setMuted(bool enabled)
{
- QString f_path = ao_app->get_sfx_suffix(ao_app->get_sounds_path(p_sfx));
+ m_muted = enabled;
+ updateInternalVolume();
+}
- for (int n_stream = 0; n_stream < 5; ++n_stream) {
- BASS_StreamFree(m_stream_list[n_stream]);
+void AOBlipPlayer::setBlip(QString blip)
+{
+ QString path = ao_app->get_sfx_suffix(ao_app->get_sounds_path(blip));
+ for (int i = 0; i < STREAM_COUNT; ++i)
+ {
+ BASS_StreamFree(m_stream[i]);
- if (f_path.endsWith(".opus"))
- m_stream_list[n_stream] = BASS_OPUS_StreamCreateFile(
- FALSE, f_path.utf16(), 0, 0, BASS_UNICODE | BASS_ASYNCFILE);
+ if (path.endsWith(".opus"))
+ {
+ m_stream[i] = BASS_OPUS_StreamCreateFile(FALSE, path.utf16(), 0, 0, BASS_UNICODE | BASS_ASYNCFILE);
+ }
else
- m_stream_list[n_stream] = BASS_StreamCreateFile(
- FALSE, f_path.utf16(), 0, 0, BASS_UNICODE | BASS_ASYNCFILE);
+ {
+ m_stream[i] = BASS_StreamCreateFile(FALSE, path.utf16(), 0, 0, BASS_UNICODE | BASS_ASYNCFILE);
+ }
}
- set_volume_internal(m_volume);
+ updateInternalVolume();
}
-void AOBlipPlayer::blip_tick()
+void AOBlipPlayer::playBlip()
{
- int f_cycle = m_cycle++;
-
- if (m_cycle == 5)
- m_cycle = 0;
-
- HSTREAM f_stream = m_stream_list[f_cycle];
-
- BASS_ChannelSetDevice(f_stream, BASS_GetDevice());
- BASS_ChannelPlay(f_stream, false);
+ HSTREAM stream = m_stream[m_cycle];
+ BASS_ChannelSetDevice(stream, BASS_GetDevice());
+ BASS_ChannelPlay(stream, false);
+ m_cycle = ++m_cycle % STREAM_COUNT;
}
-void AOBlipPlayer::set_muted(bool toggle)
+void AOBlipPlayer::updateInternalVolume()
{
- m_muted = toggle;
- set_volume_internal(m_volume);
-}
-
-void AOBlipPlayer::set_volume(int p_value)
-{
- m_volume = static_cast(p_value) / 100;
- set_volume_internal(m_volume);
-}
-
-void AOBlipPlayer::set_volume_internal(qreal p_value)
-{
- // If muted, volume will always be 0
- float volume = static_cast(p_value) * !m_muted;
-
- for (int n_stream = 0; n_stream < 5; ++n_stream) {
- BASS_ChannelSetAttribute(m_stream_list[n_stream], BASS_ATTRIB_VOL, volume);
+ float volume = m_muted ? 0.0f : (m_volume * 0.01);
+ for (int i = 0; i < STREAM_COUNT; ++i)
+ {
+ BASS_ChannelSetAttribute(m_stream[i], BASS_ATTRIB_VOL, volume);
}
}
diff --git a/src/aoblipplayer.h b/src/aoblipplayer.h
new file mode 100644
index 0000000..92b43d2
--- /dev/null
+++ b/src/aoblipplayer.h
@@ -0,0 +1,37 @@
+#pragma once
+
+#include "aoapplication.h"
+
+#include
+#include
+
+#include
+#include
+#include
+
+#include
+
+class AOBlipPlayer
+{
+public:
+ static constexpr int STREAM_COUNT = 5;
+
+ AOBlipPlayer(AOApplication *ao_app);
+
+ void setVolume(int value);
+ void setMuted(bool enabled);
+
+ void setBlip(QString blip);
+
+ void playBlip();
+
+private:
+ AOApplication *ao_app;
+
+ int m_volume = 0;
+ bool m_muted = false;
+ HSTREAM m_stream[STREAM_COUNT]{};
+ int m_cycle = 0;
+
+ void updateInternalVolume();
+};
diff --git a/src/aobutton.cpp b/src/aobutton.cpp
index 5ef2a06..07ea649 100644
--- a/src/aobutton.cpp
+++ b/src/aobutton.cpp
@@ -1,44 +1,75 @@
#include "aobutton.h"
-#include "debug_functions.h"
-#include "file_functions.h"
#include "options.h"
-AOButton::AOButton(QWidget *parent, AOApplication *p_ao_app)
+AOButton::AOButton(AOApplication *ao_app, QWidget *parent)
: QPushButton(parent)
+ , ao_app(ao_app)
{
- ao_app = p_ao_app;
- movie = new QMovie(this);
- connect(movie, &QMovie::frameChanged, [this]{
- this->setIcon(movie->currentPixmap().scaled(this->size(), Qt::IgnoreAspectRatio, Qt::SmoothTransformation));
+ m_movie = new QMovie(this);
+
+ connect(m_movie, &QMovie::frameChanged, this, [this] {
+ this->setIcon(m_movie->currentPixmap().scaled(this->size(), Qt::IgnoreAspectRatio, Qt::SmoothTransformation));
this->setIconSize(QSize(this->width(), this->height()));
});
}
-AOButton::~AOButton() {}
-
-void AOButton::set_image(QString p_path, QString p_misc)
+AOButton::~AOButton()
{
- movie->stop();
- QString p_image;
- p_image = ao_app->get_image(p_path, Options::getInstance().theme(), Options::getInstance().subTheme(),
- ao_app->default_theme, p_misc, "", "", !Options::getInstance().animatedThemeEnabled());
- if (p_image.isEmpty()) {
- this->setIcon(QIcon());
- this->setIconSize(this->size());
- this->setStyleSheet("");
- return;
+ deleteMovie();
+}
+
+void AOButton::setImage(QString image_name)
+{
+ deleteMovie();
+
+ QString file_path = ao_app->get_image(image_name, Options::getInstance().theme(), Options::getInstance().subTheme(), ao_app->default_theme, QString(), QString(), QString(), !Options::getInstance().animatedThemeEnabled());
+ if (file_path.isEmpty())
+ {
+ setStyleSheet(QString());
+ setIcon(QIcon());
}
- this->setText("");
- this->setStyleSheet("QPushButton { background-color: transparent; border: 0px }");
- movie->setFileName(p_image);
- // We double-check if the user wants animated themes, so even if an animated image slipped through,
- // we still set it static
- if (Options::getInstance().animatedThemeEnabled() && movie->frameCount() > 1) {
- movie->start();
- }
- else {
- this->setIcon(QPixmap(p_image).scaled(this->size(), Qt::IgnoreAspectRatio, Qt::SmoothTransformation));
- this->setIconSize(this->size());
+ else
+ {
+ setText(QString());
+ setStyleSheet("QPushButton { background-color: transparent; border: 0px }");
+
+ if (Options::getInstance().animatedThemeEnabled())
+ {
+ m_movie = new QMovie;
+ m_movie->setFileName(file_path);
+
+ connect(m_movie, &QMovie::frameChanged, this, &AOButton::handleNextFrame);
+
+ m_movie->start();
+ }
+ else
+ {
+ updateIcon(QPixmap(file_path));
+ }
}
}
+
+void AOButton::deleteMovie()
+{
+ if (m_movie)
+ {
+ disconnect(m_movie, &QMovie::frameChanged, this, &AOButton::handleNextFrame);
+
+ m_movie->stop();
+ m_movie->deleteLater();
+ m_movie = nullptr;
+ }
+}
+
+void AOButton::handleNextFrame()
+{
+ updateIcon(m_movie->currentPixmap());
+}
+
+void AOButton::updateIcon(QPixmap icon)
+{
+ const QSize current_size = size();
+ setIcon(icon.scaled(current_size, Qt::IgnoreAspectRatio, Qt::SmoothTransformation));
+ setIconSize(current_size);
+}
diff --git a/src/aobutton.h b/src/aobutton.h
new file mode 100644
index 0000000..8104bdb
--- /dev/null
+++ b/src/aobutton.h
@@ -0,0 +1,29 @@
+#pragma once
+
+#include "aoapplication.h"
+
+#include
+#include
+
+class AOButton : public QPushButton
+{
+ Q_OBJECT
+
+public:
+ explicit AOButton(AOApplication *ao_app, QWidget *parent = nullptr);
+ virtual ~AOButton();
+
+ void setImage(QString image_name);
+
+private:
+ AOApplication *ao_app;
+
+ QMovie *m_movie = nullptr;
+
+ void deleteMovie();
+
+private Q_SLOTS:
+ void handleNextFrame();
+
+ void updateIcon(QPixmap icon);
+};
diff --git a/src/aocharbutton.cpp b/src/aocharbutton.cpp
index 4f00e3c..d446cca 100644
--- a/src/aocharbutton.cpp
+++ b/src/aocharbutton.cpp
@@ -2,103 +2,82 @@
#include "file_functions.h"
-AOCharButton::AOCharButton(QWidget *parent, AOApplication *p_ao_app, int x_pos,
- int y_pos, bool is_taken)
+AOCharButton::AOCharButton(AOApplication *ao_app, QWidget *parent)
: QPushButton(parent)
+ , ao_app(ao_app)
{
- m_parent = parent;
-
- ao_app = p_ao_app;
-
- taken = is_taken;
-
int size = 60 * Options::getInstance().themeScalingFactor();
int selector_size = 62 * Options::getInstance().themeScalingFactor();
- this->resize(size, size);
- this->move(x_pos, y_pos);
+ resize(size, size);
- ui_taken = new AOImage(this, ao_app, true);
- ui_taken->resize(size, size);
- ui_taken->set_image("char_taken");
+ ui_taken = new AOImage(ao_app, this);
ui_taken->setAttribute(Qt::WA_TransparentForMouseEvents);
+ ui_taken->resize(size, size);
+ ui_taken->setImage("char_taken");
ui_taken->hide();
- ui_passworded = new AOImage(this, ao_app, true);
- ui_passworded->resize(size, size);
- ui_passworded->set_image("char_passworded");
- ui_passworded->setAttribute(Qt::WA_TransparentForMouseEvents);
- ui_passworded->hide();
-
- ui_selector = new AOImage(parent, ao_app, true);
- ui_selector->resize(selector_size, selector_size);
- int offset = Options::getInstance().themeScalingFactor();
- ui_selector->move(x_pos - offset, y_pos - offset);
- ui_selector->set_image("char_selector");
+ ui_selector = new AOImage(ao_app, parent);
ui_selector->setAttribute(Qt::WA_TransparentForMouseEvents);
+ ui_selector->resize(selector_size, selector_size);
+ ui_selector->setImage("char_selector");
ui_selector->hide();
}
-void AOCharButton::reset()
+void AOCharButton::setTaken(bool enabled)
{
- ui_taken->hide();
- ui_passworded->hide();
- ui_selector->hide();
-}
-
-void AOCharButton::set_taken(bool is_taken) { taken = is_taken; }
-
-void AOCharButton::apply_taken_image()
-{
- if (taken) {
+ if (enabled)
+ {
ui_taken->move(0, 0);
ui_taken->show();
}
- else {
+ else
+ {
ui_taken->hide();
}
}
-void AOCharButton::set_passworded() { ui_passworded->show(); }
-
-void AOCharButton::set_image(QString p_character)
+void AOCharButton::setCharacter(QString character)
{
- QString image_path = ao_app->get_image_suffix(
- ao_app->get_character_path(p_character, "char_icon"), true);
+ QString image_path = ao_app->get_image_suffix(ao_app->get_character_path(character, "char_icon"), true);
- this->setText("");
+ setText(QString());
- if (file_exists(image_path)) {
- this->setStyleSheet("QPushButton { border-image: url(\"" + image_path +
- "\") 0 0 0 0 stretch stretch; }"
- "QToolTip { background-image: url(); color: #000000; "
- "background-color: #ffffff; border: 0px; }");
+ if (file_exists(image_path))
+ {
+ setStyleSheet("QPushButton { border-image: url(\"" + image_path +
+ "\") 0 0 0 0 stretch stretch; }"
+ "QToolTip { background-image: url(); color: #000000; "
+ "background-color: #ffffff; border: 0px; }");
}
- else {
- this->setStyleSheet("QPushButton { border-image: url(); }"
- "QToolTip { background-image: url(); color: #000000; "
- "background-color: #ffffff; border: 0px; }");
- this->setText(p_character);
+ else
+ {
+ setStyleSheet("QPushButton { border-image: url(); }"
+ "QToolTip { background-image: url(); color: #000000; "
+ "background-color: #ffffff; border: 0px; }");
+ setText(character);
}
}
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
-void AOCharButton::enterEvent(QEvent *e)
+void AOCharButton::enterEvent(QEvent *event)
#else
-void AOCharButton::enterEvent(QEnterEvent *e)
+void AOCharButton::enterEvent(QEnterEvent *event)
#endif
{
int offset = Options::getInstance().themeScalingFactor();
- ui_selector->move(this->x() - offset, this->y() - offset);
+ ui_selector->move(x() - offset, y() - offset);
ui_selector->raise();
ui_selector->show();
setFlat(false);
- QPushButton::enterEvent(e);
+
+ QPushButton::enterEvent(event);
}
-void AOCharButton::leaveEvent(QEvent *e)
+void AOCharButton::leaveEvent(QEvent *event)
{
ui_selector->hide();
- QPushButton::leaveEvent(e);
+
+ QPushButton::leaveEvent(event);
}
diff --git a/src/aocharbutton.h b/src/aocharbutton.h
new file mode 100644
index 0000000..ba61897
--- /dev/null
+++ b/src/aocharbutton.h
@@ -0,0 +1,36 @@
+#pragma once
+
+#include "aoapplication.h"
+#include "aoimage.h"
+
+#include
+#include
+#include
+#include
+#include
+
+class AOCharButton : public QPushButton
+{
+ Q_OBJECT
+
+public:
+ AOCharButton(AOApplication *ao_app, QWidget *parent);
+
+ void setCharacter(QString character);
+
+ void setTaken(bool enabled);
+
+protected:
+#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
+ void enterEvent(QEvent *event) override;
+#else
+ void enterEvent(QEnterEvent *event) override;
+#endif
+ void leaveEvent(QEvent *event) override;
+
+private:
+ AOApplication *ao_app;
+ bool m_taken = false;
+ AOImage *ui_taken;
+ AOImage *ui_selector;
+};
diff --git a/src/aoclocklabel.cpp b/src/aoclocklabel.cpp
index ce62f32..afd4d1e 100644
--- a/src/aoclocklabel.cpp
+++ b/src/aoclocklabel.cpp
@@ -1,10 +1,12 @@
#include "aoclocklabel.h"
-AOClockLabel::AOClockLabel(QWidget *parent) : QLabel(parent) {}
+AOClockLabel::AOClockLabel(QWidget *parent)
+ : QLabel(parent)
+{}
void AOClockLabel::start()
{
- timer.start(1000 / 60, this);
+ m_timer.start(1000 / 60, this);
}
void AOClockLabel::start(qint64 msecs)
@@ -15,16 +17,16 @@ void AOClockLabel::start(qint64 msecs)
void AOClockLabel::set(qint64 msecs, bool update_text)
{
- target_time = QDateTime::currentDateTime().addMSecs(msecs);
+ m_target_time = QDateTime::currentDateTime().addMSecs(msecs);
if (update_text)
{
- if (QDateTime::currentDateTime() >= target_time)
+ if (QDateTime::currentDateTime() >= m_target_time)
{
this->setText("00:00:00.000");
}
else
{
- qint64 ms_left = QDateTime::currentDateTime().msecsTo(target_time);
+ qint64 ms_left = QDateTime::currentDateTime().msecsTo(m_target_time);
QTime timeleft = QTime(0, 0).addMSecs(ms_left % (1000 * 3600 * 24));
QString timestring = timeleft.toString("hh:mm:ss.zzz");
this->setText(timestring);
@@ -34,39 +36,42 @@ void AOClockLabel::set(qint64 msecs, bool update_text)
void AOClockLabel::pause()
{
- timer.stop();
+ m_timer.stop();
}
void AOClockLabel::stop()
{
this->setText("00:00:00.000");
- timer.stop();
+ m_timer.stop();
}
void AOClockLabel::skip(qint64 msecs)
{
- qint64 ms_left = QDateTime::currentDateTime().msecsTo(target_time);
+ qint64 ms_left = QDateTime::currentDateTime().msecsTo(m_target_time);
this->set(ms_left - msecs, true);
}
bool AOClockLabel::active()
{
- return timer.isActive();
+ return m_timer.isActive();
}
void AOClockLabel::timerEvent(QTimerEvent *event)
{
- if (event->timerId() == timer.timerId()) {
- if (QDateTime::currentDateTime() >= target_time)
+ if (event->timerId() == m_timer.timerId())
+ {
+ if (QDateTime::currentDateTime() >= m_target_time)
{
this->stop();
return;
}
- qint64 ms_left = QDateTime::currentDateTime().msecsTo(target_time);
+ qint64 ms_left = QDateTime::currentDateTime().msecsTo(m_target_time);
QTime timeleft = QTime(0, 0).addMSecs(ms_left % (1000 * 3600 * 24));
QString timestring = timeleft.toString("hh:mm:ss.zzz");
this->setText(timestring);
- } else {
+ }
+ else
+ {
QWidget::timerEvent(event);
}
}
diff --git a/include/aoclocklabel.h b/src/aoclocklabel.h
similarity index 71%
rename from include/aoclocklabel.h
rename to src/aoclocklabel.h
index 830fb52..415179b 100644
--- a/include/aoclocklabel.h
+++ b/src/aoclocklabel.h
@@ -1,17 +1,18 @@
-#ifndef AOCLOCKLABEL_H
-#define AOCLOCKLABEL_H
+#pragma once
-#include
#include
-#include
#include
#include
+#include
+#include
-class AOClockLabel : public QLabel {
+class AOClockLabel : public QLabel
+{
Q_OBJECT
public:
AOClockLabel(QWidget *parent);
+
void start();
void start(qint64 msecs);
void set(qint64 msecs, bool update_text = false);
@@ -24,8 +25,6 @@ protected:
void timerEvent(QTimerEvent *event) override;
private:
- QBasicTimer timer;
- QDateTime target_time;
+ QBasicTimer m_timer;
+ QDateTime m_target_time;
};
-
-#endif // AOCLOCKLABEL_H
diff --git a/src/aoemotebutton.cpp b/src/aoemotebutton.cpp
index c053984..028c265 100644
--- a/src/aoemotebutton.cpp
+++ b/src/aoemotebutton.cpp
@@ -1,78 +1,79 @@
#include "aoemotebutton.h"
+
#include "file_functions.h"
-AOEmoteButton::AOEmoteButton(QWidget *p_parent, AOApplication *p_ao_app,
- int p_x, int p_y, int p_w, int p_h)
- : QPushButton(p_parent)
-{
- parent = p_parent;
- ao_app = p_ao_app;
+#include
- this->move(p_x, p_y);
- this->resize(p_w, p_h);
+AOEmoteButton::AOEmoteButton(int id, int width, int height, AOApplication *ao_app, QWidget *parent)
+ : QPushButton(parent)
+ , ao_app(ao_app)
+ , m_id(id)
+{
+ resize(width, height);
ui_selected = new QLabel(this);
- ui_selected->resize(size());
ui_selected->setAttribute(Qt::WA_TransparentForMouseEvents);
+ ui_selected->resize(width, height);
ui_selected->hide();
- connect(this, &AOEmoteButton::clicked, this, &AOEmoteButton::on_clicked);
+ connect(this, &AOEmoteButton::clicked, this, [this] { Q_EMIT emoteClicked(m_id); });
}
-void AOEmoteButton::set_selected_image(QString p_image)
+void AOEmoteButton::setSelectedImage(QString p_image)
{
- if (file_exists(p_image)) {
+ if (file_exists(p_image))
+ {
ui_selected->setStyleSheet("border-image: url(\"" + p_image + "\")");
}
- else {
+ else
+ {
ui_selected->setStyleSheet("background-color: rgba(0, 0, 0, 128)");
}
}
-void AOEmoteButton::set_image(QString p_image, QString p_emote_comment)
+int AOEmoteButton::id()
{
- QString tmp_p_image = p_image;
-
- if (file_exists(p_image)) {
- this->setText("");
- this->setStyleSheet(
- "QPushButton { border: none; }"
- "QToolTip { color: #000000; background-color: #ffffff; border: 0px; }");
- this->setIcon(QPixmap(p_image).scaled(this->size(), Qt::IgnoreAspectRatio, Qt::SmoothTransformation));
- this->setIconSize(this->size());
- }
- else {
- this->setText(p_emote_comment);
- this->setStyleSheet("QPushButton { border-image: url(); }"
- "QToolTip { background-image: url(); color: #000000; "
- "background-color: #ffffff; border: 0px; }");
- this->setIcon(QIcon());
- this->setIconSize(this->size());
- }
+ return m_id;
}
-void AOEmoteButton::set_char_image(QString p_char, int p_emote, bool on)
+void AOEmoteButton::setImage(QString character, int emoteId, bool enabled)
{
- QString emotion_number = QString::number(p_emote + 1);
- QStringList suffixes { "_off", "_on" };
- QStringList suffixedPaths;
- for (const QString &suffix : suffixes) {
- suffixedPaths.append(ao_app->get_image_suffix(ao_app->get_character_path(
- p_char, "emotions/button" + emotion_number + suffix)));
- }
- QString image = suffixedPaths[static_cast(on)];
+ QString emotion_number = QString::number(emoteId + 1);
- QString emoteComment = ao_app->get_emote_comment(p_char, p_emote);
- if (on && !file_exists(suffixedPaths[1])) {;
+ QStringList suffixedPaths;
+ static const QStringList SUFFIX_LIST{"_off", "_on"};
+ for (const QString &suffix : SUFFIX_LIST)
+ {
+ suffixedPaths.append(ao_app->get_image_suffix(ao_app->get_character_path(character, "emotions/button" + emotion_number + suffix)));
+ }
+
+ QString image = suffixedPaths[static_cast(enabled)];
+ if (enabled && !file_exists(suffixedPaths[1]))
+ {
ui_selected->show();
image = suffixedPaths[0];
}
- else {
+ else
+ {
ui_selected->hide();
}
- set_image(image, emoteComment);
+ if (file_exists(image))
+ {
+ setText(QString());
+ setStyleSheet("QPushButton { border: none; }"
+ "QToolTip { color: #000000; background-color: #ffffff; border: 0px; }");
+ setIcon(QPixmap(image).scaled(size(), Qt::IgnoreAspectRatio, Qt::SmoothTransformation));
+ setIconSize(size());
+ }
+ else
+ {
+ QString emote_comment = ao_app->get_emote_comment(character, emoteId);
+ setText(emote_comment);
+ setStyleSheet("QPushButton { border-image: url(); }"
+ "QToolTip { background-image: url(); color: #000000; "
+ "background-color: #ffffff; border: 0px; }");
+ setIcon(QIcon());
+ setIconSize(size());
+ }
}
-
-void AOEmoteButton::on_clicked() { emit emote_clicked(m_id); }
-
diff --git a/src/aoemotebutton.h b/src/aoemotebutton.h
new file mode 100644
index 0000000..3c31631
--- /dev/null
+++ b/src/aoemotebutton.h
@@ -0,0 +1,30 @@
+#pragma once
+
+#include "aoapplication.h"
+
+#include
+#include
+
+class AOEmoteButton : public QPushButton
+{
+ Q_OBJECT
+
+public:
+ AOEmoteButton(int id, int width, int height, AOApplication *ao_app, QWidget *parent = nullptr);
+
+ int id();
+
+ void setImage(QString character, int emoteId, bool enabled);
+
+ void setSelectedImage(QString p_image);
+
+Q_SIGNALS:
+ void emoteClicked(int p_id);
+
+private:
+ AOApplication *ao_app;
+
+ int m_id = 0;
+
+ QLabel *ui_selected = nullptr;
+};
diff --git a/src/aoemotepreview.cpp b/src/aoemotepreview.cpp
index 5afeebd..e427cb8 100644
--- a/src/aoemotepreview.cpp
+++ b/src/aoemotepreview.cpp
@@ -1,44 +1,45 @@
#include "aoemotepreview.h"
-AOEmotePreview::AOEmotePreview(QWidget *parent, AOApplication *p_ao_app) : QWidget(parent)
+AOEmotePreview::AOEmotePreview(AOApplication *ao_app, QWidget *parent)
+ : QWidget(parent)
+ , ao_app(ao_app)
{
- ao_app = p_ao_app;
+ setWindowFlag(Qt::Tool);
+ setWindowFlag(Qt::WindowMinMaxButtonsHint, false);
ui_viewport = new QWidget(this);
- ui_vp_player_char = new CharLayer(ui_viewport, ao_app);
+ ui_vp_player_char = new CharLayer(ao_app, ui_viewport);
ui_vp_player_char->setObjectName("ui_vp_player_char");
ui_vp_player_char->masked = false;
ui_size_label = new QLabel(this);
ui_size_label->setObjectName("ui_size_label");
- setWindowFlag(Qt::WindowMinMaxButtonsHint, false);
- setWindowFlag(Qt::Tool);
- this->resize(256, 192);
}
-void AOEmotePreview::set_widgets()
+void AOEmotePreview::updateViewportGeometry()
{
- ui_viewport->resize(this->width(), this->height());
+ ui_viewport->resize(size());
ui_vp_player_char->move_and_center(0, 0);
ui_vp_player_char->combo_resize(ui_viewport->width(), ui_viewport->height());
- ui_size_label->setText(QString::number(this->width()) + "x" + QString::number(this->height()));
+ ui_size_label->setText(QString::number(width()) + "x" + QString::number(height()));
}
-void AOEmotePreview::play(QString emote, QString char_name, bool flipped, int self_offset, int self_offset_v)
+void AOEmotePreview::display(QString character, QString emote, bool flipped, int xOffset, int yOffset)
{
+ m_character = character;
+ m_emote = emote;
ui_vp_player_char->stop();
ui_vp_player_char->set_flipped(flipped);
- ui_vp_player_char->move_and_center(ui_viewport->width() * self_offset / 100, ui_viewport->height() * self_offset_v / 100);
- ui_vp_player_char->load_image(emote, char_name, 0, false);
+ ui_vp_player_char->move_and_center(ui_viewport->width() * xOffset / 100, ui_viewport->height() * yOffset / 100);
+ ui_vp_player_char->load_image(emote, character, 0, false);
ui_vp_player_char->set_play_once(false);
- m_emote = emote;
- m_char = char_name;
- setWindowTitle(char_name + ": " + emote);
+ setWindowTitle(character + ": " + emote);
}
-void AOEmotePreview::resizeEvent(QResizeEvent *)
+void AOEmotePreview::resizeEvent(QResizeEvent *event)
{
- set_widgets();
- ui_vp_player_char->load_image(m_emote, m_char, 0, false);
+ QWidget::resizeEvent(event);
+ updateViewportGeometry();
+ ui_vp_player_char->load_image(m_emote, m_character, 0, false);
}
diff --git a/src/aoemotepreview.h b/src/aoemotepreview.h
new file mode 100644
index 0000000..0cf88c9
--- /dev/null
+++ b/src/aoemotepreview.h
@@ -0,0 +1,32 @@
+#pragma once
+
+#include "aolayer.h"
+#include
+
+class AOEmotePreview : public QWidget
+{
+ Q_OBJECT
+
+public:
+ AOEmotePreview(AOApplication *ao_app, QWidget *parent = nullptr);
+
+ void display(QString character, QString emote, bool flipped = false, int xOffset = 0, int yOffset = 0);
+
+ void updateViewportGeometry();
+
+protected:
+ void resizeEvent(QResizeEvent *event);
+
+private:
+ AOApplication *ao_app;
+
+ QString m_character;
+ QString m_emote;
+
+ QWidget *ui_viewport;
+ BackgroundLayer *ui_vp_background;
+ SplashLayer *ui_vp_speedlines;
+ CharLayer *ui_vp_player_char;
+ BackgroundLayer *ui_vp_desk;
+ QLabel *ui_size_label;
+};
diff --git a/src/aoevidencebutton.cpp b/src/aoevidencebutton.cpp
index d731682..31163ca 100644
--- a/src/aoevidencebutton.cpp
+++ b/src/aoevidencebutton.cpp
@@ -2,108 +2,96 @@
#include "file_functions.h"
-AOEvidenceButton::AOEvidenceButton(QWidget *p_parent, AOApplication *p_ao_app,
- int p_x, int p_y, int p_w, int p_h)
- : QPushButton(p_parent)
+AOEvidenceButton::AOEvidenceButton(int id, int width, int height, AOApplication *ao_app, QWidget *parent)
+ : QPushButton(parent)
+ , ao_app(ao_app)
+ , m_id(id)
{
- ao_app = p_ao_app;
- m_parent = p_parent;
+ resize(width, height);
- ui_selected = new AOImage(this, ao_app, true);
- ui_selected->resize(p_w, p_h);
- // ui_selected->move(p_x, p_y);
- ui_selected->set_image("evidence_selected");
+ ui_selected = new AOImage(ao_app, this);
+ ui_selected->resize(width, height);
+ ui_selected->setImage("evidence_selected");
ui_selected->setAttribute(Qt::WA_TransparentForMouseEvents);
ui_selected->hide();
- ui_selector = new AOImage(this, ao_app, true);
- ui_selector->resize(p_w, p_h);
- // ui_selector->move(p_x - 1, p_y - 1);
- ui_selector->set_image("evidence_selector");
+ ui_selector = new AOImage(ao_app, this);
+ ui_selector->resize(width, height);
+ ui_selector->setImage("evidence_selector");
ui_selector->setAttribute(Qt::WA_TransparentForMouseEvents);
ui_selector->hide();
- this->move(p_x, p_y);
- this->resize(p_w, p_h);
- // this->setAcceptDrops(true);
-
connect(this, &AOEvidenceButton::clicked, this, &AOEvidenceButton::on_clicked);
}
-void AOEvidenceButton::set_image(QString p_image)
+void AOEvidenceButton::setImage(QString fileName)
{
- QString image_path = ao_app->get_real_path(ao_app->get_evidence_path(p_image));
- if (file_exists(p_image)) {
- this->setText("");
- this->setStyleSheet(
- "QPushButton { border-image: url(\"" + p_image +
- "\") 0 0 0 0 stretch stretch; }"
- "QToolTip { color: #000000; background-color: #ffffff; border: 0px; }");
+ QString image_path = ao_app->get_real_path(ao_app->get_evidence_path(fileName));
+ if (file_exists(fileName))
+ {
+ setText("");
+ setStyleSheet("QPushButton { border-image: url(\"" + fileName +
+ "\") 0 0 0 0 stretch stretch; }"
+ "QToolTip { color: #000000; background-color: #ffffff; border: 0px; }");
}
- else if (file_exists(image_path)) {
- this->setText("");
- this->setStyleSheet(
- "QPushButton { border-image: url(\"" + image_path +
- "\") 0 0 0 0 stretch stretch; }"
- "QToolTip { color: #000000; background-color: #ffffff; border: 0px; }");
+ else if (file_exists(image_path))
+ {
+ setText("");
+ setStyleSheet("QPushButton { border-image: url(\"" + image_path +
+ "\") 0 0 0 0 stretch stretch; }"
+ "QToolTip { color: #000000; background-color: #ffffff; border: 0px; }");
}
- else {
- this->setText(p_image);
- this->setStyleSheet("QPushButton { border-image: url(); }"
- "QToolTip { background-image: url(); color: #000000; "
- "background-color: #ffffff; border: 0px; }");
+ else
+ {
+ setText(fileName);
+ setStyleSheet("QPushButton { border-image: url(); }"
+ "QToolTip { background-image: url(); color: #000000; "
+ "background-color: #ffffff; border: 0px; }");
}
}
-void AOEvidenceButton::set_theme_image(QString p_image)
+void AOEvidenceButton::setThemeImage(QString fileName)
{
- QString theme_image_path = ao_app->get_real_path(
- ao_app->get_theme_path(p_image));
- QString default_image_path = ao_app->get_real_path(
- ao_app->get_theme_path(p_image, ao_app->default_theme));
+ QString theme_image_path = ao_app->get_real_path(ao_app->get_theme_path(fileName));
+ QString default_image_path = ao_app->get_real_path(ao_app->get_theme_path(fileName, ao_app->default_theme));
QString final_image_path;
if (file_exists(theme_image_path))
+ {
final_image_path = theme_image_path;
+ }
else
+ {
final_image_path = default_image_path;
+ }
- this->set_image(final_image_path);
+ setImage(final_image_path);
}
-void AOEvidenceButton::set_selected(bool p_selected)
+void AOEvidenceButton::setSelected(bool p_selected)
{
if (p_selected)
+ {
ui_selected->show();
+ }
else
+ {
ui_selected->hide();
+ }
}
-void AOEvidenceButton::on_clicked() { emit evidence_clicked(m_id); }
+void AOEvidenceButton::on_clicked()
+{
+ Q_EMIT evidenceClicked(m_id);
+}
void AOEvidenceButton::mouseDoubleClickEvent(QMouseEvent *e)
{
QPushButton::mouseDoubleClickEvent(e);
- emit evidence_double_clicked(m_id);
+ Q_EMIT evidenceDoubleClicked(m_id);
}
-/*
-void AOEvidenceButton::dragLeaveEvent(QMouseEvent *e)
-{
- //QWidget::dragLeaveEvent(e);
-
- qDebug() << "drag leave event";
-}
-
-void AOEvidenceButton::dragEnterEvent(QMouseEvent *e)
-{
- //QWidget::dragEnterEvent(e);
-
- qDebug() << "drag enter event";
-}
-*/
-
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
void AOEvidenceButton::enterEvent(QEvent *e)
#else
@@ -112,7 +100,7 @@ void AOEvidenceButton::enterEvent(QEnterEvent *e)
{
ui_selector->show();
- emit on_hover(m_id, true);
+ Q_EMIT mouseoverUpdated(m_id, true);
setFlat(false);
QPushButton::enterEvent(e);
@@ -122,6 +110,6 @@ void AOEvidenceButton::leaveEvent(QEvent *e)
{
ui_selector->hide();
- emit on_hover(m_id, false);
+ Q_EMIT mouseoverUpdated(m_id, false);
QPushButton::leaveEvent(e);
}
diff --git a/src/aoevidencebutton.h b/src/aoevidencebutton.h
new file mode 100644
index 0000000..9830384
--- /dev/null
+++ b/src/aoevidencebutton.h
@@ -0,0 +1,50 @@
+#pragma once
+
+#include "aoapplication.h"
+#include "aoimage.h"
+
+#include
+#include
+#include
+#include
+
+class AOEvidenceButton : public QPushButton
+{
+ Q_OBJECT
+
+public:
+ AOEvidenceButton(int id, int width, int height, AOApplication *ao_app, QWidget *parent = nullptr);
+
+ void setImage(QString fileName);
+
+ void setThemeImage(QString fileName);
+
+ void setSelected(bool enabled);
+
+Q_SIGNALS:
+ void evidenceClicked(int id);
+ void evidenceDoubleClicked(int id);
+
+ void mouseoverUpdated(int id, bool state);
+
+protected:
+#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
+ void enterEvent(QEvent *e) override;
+#else
+ void enterEvent(QEnterEvent *e) override;
+#endif
+ void leaveEvent(QEvent *e) override;
+
+ void mouseDoubleClickEvent(QMouseEvent *e) override;
+
+private:
+ AOApplication *ao_app;
+
+ int m_id = 0;
+
+ AOImage *ui_selected;
+ AOImage *ui_selector;
+
+private Q_SLOTS:
+ void on_clicked();
+};
diff --git a/src/aoevidencedisplay.cpp b/src/aoevidencedisplay.cpp
index ed27c00..489699e 100644
--- a/src/aoevidencedisplay.cpp
+++ b/src/aoevidencedisplay.cpp
@@ -2,77 +2,81 @@
#include "datatypes.h"
#include "file_functions.h"
-#include "misc_functions.h"
-AOEvidenceDisplay::AOEvidenceDisplay(QWidget *p_parent, AOApplication *p_ao_app)
+AOEvidenceDisplay::AOEvidenceDisplay(AOApplication *p_ao_app, QWidget *p_parent)
: QLabel(p_parent)
+ , ao_app(p_ao_app)
{
- ao_app = p_ao_app;
- evidence_icon = new QPushButton(this);
- evidence_icon->hide();
- sfx_player = new AOSfxPlayer(this, ao_app);
+ ui_prompt_details = new QPushButton(this);
+ ui_prompt_details->hide();
- evidence_movie = new InterfaceLayer(this, ao_app);
+ m_sfx_player = new AOSfxPlayer(ao_app);
- connect(evidence_movie, &InterfaceLayer::done, this, &AOEvidenceDisplay::show_done);
- connect(evidence_icon, &QPushButton::clicked, this, &AOEvidenceDisplay::icon_clicked);
+ m_evidence_movie = new InterfaceLayer(ao_app, this);
+
+ connect(m_evidence_movie, &InterfaceLayer::done, this, &AOEvidenceDisplay::show_done);
+ connect(ui_prompt_details, &QPushButton::clicked, this, &AOEvidenceDisplay::icon_clicked);
}
-void AOEvidenceDisplay::show_evidence(int p_index, QString p_evidence_image,
- bool is_left_side, int p_volume)
+void AOEvidenceDisplay::show_evidence(int p_index, QString p_evidence_image, bool is_left_side, int p_volume)
{
this->reset();
- last_evidence_index = p_index;
+ m_last_evidence_index = p_index;
- sfx_player->set_volume(p_volume);
+ m_sfx_player->setVolume(p_volume);
QString gif_name;
QString icon_identifier;
- if (is_left_side) {
+ if (is_left_side)
+ {
icon_identifier = "left_evidence_icon";
gif_name = "evidence_appear_left";
}
- else {
+ else
+ {
icon_identifier = "right_evidence_icon";
gif_name = "evidence_appear_right";
}
- QString f_evidence_path = ao_app->get_real_path(
- ao_app->get_evidence_path(p_evidence_image));
+ QString f_evidence_path = ao_app->get_real_path(ao_app->get_evidence_path(p_evidence_image));
QPixmap f_pixmap(f_evidence_path);
- pos_size_type icon_dimensions =
- ao_app->get_element_dimensions(icon_identifier, "courtroom_design.ini");
+ pos_size_type icon_dimensions = ao_app->get_element_dimensions(icon_identifier, "courtroom_design.ini");
f_pixmap = f_pixmap.scaled(icon_dimensions.width, icon_dimensions.height);
QIcon f_icon(f_pixmap);
- evidence_icon->setIcon(f_icon);
- evidence_icon->setIconSize(f_pixmap.rect().size());
- evidence_icon->resize(f_pixmap.rect().size());
- evidence_icon->move(icon_dimensions.x, icon_dimensions.y);
- evidence_movie->static_duration = 320;
- evidence_movie->max_duration = 1000;
- evidence_movie->set_play_once(true);
- evidence_movie->load_image(gif_name, "");
- sfx_player->play(ao_app->get_court_sfx("evidence_present"));
+ ui_prompt_details->setIcon(f_icon);
+ ui_prompt_details->setIconSize(f_pixmap.rect().size());
+ ui_prompt_details->resize(f_pixmap.rect().size());
+ ui_prompt_details->move(icon_dimensions.x, icon_dimensions.y);
+ m_evidence_movie->static_duration = 320;
+ m_evidence_movie->max_duration = 1000;
+ m_evidence_movie->set_play_once(true);
+ m_evidence_movie->load_image(gif_name, "");
+ m_sfx_player->findAndPlaySfx(ao_app->get_court_sfx("evidence_present"));
}
void AOEvidenceDisplay::reset()
{
- sfx_player->stop();
- evidence_movie->kill();
- evidence_icon->hide();
+ m_sfx_player->stop();
+ m_evidence_movie->kill();
+ ui_prompt_details->hide();
this->clear();
}
-void AOEvidenceDisplay::show_done() { evidence_icon->show(); }
+void AOEvidenceDisplay::show_done()
+{
+ ui_prompt_details->show();
+}
-void AOEvidenceDisplay::icon_clicked() {
- if (last_evidence_index != -1) {
- emit show_evidence_details(last_evidence_index - 1); // i dont know why i have to subtract 1 here
+void AOEvidenceDisplay::icon_clicked()
+{
+ if (m_last_evidence_index != -1)
+ {
+ Q_EMIT show_evidence_details(m_last_evidence_index - 1); // i dont know why i have to subtract 1 here
}
}
@@ -80,5 +84,5 @@ void AOEvidenceDisplay::combo_resize(int w, int h)
{
QSize f_size(w, h);
this->resize(f_size);
- evidence_movie->combo_resize(w, h);
+ m_evidence_movie->combo_resize(w, h);
}
diff --git a/include/aoevidencedisplay.h b/src/aoevidencedisplay.h
similarity index 55%
rename from include/aoevidencedisplay.h
rename to src/aoevidencedisplay.h
index df4a037..b23bc0f 100644
--- a/include/aoevidencedisplay.h
+++ b/src/aoevidencedisplay.h
@@ -1,5 +1,4 @@
-#ifndef AOEVIDENCEDISPLAY_H
-#define AOEVIDENCEDISPLAY_H
+#pragma once
#include "aoapplication.h"
#include "aolayer.h"
@@ -9,29 +8,30 @@
#include
#include
-class AOEvidenceDisplay : public QLabel {
+class AOEvidenceDisplay : public QLabel
+{
Q_OBJECT
public:
- AOEvidenceDisplay(QWidget *p_parent, AOApplication *p_ao_app);
+ AOEvidenceDisplay(AOApplication *p_ao_app, QWidget *p_parent = nullptr);
void show_evidence(int p_index, QString p_evidence_image, bool is_left_side, int p_volume);
void reset();
void combo_resize(int w, int h);
-signals:
+Q_SIGNALS:
void show_evidence_details(int index);
private:
AOApplication *ao_app;
- InterfaceLayer *evidence_movie;
- QPushButton *evidence_icon;
- AOSfxPlayer *sfx_player;
- int last_evidence_index = -1;
-private slots:
+ int m_last_evidence_index = -1;
+ AOSfxPlayer *m_sfx_player;
+
+ InterfaceLayer *m_evidence_movie;
+ QPushButton *ui_prompt_details;
+
+private Q_SLOTS:
void show_done();
void icon_clicked();
};
-
-#endif // AOEVIDENCEDISPLAY_H
diff --git a/src/aoimage.cpp b/src/aoimage.cpp
index e737ffb..062efba 100644
--- a/src/aoimage.cpp
+++ b/src/aoimage.cpp
@@ -5,56 +5,35 @@
#include
-AOImage::AOImage(QWidget *parent, AOApplication *p_ao_app, bool make_static) : QLabel(parent)
+AOImage::AOImage(AOApplication *ao_app, QWidget *parent)
+ : QLabel(parent)
+ , ao_app(ao_app)
+{}
+
+QString AOImage::image()
{
- m_parent = parent;
- ao_app = p_ao_app;
- is_static = make_static;
- if (!is_static) // Only create the QMovie if we're non-static
- {
- movie = new QMovie(this);
- connect(movie, &QMovie::frameChanged, [this]{
- QPixmap f_pixmap = movie->currentPixmap();
- f_pixmap =
- f_pixmap.scaled(this->size(), Qt::IgnoreAspectRatio);
- this->setPixmap(f_pixmap);
- if (masked) {
- this->setMask(f_pixmap.mask());
- }
- });
- }
+ return m_file_name;
}
-AOImage::~AOImage() {}
-
-bool AOImage::set_image(QString p_image, QString p_misc)
+bool AOImage::setImage(QString fileName, QString miscellaneous)
{
- QString p_image_resolved = ao_app->get_image(p_image, Options::getInstance().theme(), Options::getInstance().subTheme(),
- ao_app->default_theme, p_misc, "", "",
- is_static || !Options::getInstance().animatedThemeEnabled());
+ QString p_image_resolved = ao_app->get_image(fileName, Options::getInstance().theme(), Options::getInstance().subTheme(), ao_app->default_theme, miscellaneous, "", "", false);
- if (!file_exists(p_image_resolved)) {
- qWarning() << "could not find image" << p_image;
+ if (!file_exists(p_image_resolved))
+ {
+ qWarning() << "could not find image" << fileName;
return false;
}
- path = p_image_resolved;
- if (!is_static) {
- movie->stop();
- movie->setFileName(path);
- if (Options::getInstance().animatedThemeEnabled() && movie->frameCount() > 1) {
- movie->start();
- }
- }
- if (is_static || !Options::getInstance().animatedThemeEnabled() || movie->frameCount() <= 1) {
- QPixmap f_pixmap(path);
+ m_file_name = p_image_resolved;
+ QPixmap f_pixmap(m_file_name);
+ f_pixmap = f_pixmap.scaled(size(), Qt::IgnoreAspectRatio);
+ setPixmap(f_pixmap);
- f_pixmap =
- f_pixmap.scaled(this->size(), Qt::IgnoreAspectRatio);
- this->setPixmap(f_pixmap);
- if (masked) {
- this->setMask(f_pixmap.mask());
- }
- }
return true;
}
+
+bool AOImage::setImage(QString fileName)
+{
+ return setImage(fileName, QString());
+}
diff --git a/src/aoimage.h b/src/aoimage.h
new file mode 100644
index 0000000..5b1fd68
--- /dev/null
+++ b/src/aoimage.h
@@ -0,0 +1,27 @@
+// This class represents a static theme-dependent image
+
+#pragma once
+
+#include "aoapplication.h"
+
+#include
+#include
+#include
+
+class AOImage : public QLabel
+{
+ Q_OBJECT
+
+public:
+ AOImage(AOApplication *ao_app, QWidget *parent = nullptr);
+
+ QString image();
+
+ bool setImage(QString fileName, QString miscellaneous);
+ bool setImage(QString fileName);
+
+private:
+ AOApplication *ao_app;
+
+ QString m_file_name;
+};
diff --git a/src/aolayer.cpp b/src/aolayer.cpp
index 4eaaf9f..8284230 100644
--- a/src/aolayer.cpp
+++ b/src/aolayer.cpp
@@ -2,12 +2,12 @@
#include "aoapplication.h"
#include "file_functions.h"
-#include "misc_functions.h"
#include "options.h"
static QThreadPool *thread_pool;
-AOLayer::AOLayer(QWidget *p_parent, AOApplication *p_ao_app) : QLabel(p_parent)
+AOLayer::AOLayer(AOApplication *p_ao_app, QWidget *p_parent)
+ : QLabel(p_parent)
{
ao_app = p_ao_app;
@@ -26,45 +26,47 @@ AOLayer::AOLayer(QWidget *p_parent, AOApplication *p_ao_app) : QLabel(p_parent)
preanim_timer->setSingleShot(true);
connect(preanim_timer, &QTimer::timeout, this, &AOLayer::preanim_done);
- if (!thread_pool) {
+ if (!thread_pool)
+ {
thread_pool = new QThreadPool(p_ao_app);
thread_pool->setMaxThreadCount(8);
}
}
-BackgroundLayer::BackgroundLayer(QWidget *p_parent, AOApplication *p_ao_app)
- : AOLayer(p_parent, p_ao_app)
-{
-}
-CharLayer::CharLayer(QWidget *p_parent, AOApplication *p_ao_app)
- : AOLayer(p_parent, p_ao_app)
-{
-}
-EffectLayer::EffectLayer(QWidget *p_parent, AOApplication *p_ao_app)
- : AOLayer(p_parent, p_ao_app)
-{
-}
-SplashLayer::SplashLayer(QWidget *p_parent, AOApplication *p_ao_app)
- : AOLayer(p_parent, p_ao_app)
-{
-}
-InterfaceLayer::InterfaceLayer(QWidget *p_parent, AOApplication *p_ao_app)
- : AOLayer(p_parent, p_ao_app)
-{
-}
-StickerLayer::StickerLayer(QWidget *p_parent, AOApplication *p_ao_app)
- : AOLayer(p_parent, p_ao_app)
-{
-}
+BackgroundLayer::BackgroundLayer(AOApplication *p_ao_app, QWidget *p_parent)
+ : AOLayer(p_ao_app, p_parent)
+{}
+
+CharLayer::CharLayer(AOApplication *p_ao_app, QWidget *p_parent)
+ : AOLayer(p_ao_app, p_parent)
+{}
+
+EffectLayer::EffectLayer(AOApplication *p_ao_app, QWidget *p_parent)
+ : AOLayer(p_ao_app, p_parent)
+{}
+
+SplashLayer::SplashLayer(AOApplication *p_ao_app, QWidget *p_parent)
+ : AOLayer(p_ao_app, p_parent)
+{}
+
+InterfaceLayer::InterfaceLayer(AOApplication *p_ao_app, QWidget *p_parent)
+ : AOLayer(p_ao_app, p_parent)
+{}
+
+StickerLayer::StickerLayer(AOApplication *p_ao_app, QWidget *p_parent)
+ : AOLayer(p_ao_app, p_parent)
+{}
QString AOLayer::find_image(QStringList p_list)
{
QString image_path;
- for (const QString &path : p_list) {
+ for (const QString &path : p_list)
+ {
#ifdef DEBUG_MOVIE
qDebug() << "checking path " << path;
#endif
- if (file_exists(path)) {
+ if (file_exists(path))
+ {
image_path = path;
#ifdef DEBUG_MOVIE
qDebug() << "found path " << path;
@@ -79,17 +81,28 @@ QPixmap AOLayer::get_pixmap(QImage image)
{
QPixmap f_pixmap;
if (m_flipped)
+ {
f_pixmap = QPixmap::fromImage(image.mirrored(true, false));
+ }
else
+ {
f_pixmap = QPixmap::fromImage(image);
+ }
// auto aspect_ratio = Qt::KeepAspectRatio;
- if (!f_pixmap.isNull()) {
+ if (!f_pixmap.isNull())
+ {
if (f_pixmap.height() > f_h) // We are downscaling, use anti-aliasing.
+ {
transform_mode = Qt::SmoothTransformation;
+ }
if (stretch)
+ {
f_pixmap = f_pixmap.scaled(f_w, f_h);
+ }
else
+ {
f_pixmap = f_pixmap.scaledToHeight(f_h, transform_mode);
+ }
this->resize(f_pixmap.size());
}
return f_pixmap;
@@ -101,15 +114,16 @@ void AOLayer::set_frame(QPixmap f_pixmap)
this->center_pixmap(f_pixmap);
}
-void AOLayer::center_pixmap(QPixmap f_pixmap) {
- QLabel::move(
- x + (f_w - f_pixmap.width()) / 2,
- y + (f_h - f_pixmap.height())); // Always center horizontally, always put
- // at the bottom vertically
+void AOLayer::center_pixmap(QPixmap f_pixmap)
+{
+ QLabel::move(x + (f_w - f_pixmap.width()) / 2,
+ y + (f_h - f_pixmap.height())); // Always center horizontally, always put
+ // at the bottom vertically
if (masked)
- this->setMask(
- QRegion((f_pixmap.width() - f_w) / 2, (f_pixmap.height() - f_h) / 2, f_w,
- f_h)); // make sure we don't escape the area we've been given
+ {
+ this->setMask(QRegion((f_pixmap.width() - f_w) / 2, (f_pixmap.height() - f_h) / 2, f_w,
+ f_h)); // make sure we don't escape the area we've been given
+ }
}
void AOLayer::combo_resize(int w, int h)
@@ -137,9 +151,13 @@ void AOLayer::move_and_center(int ax, int ay)
x = ax;
y = ay;
if (movie_frames.isEmpty()) // safeguard
- QLabel::move(x,y);
+ {
+ QLabel::move(x, y);
+ }
else
+ {
center_pixmap(movie_frames[0]); // just use the first frame since dimensions are all that matter
+ }
}
void BackgroundLayer::load_image(QString p_filename)
@@ -147,15 +165,15 @@ void BackgroundLayer::load_image(QString p_filename)
play_once = false;
cull_image = false;
VPath design_path = ao_app->get_background_path("design.ini");
- transform_mode =
- ao_app->get_scaling(ao_app->read_design_ini("scaling", design_path));
+ transform_mode = ao_app->get_scaling(ao_app->read_design_ini("scaling", design_path));
stretch = ao_app->read_design_ini("stretch", design_path).startsWith("true");
#ifdef DEBUG_MOVIE
qDebug() << "[BackgroundLayer] BG loaded: " << p_filename;
#endif
QString final_path = ao_app->get_image_suffix(ao_app->get_background_path(p_filename));
- if (final_path == last_path) {
+ if (final_path == last_path)
+ {
// Don't restart background if background is unchanged
return;
}
@@ -164,24 +182,20 @@ void BackgroundLayer::load_image(QString p_filename)
play();
}
-void CharLayer::load_image(QString p_filename, QString p_charname,
- int p_duration, bool p_is_preanim)
+void CharLayer::load_image(QString p_filename, QString p_charname, int p_duration, bool p_is_preanim)
{
duration = p_duration;
cull_image = false;
force_continuous = false;
- transform_mode = ao_app->get_scaling(
- ao_app->get_emote_property(p_charname, p_filename, "scaling"));
- stretch = ao_app->get_emote_property(p_charname, p_filename, "stretch")
- .startsWith("true");
- if ((p_charname == last_char) &&
- ((p_filename == last_emote) ||
- (p_filename.mid(3, -1) == last_emote.mid(3, -1))) &&
- (!is_preanim) && (!was_preanim)) {
+ transform_mode = ao_app->get_scaling(ao_app->get_emote_property(p_charname, p_filename, "scaling"));
+ stretch = ao_app->get_emote_property(p_charname, p_filename, "stretch").startsWith("true");
+ if ((p_charname == last_char) && ((p_filename == last_emote) || (p_filename.mid(3, -1) == last_emote.mid(3, -1))) && (!is_preanim) && (!was_preanim))
+ {
continuous = true;
force_continuous = true;
}
- else {
+ else
+ {
continuous = false;
force_continuous = true;
}
@@ -194,12 +208,15 @@ void CharLayer::load_image(QString p_filename, QString p_charname,
last_emote = current_emote;
last_prefix = prefix;
is_preanim = p_is_preanim;
- if ((p_filename.left(3) == "(a)") || (p_filename.left(3) == "(b)")) { // if we are playing an idle or talking animation
+ if ((p_filename.left(3) == "(a)") || (p_filename.left(3) == "(b)"))
+ { // if we are playing an idle or talking animation
prefix = p_filename.left(3); // separate the prefix from the emote name
current_emote = p_filename.mid(3, -1);
}
- else if ((duration > 0) || (p_filename.left(3) == "(c)")) { // else if we are playing a preanim or postanim
- if (p_filename.left(3) == "(c)") { // if we are playing a postanim
+ else if ((duration > 0) || (p_filename.left(3) == "(c)"))
+ { // else if we are playing a preanim or postanim
+ if (p_filename.left(3) == "(c)")
+ { // if we are playing a postanim
prefix = "(c)"; // separate the prefix from the emote name
current_emote = p_filename.mid(3, -1);
}
@@ -209,29 +226,22 @@ void CharLayer::load_image(QString p_filename, QString p_charname,
preanim_timer->start(duration);
}
#ifdef DEBUG_MOVIE
- qDebug() << "[CharLayer] anim loaded: prefix " << prefix << " filename "
- << current_emote << " from character: " << p_charname
- << " continuous: " << continuous;
+ qDebug() << "[CharLayer] anim loaded: prefix " << prefix << " filename " << current_emote << " from character: " << p_charname << " continuous: " << continuous;
#endif
- QVector pathlist { // cursed character path resolution vector
- ao_app->get_character_path(
- p_charname, prefix + current_emote), // Default path
- ao_app->get_character_path(
- p_charname,
- prefix + "/" + current_emote), // Path check if it's categorized
- // into a folder
- ao_app->get_character_path(
- p_charname,
- current_emote), // Just use the non-prefixed image, animated or not
- VPath(current_emote), // The path by itself after the above fail
- ao_app->get_theme_path("placeholder"), // Theme placeholder path
- ao_app->get_theme_path(
- "placeholder", ao_app->default_theme)}; // Default theme placeholder path
+ QVector pathlist{ // cursed character path resolution vector
+ ao_app->get_character_path(p_charname, prefix + current_emote), // Default path
+ ao_app->get_character_path(p_charname,
+ prefix + "/" + current_emote), // Path check if it's categorized
+ // into a folder
+ ao_app->get_character_path(p_charname,
+ current_emote), // Just use the non-prefixed image, animated or not
+ VPath(current_emote), // The path by itself after the above fail
+ ao_app->get_theme_path("placeholder"), // Theme placeholder path
+ ao_app->get_theme_path("placeholder", ao_app->default_theme)}; // Default theme placeholder path
start_playback(ao_app->get_image_path(pathlist));
}
-void SplashLayer::load_image(QString p_filename, QString p_charname,
- QString p_miscname)
+void SplashLayer::load_image(QString p_filename, QString p_charname, QString p_miscname)
{
transform_mode = ao_app->get_misc_scaling(p_miscname);
QString final_image = ao_app->get_image(p_filename, Options::getInstance().theme(), Options::getInstance().subTheme(), ao_app->default_theme, p_miscname, p_charname, "placeholder");
@@ -242,9 +252,13 @@ void SplashLayer::load_image(QString p_filename, QString p_charname,
void EffectLayer::load_image(QString p_filename, bool p_looping)
{
if (p_looping)
+ {
play_once = false;
+ }
else
+ {
play_once = true;
+ }
continuous = false;
force_continuous = true;
cull_image = false;
@@ -266,7 +280,9 @@ void StickerLayer::load_image(QString p_charname)
{
QString p_miscname;
if (Options::getInstance().customChatboxEnabled())
+ {
p_miscname = ao_app->get_chat(p_charname);
+ }
transform_mode = ao_app->get_misc_scaling(p_miscname);
QString final_image = ao_app->get_image("sticker/" + p_charname, Options::getInstance().theme(), Options::getInstance().subTheme(), ao_app->default_theme, p_miscname);
start_playback(final_image);
@@ -277,33 +293,43 @@ void CharLayer::start_playback(QString p_image)
{
movie_effects.clear();
AOLayer::start_playback(p_image);
- if (network_strings.size() > 0) // our FX overwritten by networked ones
+ if (m_network_strings.size() > 0) // our FX overwritten by networked ones
+ {
load_network_effects();
+ }
else // Use default ini FX
+ {
load_effects();
+ }
play();
}
void AOLayer::start_playback(QString p_image)
{
- if (p_image == "") {// image wasn't found by the path resolution function
+ if (p_image == "")
+ { // image wasn't found by the path resolution function
this->kill();
return;
}
if (frame_loader.isRunning())
+ {
exit_loop = true; // tell the loader to stop, we have a new image to load
+ }
QMutexLocker locker(&mutex);
this->show();
- if (!Options::getInstance().continuousPlaybackEnabled()) {
+ if (!Options::getInstance().continuousPlaybackEnabled())
+ {
continuous = false;
force_continuous = true;
}
if (((last_path == p_image) && (!force_continuous)) || p_image == "")
+ {
return;
+ }
#ifdef DEBUG_MOVIE
actual_time.restart();
@@ -312,14 +338,16 @@ void AOLayer::start_playback(QString p_image)
this->freeze();
movie_frames.clear();
movie_delays.clear();
- QString scaling_override =
- ao_app->read_design_ini("scaling", p_image + ".ini");
+ QString scaling_override = ao_app->read_design_ini("scaling", p_image + ".ini");
if (scaling_override != "")
+ {
transform_mode = ao_app->get_scaling(scaling_override);
- QString stretch_override =
- ao_app->read_design_ini("stretch", p_image + ".ini");
+ }
+ QString stretch_override = ao_app->read_design_ini("stretch", p_image + ".ini");
if (stretch_override != "")
+ {
stretch = stretch_override.startsWith("true");
+ }
#ifdef DEBUG_MOVIE
qDebug() << "[AOLayer::start_playback] Stretch:" << stretch << "Filename:" << p_image;
@@ -328,35 +356,39 @@ void AOLayer::start_playback(QString p_image)
last_max_frames = max_frames;
max_frames = m_reader.imageCount();
if (m_reader.loopCount() == 0 && max_frames > 1)
+ {
play_once = true;
- if (!continuous
- || ((continuous) && (max_frames != last_max_frames))
- || max_frames == 0
- || frame >= max_frames) {
+ }
+ if (!continuous || ((continuous) && (max_frames != last_max_frames)) || max_frames == 0 || frame >= max_frames)
+ {
frame = 0;
continuous = false;
}
- #if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
+#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
frame_loader = QtConcurrent::run(thread_pool, this, &AOLayer::populate_vectors);
- #else
+#else
frame_loader = QtConcurrent::run(thread_pool, &AOLayer::populate_vectors, this);
- #endif
+#endif
last_path = p_image;
while (movie_frames.size() <= frame) // if we haven't loaded the frame we need yet
+ {
frameAdded.wait(&mutex); // wait for the frame loader to add another frame, then check again
+ }
this->set_frame(movie_frames[frame]);
- if (max_frames <= 1) {
+ if (max_frames <= 1)
+ {
duration = static_duration;
#ifdef DEBUG_MOVIE
qDebug() << "[AOLayer::start_playback] max_frames is <= 1, using static duration";
#endif
}
if (duration > 0 && cull_image == true)
+ {
shfx_timer->start(duration);
+ }
#ifdef DEBUG_MOVIE
- qDebug() << "[AOLayer::start_playback] Max frames:" << max_frames << "Setting image to " << p_image
- << "Time taken to process image:" << actual_time.elapsed();
+ qDebug() << "[AOLayer::start_playback] Max frames:" << max_frames << "Setting image to " << p_image << "Time taken to process image:" << actual_time.elapsed();
actual_time.restart();
#endif
@@ -364,8 +396,10 @@ void AOLayer::start_playback(QString p_image)
void CharLayer::play()
{
- if (max_frames <= 1) {
- if (play_once) {
+ if (max_frames <= 1)
+ {
+ if (play_once)
+ {
preanim_timer->start(qMax(0, duration));
}
return;
@@ -376,26 +410,42 @@ void CharLayer::play()
void AOLayer::play()
{
- if (max_frames <= 1) {
- if (play_once) {
+ if (max_frames <= 1)
+ {
+ if (play_once)
+ {
if (duration > 0)
+ {
ticker->start(duration);
+ }
else
+ {
preanim_done();
+ }
}
else
+ {
this->freeze();
+ }
}
- else {
- while (movie_delays.size() <= frame) {
- frameAdded.wait(&mutex);
+ else
+ {
+ while (movie_delays.size() <= frame)
+ {
+ frameAdded.wait(&mutex);
}
ticker->start(this->get_frame_delay(movie_delays[frame]));
}
}
-void AOLayer::set_play_once(bool p_play_once) { play_once = p_play_once; }
-void AOLayer::set_cull_image(bool p_cull_image) { cull_image = p_cull_image; }
+void AOLayer::set_play_once(bool p_play_once)
+{
+ play_once = p_play_once;
+}
+void AOLayer::set_cull_image(bool p_cull_image)
+{
+ cull_image = p_cull_image;
+}
void AOLayer::set_static_duration(int p_static_duration)
{
static_duration = p_static_duration;
@@ -409,21 +459,27 @@ void CharLayer::load_effects()
{
movie_effects.clear();
if (max_frames <= 1)
+ {
return;
+ }
movie_effects.resize(max_frames);
- for (int e_frame = 0; e_frame < max_frames; ++e_frame) {
+ for (int e_frame = 0; e_frame < max_frames; ++e_frame)
+ {
QString effect = ao_app->get_screenshake_frame(m_char, m_emote, e_frame);
- if (effect != "") {
+ if (effect != "")
+ {
movie_effects[e_frame].append("shake");
}
effect = ao_app->get_flash_frame(m_char, m_emote, e_frame);
- if (effect != "") {
+ if (effect != "")
+ {
movie_effects[e_frame].append("flash");
}
effect = ao_app->get_sfx_frame(m_char, m_emote, e_frame);
- if (effect != "") {
+ if (effect != "")
+ {
movie_effects[e_frame].append("sfx^" + effect);
}
}
@@ -433,44 +489,54 @@ void CharLayer::load_network_effects()
{
movie_effects.clear();
if (max_frames <= 1)
+ {
return;
+ }
movie_effects.resize(max_frames);
// Order is important!!!
QStringList effects_list = {"shake", "flash", "sfx^"};
- // Determines which list is smaller - effects_list or network_strings - and
- // uses it as basis for the loop. This way, incomplete network_strings would
+ // Determines which list is smaller - effects_list or m_network_strings - and
+ // uses it as basis for the loop. This way, incomplete m_network_strings would
// still be parsed, and excess/unaccounted for networked information is
// omitted.
- int effects_size = qMin(effects_list.size(), network_strings.size());
+ int effects_size = qMin(effects_list.size(), m_network_strings.size());
- for (int i = 0; i < effects_size; ++i) {
- QString netstring = network_strings.at(i);
+ for (int i = 0; i < effects_size; ++i)
+ {
+ QString netstring = m_network_strings.at(i);
QStringList emote_splits = netstring.split("^");
- for (const QString &emote : emote_splits) {
+ for (const QString &emote : emote_splits)
+ {
QStringList parsed = emote.split("|");
if (parsed.size() <= 0 || parsed.at(0) != m_emote)
+ {
continue;
- foreach (QString frame_data, parsed) {
+ }
+ foreach (QString frame_data, parsed)
+ {
QStringList frame_split = frame_data.split("=");
- if (frame_split.size() <=
- 1) // We might still be hanging at the emote itself (entry 0).
+ if (frame_split.size() <= 1) // We might still be hanging at the emote itself (entry 0).
+ {
continue;
+ }
int f_frame = frame_split.at(0).toInt();
- if (f_frame >= max_frames || f_frame < 0) {
- qWarning() << "out of bounds" << effects_list[i] << "frame"
- << f_frame << "out of" << max_frames << "for" << m_emote;
+ if (f_frame >= max_frames || f_frame < 0)
+ {
+ qWarning() << "out of bounds" << effects_list[i] << "frame" << f_frame << "out of" << max_frames << "for" << m_emote;
continue;
}
QString f_data = frame_split.at(1);
- if (f_data != "") {
+ if (f_data != "")
+ {
QString effect = effects_list[i];
if (effect == "sfx^") // Currently the only frame result that feeds us
// data, let's yank it in.
+ {
effect += f_data;
+ }
#ifdef DEBUG_MOVIE
- qDebug() << "[CharLayer::load_network_effects]" << effect << f_data << "frame" << f_frame << "for"
- << m_emote;
+ qDebug() << "[CharLayer::load_network_effects]" << effect << f_data << "frame" << f_frame << "for" << m_emote;
#endif
movie_effects[f_frame].append(effect);
}
@@ -481,29 +547,35 @@ void CharLayer::load_network_effects()
void CharLayer::play_frame_effect(int p_frame)
{
- if (p_frame >= movie_effects.size()) {
+ if (p_frame >= movie_effects.size())
+ {
qWarning() << "Attempted to play a frame effect bigger than the size of movie_effects";
return;
}
- if (p_frame < max_frames) {
- foreach (QString effect, movie_effects[p_frame]) {
- if (effect == "shake") {
- emit shake();
+ if (p_frame < max_frames)
+ {
+ foreach (QString effect, movie_effects[p_frame])
+ {
+ if (effect == "shake")
+ {
+ Q_EMIT shake();
#ifdef DEBUG_MOVIE
qDebug() << "[CharLayer::play_frame_effect] Attempting to play shake on frame" << frame;
#endif
}
- if (effect == "flash") {
- emit flash();
+ if (effect == "flash")
+ {
+ Q_EMIT flash();
#ifdef DEBUG_MOVIE
qDebug() << "[CharLayer::play_frame_effect] Attempting to play flash on frame" << frame;
#endif
}
- if (effect.startsWith("sfx^")) {
+ if (effect.startsWith("sfx^"))
+ {
QString sfx = effect.section("^", 1);
- emit play_sfx(sfx);
+ Q_EMIT play_sfx(sfx);
#ifdef DEBUG_MOVIE
qDebug() << "[CharLayer::play_frame_effect] Attempting to play sfx" << sfx << "on frame" << frame;
#endif
@@ -549,36 +621,47 @@ void CharLayer::movie_ticker()
void AOLayer::movie_ticker()
{
++frame;
- if (frame >= max_frames) {
- if (play_once) {
+ if (frame >= max_frames)
+ {
+ if (play_once)
+ {
if (cull_image)
+ {
this->stop();
+ }
else
+ {
this->freeze();
+ }
preanim_done();
return;
}
else
+ {
frame = 0;
+ }
}
{
QMutexLocker locker(&mutex);
while (frame >= movie_frames.size() && frame < max_frames) // oops! our frame isn't ready yet
+ {
frameAdded.wait(&mutex); // wait for a new frame to be added, then check again
+ }
}
#ifdef DEBUG_MOVIE
- qDebug() << "[AOLayer::movie_ticker] Frame:" << frame << "Delay:" << movie_delays[frame]
- << "Actual time taken from last frame:" << actual_time.restart();
+ qDebug() << "[AOLayer::movie_ticker] Frame:" << frame << "Delay:" << movie_delays[frame] << "Actual time taken from last frame:" << actual_time.restart();
#endif
this->set_frame(movie_frames[frame]);
ticker->setInterval(this->get_frame_delay(movie_delays[frame]));
}
-void AOLayer::populate_vectors() {
+void AOLayer::populate_vectors()
+{
#ifdef DEBUG_MOVIE
qDebug() << "[AOLayer::populate_vectors] Started thread";
#endif
- while (!exit_loop && movie_frames.size() < max_frames) {
+ while (!exit_loop && movie_frames.size() < max_frames)
+ {
load_next_frame();
#ifdef DEBUG_MOVIE
qDebug() << "[AOLayer::populate_vectors] Loaded frame" << movie_frames.size();
@@ -586,12 +669,15 @@ void AOLayer::populate_vectors() {
}
#ifdef DEBUG_MOVIE
if (exit_loop)
+ {
qDebug() << "[AOLayer::populate_vectors] Exit requested";
+ }
#endif
exit_loop = false;
}
-void AOLayer::load_next_frame() {
+void AOLayer::load_next_frame()
+{
{
QMutexLocker locker(&mutex);
movie_frames.append(this->get_pixmap(m_reader.read()));
@@ -603,16 +689,20 @@ void AOLayer::load_next_frame() {
void CharLayer::preanim_done()
{
if (is_preanim)
+ {
AOLayer::preanim_done();
+ }
else
+ {
return;
+ }
}
void AOLayer::preanim_done()
{
ticker->stop();
preanim_timer->stop();
- emit done();
+ Q_EMIT done();
}
void AOLayer::shfx_timer_done()
@@ -622,5 +712,5 @@ void AOLayer::shfx_timer_done()
qDebug() << "shfx timer signaled done";
#endif
// signal connected to courtroom object, let it figure out what to do
- emit done();
+ Q_EMIT done();
}
diff --git a/include/aolayer.h b/src/aolayer.h
similarity index 74%
rename from include/aolayer.h
rename to src/aolayer.h
index 19dce38..0a44d8f 100644
--- a/include/aolayer.h
+++ b/src/aolayer.h
@@ -1,15 +1,14 @@
-#ifndef AOLAYER_H
-#define AOLAYER_H
+#pragma once
+#include
#include
#include
#include
#include
-#include
-#include
-#include
#include
+#include
#include
+#include
class AOApplication;
class VPath;
@@ -19,13 +18,13 @@ class VPath;
// AOLayer handles all animations both inside and outside
// the viewport. It was originally devised as a layering
// system, but turned into a full refactor of the existing
-// animation code.
+// animation code.
//
// AOLayer has six subclasses, all of which differ mainly in
// how they handle path resolution.
//
// - BackgroundLayer: self-explanatory, handles files found in base/background
-// - CharLayer: handles all the "wonderful" quirks of character path resolution
+// - CharLayer: handles all the "wonderful" quirks of character path resolution
// - SplashLayer: handles elements that can either be provided by a misc/ directory
// or by the theme - speedlines, shouts, WT/CE, et cetera
// - EffectLayer: this is basically a dummy layer since effects do their own wonky
@@ -35,28 +34,29 @@ class VPath;
//
// For questions comments or concerns, bother someone else
-class AOLayer : public QLabel {
+class AOLayer : public QLabel
+{
Q_OBJECT
public:
- AOLayer(QWidget *p_parent, AOApplication *p_ao_app);
+ AOLayer(AOApplication *p_ao_app, QWidget *p_parent = nullptr);
- QString filename; // file name without extension, i.e. "witnesstestimony"
- int static_duration; // time in ms for static images to be displayed, if
- // applicable. set to 0 for infinite
- int max_duration; // maximum duration in ms, image will be culled if it is
- // exceeded. set this to 0 for infinite duration
+ QString filename; // file name without extension, i.e. "witnesstestimony"
+ int static_duration; // time in ms for static images to be displayed, if
+ // applicable. set to 0 for infinite
+ int max_duration; // maximum duration in ms, image will be culled if it is
+ // exceeded. set this to 0 for infinite duration
bool play_once = false; // Whether to loop this animation or not
bool cull_image = true; // if we're done playing this animation, should we
// hide it? also controls durational culling
- // Are we loading this from the same frame we left off on?
+ // Are we loading this from the same frame we left off on?
bool continuous = false;
// Whether or not to forcibly bypass the simple check done by start_playback
// and use the existent value of continuous instead
bool force_continuous = false;
Qt::TransformationMode transform_mode = Qt::FastTransformation; // transformation mode to use for this image
- bool stretch = false; // Should we stretch/squash this image to fill the screen?
- bool masked = true; // Set a mask to the dimensions of the widget?
+ bool stretch = false; // Should we stretch/squash this image to fill the screen?
+ bool masked = true; // Set a mask to the dimensions of the widget?
// Set the movie's image to provided paths, preparing for playback.
void start_playback(QString p_image);
@@ -75,9 +75,6 @@ public:
// Set the m_flipped variable to true/false
void set_flipped(bool p_flipped) { m_flipped = p_flipped; }
- // Set the movie's playback speed (between 10% and 1000%)
- void set_speed(int modifier) { speed = qMax(10, qMin(modifier, 1000)); }
-
// Move the label itself around
void move(int ax, int ay);
@@ -148,44 +145,49 @@ private:
// used in populate_vectors
void load_next_frame();
- std::atomic_bool exit_loop { false }; //awful solution but i'm not fucking using QThread
+ std::atomic_bool exit_loop{false}; // awful solution but i'm not fucking using QThread
QFuture frame_loader;
QMutex mutex;
QWaitCondition frameAdded;
-
-signals:
+Q_SIGNALS:
void done();
-protected slots:
+protected Q_SLOTS:
virtual void preanim_done();
void shfx_timer_done();
virtual void movie_ticker();
};
-class BackgroundLayer : public AOLayer {
+class BackgroundLayer : public AOLayer
+{
Q_OBJECT
public:
- BackgroundLayer(QWidget *p_parent, AOApplication *p_ao_app);
+ BackgroundLayer(AOApplication *p_ao_app, QWidget *p_parent);
void load_image(QString p_filename);
};
-class CharLayer : public AOLayer {
+class CharLayer : public AOLayer
+{
Q_OBJECT
+
public:
- CharLayer(QWidget *p_parent, AOApplication *p_ao_app);
- QString current_emote = ""; // name of the emote we're using
- bool is_preanim; // equivalent to the old play_once, if true we don't want
- // to loop this
- QString prefix = ""; // prefix, left blank if it's a preanim
+ CharLayer(AOApplication *p_ao_app, QWidget *p_parent = nullptr);
+
+ QStringList &network_strings2() { return m_network_strings; }
+ void set_network_string(QStringList list) { m_network_strings = list; }
void load_image(QString p_filename, QString p_charname, int p_duration, bool p_is_preanim);
+
void play(); // overloaded so we can play effects
- // networked frame fx string
- QStringList network_strings;
-
private:
+ QString current_emote; // name of the emote we're using
+ bool is_preanim; // equivalent to the old play_once, if true we don't want
+ // to loop this
+ QString prefix; // prefix, left blank if it's a preanim
+ QStringList m_network_strings;
+
QString last_char; // name of the last character we used
QString last_emote; // name of the last animation we used
QString last_prefix; // prefix of the last animation we played
@@ -197,8 +199,8 @@ private:
QVector> movie_effects;
// used for effect loading
- QString m_char = "";
- QString m_emote = "";
+ QString m_char;
+ QString m_emote;
// overloaded for effects reasons
void start_playback(QString p_image);
@@ -214,42 +216,52 @@ private:
// frame.
void play_frame_effect(int p_frame);
-private slots:
+private Q_SLOTS:
void preanim_done() override; // overridden so we don't accidentally cull characters
void movie_ticker() override; // overridden so we can play effects
-signals:
+Q_SIGNALS:
void shake();
void flash();
void play_sfx(QString sfx);
};
-class SplashLayer : public AOLayer {
+class SplashLayer : public AOLayer
+{
Q_OBJECT
+
public:
- SplashLayer(QWidget *p_parent, AOApplication *p_ao_app);
+ SplashLayer(AOApplication *p_ao_app, QWidget *p_parent = nullptr);
+
void load_image(QString p_filename, QString p_charname, QString p_miscname);
};
-class EffectLayer : public AOLayer {
+class EffectLayer : public AOLayer
+{
Q_OBJECT
+
public:
- EffectLayer(QWidget *p_parent, AOApplication *p_ao_app);
+ EffectLayer(AOApplication *p_ao_app, QWidget *p_parent = nullptr);
+
void load_image(QString p_filename, bool p_looping);
};
-class InterfaceLayer : public AOLayer {
+class InterfaceLayer : public AOLayer
+{
Q_OBJECT
+
public:
- InterfaceLayer(QWidget *p_parent, AOApplication *p_ao_app);
+ InterfaceLayer(AOApplication *p_ao_app, QWidget *p_parent = nullptr);
+
void load_image(QString p_filename, QString p_miscname);
};
-class StickerLayer : public AOLayer {
+class StickerLayer : public AOLayer
+{
Q_OBJECT
+
public:
- StickerLayer(QWidget *p_parent, AOApplication *p_ao_app);
+ StickerLayer(AOApplication *p_ao_app, QWidget *p_parent = nullptr);
+
void load_image(QString p_charname);
};
-
-#endif // AOLAYER_H
diff --git a/src/aomusicplayer.cpp b/src/aomusicplayer.cpp
index 3f7c43e..4265a46 100644
--- a/src/aomusicplayer.cpp
+++ b/src/aomusicplayer.cpp
@@ -1,77 +1,99 @@
#include "aomusicplayer.h"
+
+#include "file_functions.h"
#include "options.h"
-#include "bass.h"
-#include "file_functions.h"
+#include
-AOMusicPlayer::AOMusicPlayer(QWidget *parent, AOApplication *p_ao_app)
-{
- m_parent = parent;
- ao_app = p_ao_app;
-}
+#include
+#include
+#include
+
+AOMusicPlayer::AOMusicPlayer(AOApplication *ao_app)
+ : ao_app(ao_app)
+{}
AOMusicPlayer::~AOMusicPlayer()
{
- for (int n_stream = 0; n_stream < m_channelmax; ++n_stream) {
+ for (int n_stream = 0; n_stream < STREAM_COUNT; ++n_stream)
+ {
BASS_ChannelStop(m_stream_list[n_stream]);
}
}
-QString AOMusicPlayer::play(QString p_song, int channel, bool loop,
- int effect_flags)
+QString AOMusicPlayer::playStream(QString song, int streamId, bool loopEnabled, int effectFlags)
{
- channel = channel % m_channelmax;
- if (channel < 0) // wtf?
+ if (!ensureValidStreamId(streamId))
+ {
return "[ERROR] Invalid Channel";
- unsigned int flags = BASS_STREAM_PRESCAN | BASS_STREAM_AUTOFREE |
- BASS_UNICODE | BASS_ASYNCFILE;
- unsigned int streaming_flags = BASS_STREAM_AUTOFREE;
- if (loop) {
- flags |= BASS_SAMPLE_LOOP;
- streaming_flags |= BASS_SAMPLE_LOOP;
}
- QString f_path = p_song;
- DWORD newstream;
- if (f_path.startsWith("http")) {
- if (!Options::getInstance().streamingEnabled()) {
- BASS_ChannelStop(m_stream_list[channel]);
- return QObject::tr("[MISSING] Streaming disabled.");
+ quint32 flags = BASS_STREAM_AUTOFREE;
+ if (loopEnabled)
+ {
+ flags |= BASS_SAMPLE_LOOP;
+ }
+
+ QString f_path = song;
+ DWORD newstream;
+ if (f_path.startsWith("http"))
+ {
+ if (!Options::getInstance().streamingEnabled())
+ {
+ BASS_ChannelStop(m_stream_list[streamId]);
+ return QObject::tr("[MISSING] Streaming disabled.");
}
QUrl l_url = QUrl(f_path);
- newstream = BASS_StreamCreateURL(l_url.toEncoded().toStdString().c_str(), 0, streaming_flags, nullptr, 0);
+ newstream = BASS_StreamCreateURL(l_url.toEncoded().toStdString().c_str(), 0, flags, nullptr, 0);
}
- else {
- f_path = ao_app->get_real_path(ao_app->get_music_path(p_song));
- if (f_path.endsWith(".mo3") || f_path.endsWith(".xm") || f_path.endsWith(".mod") || f_path.endsWith(".s3m") || f_path.endsWith(".it") || f_path.endsWith(".mtm") || f_path.endsWith(".umx") )
- newstream = BASS_MusicLoad(FALSE,f_path.utf16(), 0, 0, flags, 1);
+ else
+ {
+ flags |= BASS_STREAM_PRESCAN | BASS_UNICODE | BASS_ASYNCFILE;
+
+ f_path = ao_app->get_real_path(ao_app->get_music_path(song));
+
+ QString extension = f_path.split('.').last();
+ static const QStringList VALID_EXTENSION_LIST{"mo3", "xm", "mod", "s3m", "it", "mtm", "umx"};
+ if (VALID_EXTENSION_LIST.contains(extension, Qt::CaseInsensitive))
+ {
+ newstream = BASS_MusicLoad(FALSE, f_path.utf16(), 0, 0, flags, 1);
+ }
else
+ {
newstream = BASS_StreamCreateFile(FALSE, f_path.utf16(), 0, 0, flags);
+ }
}
- int error_code = BASS_ErrorGetCode();
-
+ int error = BASS_ErrorGetCode();
if (Options::getInstance().audioOutputDevice() != "default")
- BASS_ChannelSetDevice(m_stream_list[channel], BASS_GetDevice());
+ {
+ BASS_ChannelSetDevice(m_stream_list[streamId], BASS_GetDevice());
+ }
+
+ m_loop_start[streamId] = 0;
+ m_loop_end[streamId] = 0;
QString d_path = f_path + ".txt";
-
- loop_start[channel] = 0;
- loop_end[channel] = 0;
- if (loop && file_exists(d_path)) // Contains loop/etc. information file
+ if (loopEnabled && file_exists(d_path)) // Contains loop/etc. information file
{
QStringList lines = ao_app->read_file(d_path).split("\n");
bool seconds_mode = false;
- foreach (QString line, lines) {
+ foreach (QString line, lines)
+ {
QStringList args = line.split("=");
if (args.size() < 2)
+ {
continue;
+ }
QString arg = args[0].trimmed();
- if (arg == "seconds") {
- if (args[1].trimmed() == "true") {
+ if (arg == "seconds")
+ {
+ if (args[1].trimmed() == "true")
+ {
seconds_mode = true; // Use new epic behavior
continue;
}
+
continue;
}
@@ -86,117 +108,133 @@ QString AOMusicPlayer::play(QString p_song, int channel, bool loop,
// Calculate the bytes for loop_start/loop_end to use with the sync proc
QWORD bytes;
- if (seconds_mode) {
- bytes =
- BASS_ChannelSeconds2Bytes(newstream, args[1].trimmed().toDouble());
+ if (seconds_mode)
+ {
+ bytes = BASS_ChannelSeconds2Bytes(newstream, args[1].trimmed().toDouble());
}
- else {
- bytes = static_cast(args[1].trimmed().toUInt() * sample_size *
- num_channels);
+ else
+ {
+ bytes = static_cast(args[1].trimmed().toUInt() * sample_size * num_channels);
}
if (arg == "loop_start")
- loop_start[channel] = bytes;
+ {
+ m_loop_start[streamId] = bytes;
+ }
else if (arg == "loop_length")
- loop_end[channel] = loop_start[channel] + bytes;
+ {
+ m_loop_end[streamId] = m_loop_start[streamId] + bytes;
+ }
else if (arg == "loop_end")
- loop_end[channel] = bytes;
+ {
+ m_loop_end[streamId] = bytes;
+ }
}
- qDebug() << "Found data file for song" << p_song << "length"
- << BASS_ChannelGetLength(newstream, BASS_POS_BYTE) << "loop start"
- << loop_start[channel] << "loop end" << loop_end[channel];
+ qDebug() << "Found data file for song" << song << "length" << BASS_ChannelGetLength(newstream, BASS_POS_BYTE) << "loop start" << m_loop_start[streamId] << "loop end" << m_loop_end[streamId];
}
- if (BASS_ChannelIsActive(m_stream_list[channel]) == BASS_ACTIVE_PLAYING) {
- DWORD oldstream = m_stream_list[channel];
+ if (BASS_ChannelIsActive(m_stream_list[streamId]) == BASS_ACTIVE_PLAYING)
+ {
+ DWORD oldstream = m_stream_list[streamId];
- if (effect_flags & SYNC_POS) {
+ if (effectFlags & SYNC_POS)
+ {
BASS_ChannelLock(oldstream, true);
// Sync it with the new sample
- BASS_ChannelSetPosition(newstream,
- BASS_ChannelGetPosition(oldstream, BASS_POS_BYTE),
- BASS_POS_BYTE);
+ BASS_ChannelSetPosition(newstream, BASS_ChannelGetPosition(oldstream, BASS_POS_BYTE), BASS_POS_BYTE);
BASS_ChannelLock(oldstream, false);
}
- if ((effect_flags & FADE_OUT) && m_volume[channel] > 0) {
+ if ((effectFlags & FADE_OUT) && m_volume[streamId] > 0)
+ {
// Fade out the other sample and stop it (due to -1)
- BASS_ChannelSlideAttribute(oldstream, BASS_ATTRIB_VOL | BASS_SLIDE_LOG,
- -1, 4000);
+ BASS_ChannelSlideAttribute(oldstream, BASS_ATTRIB_VOL | BASS_SLIDE_LOG, -1, 4000);
}
else
- BASS_ChannelStop(
- oldstream); // Stop the sample since we don't need it anymore
+ {
+ BASS_ChannelStop(oldstream); // Stop the sample since we don't need it anymore
+ }
}
else
- BASS_ChannelStop(m_stream_list[channel]);
+ {
+ BASS_ChannelStop(m_stream_list[streamId]);
+ }
- m_stream_list[channel] = newstream;
+ m_stream_list[streamId] = newstream;
BASS_ChannelPlay(newstream, false);
- if (effect_flags & FADE_IN) {
+ if (effectFlags & FADE_IN)
+ {
// Fade in our sample
BASS_ChannelSetAttribute(newstream, BASS_ATTRIB_VOL, 0);
- BASS_ChannelSlideAttribute(newstream, BASS_ATTRIB_VOL,
- static_cast(m_volume[channel] / 100.0f),
- 1000);
+ BASS_ChannelSlideAttribute(newstream, BASS_ATTRIB_VOL, static_cast(m_volume[streamId] / 100.0f), 1000);
}
else
- this->set_volume(m_volume[channel], channel);
+ {
+ this->setStreamVolume(m_volume[streamId], streamId);
+ }
- BASS_ChannelSetSync(newstream, BASS_SYNC_DEV_FAIL, 0,
- ao_app->BASSreset, 0);
+ BASS_ChannelSetSync(newstream, BASS_SYNC_DEV_FAIL, 0, ao_app->BASSreset, 0);
- this->set_looping(loop, channel); // Have to do this here due to any
- // crossfading-related changes, etc.
+ this->setStreamLooping(loopEnabled, streamId); // Have to do this here due to any
+ // crossfading-related changes, etc.
- bool is_stop = (p_song == "~stop.mp3");
- QString p_song_clear = QUrl(p_song).fileName();
+ bool is_stop = (song == "~stop.mp3");
+ QString p_song_clear = QUrl(song).fileName();
p_song_clear = p_song_clear.left(p_song_clear.lastIndexOf('.'));
- if (is_stop && channel == 0) { // don't send text on channels besides 0
+ if (is_stop && streamId == 0)
+ { // don't send text on channels besides 0
return QObject::tr("None");
}
- if (error_code == BASS_ERROR_HANDLE) { // Cheap hack to see if file missing
+ if (error == BASS_ERROR_HANDLE)
+ { // Cheap hack to see if file missing
return QObject::tr("[MISSING] %1").arg(p_song_clear);
}
- if (p_song.startsWith("http") && channel == 0) {
+ if (song.startsWith("http") && streamId == 0)
+ {
return QObject::tr("[STREAM] %1").arg(p_song_clear);
}
- if (channel == 0)
+ if (streamId == 0)
+ {
return p_song_clear;
+ }
return "";
}
-void AOMusicPlayer::stop(int channel)
+void AOMusicPlayer::setMuted(bool enabled)
{
- BASS_ChannelStop(m_stream_list[channel]);
-}
-
-void AOMusicPlayer::set_muted(bool toggle)
-{
- m_muted = toggle;
+ m_muted = enabled;
// Update all volume based on the mute setting
- for (int n_stream = 0; n_stream < m_channelmax; ++n_stream) {
- set_volume(m_volume[n_stream], n_stream);
+ for (int n_stream = 0; n_stream < STREAM_COUNT; ++n_stream)
+ {
+ setStreamVolume(m_volume[n_stream], n_stream);
}
}
-void AOMusicPlayer::set_volume(int p_value, int channel)
+void AOMusicPlayer::setStreamVolume(int value, int streamId)
{
- m_volume[channel] = p_value;
+ if (!ensureValidStreamId(streamId))
+ {
+ qWarning().noquote() << QObject::tr("Invalid stream ID '%2'").arg(streamId);
+ return;
+ }
+
+ m_volume[streamId] = value;
// If muted, volume will always be 0
- float volume = (m_volume[channel] / 100.0f) * !m_muted;
- if (channel < 0) {
- for (int n_stream = 0; n_stream < m_channelmax; ++n_stream) {
- BASS_ChannelSetAttribute(m_stream_list[n_stream], BASS_ATTRIB_VOL,
- volume);
+ float volume = (m_volume[streamId] / 100.0f) * !m_muted;
+ if (streamId < 0)
+ {
+ for (int n_stream = 0; n_stream < STREAM_COUNT; ++n_stream)
+ {
+ BASS_ChannelSetAttribute(m_stream_list[n_stream], BASS_ATTRIB_VOL, volume);
}
}
- else {
- BASS_ChannelSetAttribute(m_stream_list[channel], BASS_ATTRIB_VOL, volume);
+ else
+ {
+ BASS_ChannelSetAttribute(m_stream_list[streamId], BASS_ATTRIB_VOL, volume);
}
}
@@ -210,37 +248,48 @@ void CALLBACK loopProc(HSYNC handle, DWORD channel, DWORD data, void *user)
BASS_ChannelLock(channel, false);
}
-void AOMusicPlayer::set_looping(bool loop_song, int channel)
+void AOMusicPlayer::setStreamLooping(bool enabled, int streamId)
{
- if (!loop_song) {
- if (BASS_ChannelFlags(m_stream_list[channel], 0, 0) & BASS_SAMPLE_LOOP)
- BASS_ChannelFlags(m_stream_list[channel], 0,
- BASS_SAMPLE_LOOP); // remove the LOOP flag
- BASS_ChannelRemoveSync(m_stream_list[channel], loop_sync[channel]);
- loop_sync[channel] = 0;
+ if (!ensureValidStreamId(streamId))
+ {
+ qWarning().noquote() << QObject::tr("Invalid stream ID '%2'").arg(streamId);
return;
}
- BASS_ChannelFlags(m_stream_list[channel], BASS_SAMPLE_LOOP,
- BASS_SAMPLE_LOOP); // set the LOOP flag
- if (loop_sync[channel] != 0) {
- BASS_ChannelRemoveSync(m_stream_list[channel],
- loop_sync[channel]); // remove the sync
- loop_sync[channel] = 0;
+ if (!enabled)
+ {
+ if (BASS_ChannelFlags(m_stream_list[streamId], 0, 0) & BASS_SAMPLE_LOOP)
+ {
+ BASS_ChannelFlags(m_stream_list[streamId], 0,
+ BASS_SAMPLE_LOOP); // remove the LOOP flag
+ }
+ BASS_ChannelRemoveSync(m_stream_list[streamId], m_loop_sync[streamId]);
+ m_loop_sync[streamId] = 0;
+ return;
}
- if (loop_start[channel] < loop_end[channel])
+ BASS_ChannelFlags(m_stream_list[streamId], BASS_SAMPLE_LOOP,
+ BASS_SAMPLE_LOOP); // set the LOOP flag
+ if (m_loop_sync[streamId] != 0)
{
- //Loop when the endpoint is reached.
- loop_sync[channel] = BASS_ChannelSetSync(
- m_stream_list[channel], BASS_SYNC_POS | BASS_SYNC_MIXTIME,
- loop_end[channel], loopProc, &loop_start[channel]);
+ BASS_ChannelRemoveSync(m_stream_list[streamId],
+ m_loop_sync[streamId]); // remove the sync
+ m_loop_sync[streamId] = 0;
+ }
+
+ if (m_loop_start[streamId] < m_loop_end[streamId])
+ {
+ // Loop when the endpoint is reached.
+ m_loop_sync[streamId] = BASS_ChannelSetSync(m_stream_list[streamId], BASS_SYNC_POS | BASS_SYNC_MIXTIME, m_loop_end[streamId], loopProc, &m_loop_start[streamId]);
}
else
{
- //Loop when the end of the file is reached.
- loop_sync[channel] = BASS_ChannelSetSync(
- m_stream_list[channel], BASS_SYNC_END | BASS_SYNC_MIXTIME,
- 0, loopProc, &loop_start[channel]);
+ // Loop when the end of the file is reached.
+ m_loop_sync[streamId] = BASS_ChannelSetSync(m_stream_list[streamId], BASS_SYNC_END | BASS_SYNC_MIXTIME, 0, loopProc, &m_loop_start[streamId]);
}
}
+
+bool AOMusicPlayer::ensureValidStreamId(int streamId)
+{
+ return (streamId >= 0 && streamId < STREAM_COUNT);
+}
diff --git a/src/aomusicplayer.h b/src/aomusicplayer.h
new file mode 100644
index 0000000..707d64a
--- /dev/null
+++ b/src/aomusicplayer.h
@@ -0,0 +1,38 @@
+#pragma once
+
+#include "aoapplication.h"
+
+#include
+
+class AOMusicPlayer
+{
+public:
+ // 0 = music
+ // 1 = ambience
+ static constexpr int STREAM_COUNT = 2;
+
+ explicit AOMusicPlayer(AOApplication *ao_app);
+ virtual ~AOMusicPlayer();
+
+ void setMuted(bool enabled);
+
+ QString playStream(QString song, int streamId, bool loopEnabled, int effectFlags);
+
+ void setStreamVolume(int value, int streamId);
+ void setStreamLooping(bool enabled, int streamId);
+
+ QFutureWatcher m_watcher;
+
+private:
+ AOApplication *ao_app;
+
+ bool m_muted = false;
+
+ int m_volume[STREAM_COUNT]{};
+ HSTREAM m_stream_list[STREAM_COUNT]{};
+ HSYNC m_loop_sync[STREAM_COUNT]{};
+ quint32 m_loop_start[STREAM_COUNT]{};
+ quint32 m_loop_end[STREAM_COUNT]{};
+
+ bool ensureValidStreamId(int streamId);
+};
diff --git a/src/aopacket.cpp b/src/aopacket.cpp
index 4a89e98..cb924cb 100644
--- a/src/aopacket.cpp
+++ b/src/aopacket.cpp
@@ -1,42 +1,51 @@
#include "aopacket.h"
-QString AOPacket::to_string(bool encoded)
+QString AOPacket::encode(QString data)
{
- QStringList contents = m_contents;
- if (encoded) {
- escape(contents);
+ return data.replace("#", "").replace("%", "").replace("$", "").replace("&", "");
+}
+
+QString AOPacket::decode(QString data)
+{
+ return data.replace("", "#").replace("", "%").replace("", "$").replace("", "&");
+}
+
+AOPacket::AOPacket()
+{}
+
+AOPacket::AOPacket(QString header)
+ : m_header(header)
+{}
+
+AOPacket::AOPacket(QString header, QStringList content)
+ : m_header(header)
+ , m_content(content)
+{}
+
+QString AOPacket::header()
+{
+ return m_header;
+}
+
+QStringList &AOPacket::content()
+{
+ return m_content;
+}
+
+QString AOPacket::toString(bool ensureEncoded)
+{
+ QString message = m_header;
+ if (!m_content.isEmpty())
+ {
+ for (QString item : qAsConst(m_content))
+ {
+ if (ensureEncoded)
+ {
+ item = encode(item);
+ }
+ message += "#" + item;
+ }
}
- // Our packet is just the header by itself
- if (contents.isEmpty()) {
- return m_header + "#%";
- }
- return m_header + "#" + contents.join("#") + "#%";
-}
-
-void AOPacket::net_encode()
-{
- escape(m_contents);
-}
-
-void AOPacket::net_decode()
-{
- unescape(m_contents);
-}
-
-void AOPacket::escape(QStringList &contents)
-{
- contents.replaceInStrings("#", "")
- .replaceInStrings("%", "")
- .replaceInStrings("$", "")
- .replaceInStrings("&", "");
-
-}
-
-void AOPacket::unescape(QStringList &contents)
-{
- contents.replaceInStrings("", "#")
- .replaceInStrings("", "%")
- .replaceInStrings("", "$")
- .replaceInStrings("", "&");
-
+
+ return message + "#%";
}
diff --git a/src/aopacket.h b/src/aopacket.h
new file mode 100644
index 0000000..91fb1f7
--- /dev/null
+++ b/src/aopacket.h
@@ -0,0 +1,26 @@
+#pragma once
+
+#include
+#include
+#include
+
+class AOPacket
+{
+public:
+ static QString encode(QString data);
+ static QString decode(QString data);
+
+ AOPacket();
+ AOPacket(QString header);
+ AOPacket(QString header, QStringList content);
+
+ QString header();
+ QStringList &content();
+
+ QString toString(bool ensureEncoded = false);
+
+private:
+ QString m_header;
+ QStringList m_content;
+};
+Q_DECLARE_METATYPE(AOPacket)
diff --git a/src/aosfxplayer.cpp b/src/aosfxplayer.cpp
index 8d88667..96b5d45 100644
--- a/src/aosfxplayer.cpp
+++ b/src/aosfxplayer.cpp
@@ -1,101 +1,155 @@
#include "aosfxplayer.h"
+
#include "file_functions.h"
-AOSfxPlayer::AOSfxPlayer(QWidget *parent, AOApplication *p_ao_app)
+AOSfxPlayer::AOSfxPlayer(AOApplication *ao_app)
+ : ao_app(ao_app)
+{}
+
+int AOSfxPlayer::volume()
{
- m_parent = parent;
- ao_app = p_ao_app;
+ return m_volume * 100;
}
-void AOSfxPlayer::clear()
+void AOSfxPlayer::setVolume(int value)
{
- for (int n_stream = 0; n_stream < m_channelmax; ++n_stream) {
- BASS_ChannelStop(m_stream_list[n_stream]);
- }
- set_volume_internal(m_volume);
+ m_volume = value;
+ updateInternalVolume();
}
-void AOSfxPlayer::loop_clear()
+void AOSfxPlayer::play(QString path)
{
- for (int n_stream = 0; n_stream < m_channelmax; ++n_stream) {
- if ((BASS_ChannelFlags(m_stream_list[n_stream], 0, 0) & BASS_SAMPLE_LOOP))
- BASS_ChannelStop(m_stream_list[n_stream]);
- }
- set_volume_internal(m_volume);
-}
-
-void AOSfxPlayer::play(QString p_sfx, QString p_character, QString p_misc)
-{
- for (int i = 0; i < m_channelmax; ++i) {
- if (BASS_ChannelIsActive(m_stream_list[i]) == BASS_ACTIVE_PLAYING)
- m_channel = (i + 1) % m_channelmax;
- else {
- m_channel = i;
+ for (int i = 0; i < STREAM_COUNT; ++i)
+ {
+ if (BASS_ChannelIsActive(m_stream[i]) == BASS_ACTIVE_PLAYING)
+ {
+ m_current_stream_id = (i + 1) % STREAM_COUNT;
+ }
+ else
+ {
+ m_current_stream_id = i;
break;
}
}
- QString path = ao_app->get_sfx(p_sfx, p_misc, p_character);
+
if (path.endsWith(".opus"))
- m_stream_list[m_channel] = BASS_OPUS_StreamCreateFile(
- FALSE, path.utf16(), 0, 0,
- BASS_STREAM_AUTOFREE | BASS_UNICODE | BASS_ASYNCFILE);
- else
- m_stream_list[m_channel] = BASS_StreamCreateFile(
- FALSE, path.utf16(), 0, 0,
- BASS_STREAM_AUTOFREE | BASS_UNICODE | BASS_ASYNCFILE);
-
- set_volume_internal(m_volume);
-
- BASS_ChannelSetDevice(m_stream_list[m_channel], BASS_GetDevice());
- BASS_ChannelPlay(m_stream_list[m_channel], false);
- BASS_ChannelSetSync(m_stream_list[m_channel], BASS_SYNC_DEV_FAIL, 0,
- ao_app->BASSreset, 0);
-}
-
-void AOSfxPlayer::stop(int channel)
-{
- if (channel == -1) {
- channel = m_channel;
+ {
+ m_stream[m_current_stream_id] = BASS_OPUS_StreamCreateFile(FALSE, path.utf16(), 0, 0, BASS_STREAM_AUTOFREE | BASS_UNICODE | BASS_ASYNCFILE);
}
- BASS_ChannelStop(m_stream_list[channel]);
+ else
+ {
+ m_stream[m_current_stream_id] = BASS_StreamCreateFile(FALSE, path.utf16(), 0, 0, BASS_STREAM_AUTOFREE | BASS_UNICODE | BASS_ASYNCFILE);
+ }
+
+ updateInternalVolume();
+
+ BASS_ChannelSetDevice(m_stream[m_current_stream_id], BASS_GetDevice());
+ BASS_ChannelPlay(m_stream[m_current_stream_id], false);
+ BASS_ChannelSetSync(m_stream[m_current_stream_id], BASS_SYNC_DEV_FAIL, 0, ao_app->BASSreset, 0);
}
-void AOSfxPlayer::set_muted(bool toggle)
+void AOSfxPlayer::findAndPlaySfx(QString sfx)
+{
+ // TODO replace this with proper pathing tools
+ findAndPlayCharacterShout(sfx, QString(), QString());
+}
+
+void AOSfxPlayer::findAndPlayCharacterSfx(QString sfx, QString character)
+{
+ // TODO replace this with proper pathing tools
+ findAndPlayCharacterShout(sfx, character, QString());
+}
+
+void AOSfxPlayer::findAndPlayCharacterShout(QString shout, QString character, QString group)
+{
+ QString file_path = ao_app->get_sfx(shout, group, character);
+ if (file_exists(file_path))
+ {
+ play(file_path);
+ }
+}
+
+void AOSfxPlayer::stopAll()
+{
+ for (int i = 0; i < STREAM_COUNT; ++i)
+ {
+ stop(i);
+ }
+}
+
+void AOSfxPlayer::stopAllLoopingStream()
+{
+ for (int i = 0; i < STREAM_COUNT; ++i)
+ {
+ if (BASS_ChannelFlags(m_stream[i], 0, 0) & BASS_SAMPLE_LOOP)
+ {
+ stop(i);
+ }
+ }
+}
+
+void AOSfxPlayer::stop(int streamId)
+{
+ streamId = maybeFetchCurrentStreamId(streamId);
+ if (!ensureValidStreamId(streamId))
+ {
+ qWarning().noquote() << QObject::tr("Failed to stop stream; invalid stream ID '%1'").arg(streamId);
+ return;
+ }
+
+ BASS_ChannelStop(m_stream[streamId]);
+}
+
+void AOSfxPlayer::setMuted(bool toggle)
{
m_muted = toggle;
// Update the audio volume
- set_volume_internal(m_volume);
+ updateInternalVolume();
}
-void AOSfxPlayer::set_volume(qreal p_value)
+void AOSfxPlayer::updateInternalVolume()
{
- m_volume = p_value * 0.01;
- set_volume_internal(m_volume);
-}
-
-void AOSfxPlayer::set_volume_internal(qreal p_value)
-{
- // If muted, volume will always be 0
- float volume = static_cast(p_value) * !m_muted;
- for (int n_stream = 0; n_stream < m_channelmax; ++n_stream) {
- BASS_ChannelSetAttribute(m_stream_list[n_stream], BASS_ATTRIB_VOL, volume);
+ float volume = m_muted ? 0.0f : m_volume;
+ for (int i = 0; i < STREAM_COUNT; ++i)
+ {
+ BASS_ChannelSetAttribute(m_stream[i], BASS_ATTRIB_VOL, volume);
}
}
-void AOSfxPlayer::set_looping(bool toggle, int channel)
+void AOSfxPlayer::setLooping(bool toggle, int streamId)
{
- if (channel == -1) {
- channel = m_channel;
+ streamId = maybeFetchCurrentStreamId(streamId);
+ if (!ensureValidStreamId(streamId))
+ {
+ qWarning().noquote() << QObject::tr("Failed to setup stream loop; invalid stream ID '%1'").arg(streamId);
+ return;
}
+
m_looping = toggle;
- if (BASS_ChannelFlags(m_stream_list[channel], 0, 0) & BASS_SAMPLE_LOOP) {
+ if (BASS_ChannelFlags(m_stream[streamId], 0, 0) & BASS_SAMPLE_LOOP)
+ {
if (m_looping == false)
- BASS_ChannelFlags(m_stream_list[channel], 0,
+ {
+ BASS_ChannelFlags(m_stream[streamId], 0,
BASS_SAMPLE_LOOP); // remove the LOOP flag
+ }
}
- else {
+ else
+ {
if (m_looping == true)
- BASS_ChannelFlags(m_stream_list[channel], BASS_SAMPLE_LOOP,
+ {
+ BASS_ChannelFlags(m_stream[streamId], BASS_SAMPLE_LOOP,
BASS_SAMPLE_LOOP); // set the LOOP flag
+ }
}
}
+
+int AOSfxPlayer::maybeFetchCurrentStreamId(int streamId)
+{
+ return streamId == -1 ? m_current_stream_id : streamId;
+}
+
+bool AOSfxPlayer::ensureValidStreamId(int streamId)
+{
+ return streamId >= 0 && streamId < STREAM_COUNT;
+}
diff --git a/src/aosfxplayer.h b/src/aosfxplayer.h
new file mode 100644
index 0000000..7669f0d
--- /dev/null
+++ b/src/aosfxplayer.h
@@ -0,0 +1,45 @@
+#pragma once
+
+#include "aoapplication.h"
+
+#include
+#include
+
+#include
+#include
+
+class AOSfxPlayer
+{
+public:
+ static constexpr int STREAM_COUNT = 5;
+
+ AOSfxPlayer(AOApplication *ao_app);
+
+ int volume();
+ void setVolume(int value);
+
+ void play(QString path);
+ void stop(int streamId = -1);
+ void stopAll();
+ void stopAllLoopingStream();
+
+ void findAndPlaySfx(QString sfx);
+ void findAndPlayCharacterSfx(QString sfx, QString character);
+ void findAndPlayCharacterShout(QString shout, QString character, QString group);
+
+ void setMuted(bool toggle);
+ void setLooping(bool toggle, int streamId = -1);
+
+private:
+ AOApplication *ao_app;
+
+ int m_volume = 0;
+ bool m_muted = false;
+ bool m_looping = true;
+ HSTREAM m_stream[STREAM_COUNT]{};
+ int m_current_stream_id = 0;
+
+ int maybeFetchCurrentStreamId(int streamId);
+ bool ensureValidStreamId(int streamId);
+ void updateInternalVolume();
+};
diff --git a/src/aotextarea.cpp b/src/aotextarea.cpp
index a425903..08885da 100644
--- a/src/aotextarea.cpp
+++ b/src/aotextarea.cpp
@@ -1,43 +1,37 @@
#include "aotextarea.h"
-AOTextArea::AOTextArea(QWidget *p_parent, int p_log_length) : QTextBrowser(p_parent)
+AOTextArea::AOTextArea(QWidget *parent)
+ : AOTextArea(5000, parent)
+{}
+
+AOTextArea::AOTextArea(int maximumLogLenth, QWidget *parent)
+ : QTextBrowser(parent)
{
- this->document()->setMaximumBlockCount(p_log_length);
+ document()->setMaximumBlockCount(maximumLogLenth);
}
-void AOTextArea::append_linked(QString p_message)
-{
- QString result = p_message.toHtmlEscaped()
- .replace("\n", "
")
- .replace(url_parser_regex, "\\1");
- this->insertHtml(result);
-}
-
-void AOTextArea::append_chatmessage(QString p_name, QString p_message,
- QString p_name_colour, QString p_color)
+void AOTextArea::addMessage(QString name, QString message, QString nameColor, QString messageColor)
{
const QTextCursor old_cursor = this->textCursor();
const int old_scrollbar_value = this->verticalScrollBar()->value();
- const bool is_scrolled_down =
- old_scrollbar_value == this->verticalScrollBar()->maximum();
+ const bool is_scrolled_down = old_scrollbar_value == this->verticalScrollBar()->maximum();
this->moveCursor(QTextCursor::End);
this->append("");
- if (!p_name.isEmpty()) {
- this->insertHtml("" + p_name.toHtmlEscaped() +
- ": ");
+ if (!name.isEmpty())
+ {
+ this->insertHtml("" + name.toHtmlEscaped() + ": ");
// cheap workarounds ahoy
- p_message += " ";
+ message += " ";
}
- QString result = p_message.toHtmlEscaped()
- .replace("\n", "
")
- .replace(url_parser_regex, "\\1");
+ QString result = message.toHtmlEscaped().replace("\n", "
").replace(url_parser_regex, "\\1");
- if (!p_color.isEmpty()) {
- result = "" + result + "";
+ if (!messageColor.isEmpty())
+ {
+ result = "" + result + "";
}
this->insertHtml(result);
@@ -45,36 +39,17 @@ void AOTextArea::append_chatmessage(QString p_name, QString p_message,
this->auto_scroll(old_cursor, old_scrollbar_value, is_scrolled_down);
}
-void AOTextArea::append_error(QString p_message)
+void AOTextArea::auto_scroll(QTextCursor old_cursor, int old_scrollbar_value, bool is_scrolled_down)
{
- const QTextCursor old_cursor = this->textCursor();
- const int old_scrollbar_value = this->verticalScrollBar()->value();
- const bool is_scrolled_down =
- old_scrollbar_value == this->verticalScrollBar()->maximum();
-
- this->moveCursor(QTextCursor::End);
-
- this->append("");
-
- p_message += " ";
- QString result = p_message.replace("\n", "
")
- .replace(url_parser_regex, "\\1");
-
- this->insertHtml("" + result + "");
-
- this->auto_scroll(old_cursor, old_scrollbar_value, is_scrolled_down);
-}
-
-void AOTextArea::auto_scroll(QTextCursor old_cursor, int old_scrollbar_value,
- bool is_scrolled_down)
-{
- if (old_cursor.hasSelection() || !is_scrolled_down) {
+ if (old_cursor.hasSelection() || !is_scrolled_down)
+ {
// The user has selected text or scrolled away from the bottom: maintain
// position.
this->setTextCursor(old_cursor);
this->verticalScrollBar()->setValue(old_scrollbar_value);
}
- else {
+ else
+ {
// The user hasn't selected any text and the scrollbar is at the bottom:
// scroll to the bottom.
this->moveCursor(QTextCursor::End);
diff --git a/src/aotextarea.h b/src/aotextarea.h
new file mode 100644
index 0000000..b24ab2d
--- /dev/null
+++ b/src/aotextarea.h
@@ -0,0 +1,23 @@
+#pragma once
+
+#include
+#include
+#include
+#include
+#include
+
+class AOTextArea : public QTextBrowser
+{
+ Q_OBJECT
+
+public:
+ AOTextArea(QWidget *parent = nullptr);
+ AOTextArea(int maximumLogLenth, QWidget *parent = nullptr);
+
+ void addMessage(QString name, QString message, QString nameColor, QString messageColor = QString());
+
+private:
+ const QRegularExpression url_parser_regex = QRegularExpression("\\b(https?://\\S+\\.\\S+)\\b");
+
+ void auto_scroll(QTextCursor old_cursor, int scrollbar_value, bool is_scrolled_down);
+};
diff --git a/src/aotextboxwidgets.cpp b/src/aotextboxwidgets.cpp
index 1a16e8f..a6999be 100644
--- a/src/aotextboxwidgets.cpp
+++ b/src/aotextboxwidgets.cpp
@@ -1,21 +1,44 @@
#include "aotextboxwidgets.h"
-AOChatboxLabel::AOChatboxLabel(QWidget *parent) : QLabel(parent) {}
+AOChatboxLabel::AOChatboxLabel(QWidget *parent)
+ : QLabel(parent)
+{}
+
+void AOChatboxLabel::setOutlineColor(QColor color)
+{
+ m_outline_color = color;
+}
+
+void AOChatboxLabel::setOutlineWidth(int width)
+{
+ m_outline_width = width;
+}
+
+void AOChatboxLabel::setIsOutlined(bool outlined)
+{
+ m_outline = outlined;
+}
+
+void AOChatboxLabel::setTextColor(QColor color)
+{
+ m_text_color = color;
+}
void AOChatboxLabel::paintEvent(QPaintEvent *event)
{
- if (is_outlined) {
+ if (m_outline)
+ {
QBrush brush;
QPen pen;
- QPointF baseline(outline_width, fontMetrics().height());
+ QPointF baseline(m_outline_width, fontMetrics().height());
// Set up brush (base text)
- brush.setColor(text_color);
+ brush.setColor(m_text_color);
brush.setStyle(Qt::SolidPattern);
// Set up outline
- pen.setColor(outline_color);
- pen.setWidthF(outline_width);
+ pen.setColor(m_outline_color);
+ pen.setWidthF(m_outline_width);
QPainterPath path;
path.addText(baseline, font(), text());
@@ -30,7 +53,8 @@ void AOChatboxLabel::paintEvent(QPaintEvent *event)
painter.setBrush(brush);
painter.drawPath(path);
}
- else {
+ else
+ {
// Use the default renderer
QLabel::paintEvent(event);
}
diff --git a/src/aotextboxwidgets.h b/src/aotextboxwidgets.h
new file mode 100644
index 0000000..fa7288f
--- /dev/null
+++ b/src/aotextboxwidgets.h
@@ -0,0 +1,32 @@
+#pragma once
+
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+
+class AOChatboxLabel : public QLabel
+{
+ Q_OBJECT
+
+public:
+ AOChatboxLabel(QWidget *parent);
+
+ void setIsOutlined(bool outlined);
+ void setOutlineColor(QColor color);
+ void setOutlineWidth(int width);
+
+ void setTextColor(QColor color);
+
+protected:
+ void paintEvent(QPaintEvent *event);
+
+private:
+ bool m_outline = false;
+ QColor m_outline_color;
+ int m_outline_width = 1;
+ QColor m_text_color;
+};
diff --git a/src/aoutils.cpp b/src/aoutils.cpp
index ee2e90b..dd88a0a 100644
--- a/src/aoutils.cpp
+++ b/src/aoutils.cpp
@@ -28,15 +28,15 @@ void AOUtils::migrateEffects(QSettings &p_effects_ini)
p_effects_ini.endGroup();
const QStringList l_property_list{
- "sound",
- "scaling",
- "stretch",
- "ignore_offset",
- "under_chatbox",
+ "sound",
+ "scaling",
+ "stretch",
+ "ignore_offset",
+ "under_chatbox",
};
const QMap> l_property_replacement_list{
- {"under_chatbox", {"layer", "character"}},
+ {"under_chatbox", {"layer", "character"}},
};
QStringList l_key_list;
@@ -65,9 +65,10 @@ void AOUtils::migrateEffects(QSettings &p_effects_ini)
p_effects_ini.setValue("cull", true);
p_effects_ini.setValue("layer", "character");
- if (i_effect_key == "realization") {
- p_effects_ini.setValue("stretch", true);
- p_effects_ini.setValue("layer", "chat");
+ if (i_effect_key == "realization")
+ {
+ p_effects_ini.setValue("stretch", true);
+ p_effects_ini.setValue("layer", "chat");
}
for (const QString &i_property : l_property_list)
diff --git a/include/aoutils.h b/src/aoutils.h
similarity index 78%
rename from include/aoutils.h
rename to src/aoutils.h
index a4fd7bb..1fe03fd 100644
--- a/include/aoutils.h
+++ b/src/aoutils.h
@@ -1,5 +1,4 @@
-#ifndef AOUTILS_H
-#define AOUTILS_H
+#pragma once
#include
@@ -10,6 +9,4 @@ namespace AOUtils
* @param QSettings object reference of the old effects.ini
*/
void migrateEffects(QSettings &p_fileName);
-};
-
-#endif // AOUTILS_H
+}; // namespace AOUtils
diff --git a/src/charselect.cpp b/src/charselect.cpp
index 443c1f2..bc4032f 100644
--- a/src/charselect.cpp
+++ b/src/charselect.cpp
@@ -7,9 +7,9 @@
void Courtroom::construct_char_select()
{
- this->setWindowFlags( (this->windowFlags() | Qt::CustomizeWindowHint) & ~Qt::WindowMaximizeButtonHint);
+ this->setWindowFlags((this->windowFlags() | Qt::CustomizeWindowHint) & ~Qt::WindowMaximizeButtonHint);
- ui_char_select_background = new AOImage(this, ao_app);
+ ui_char_select_background = new AOImage(ao_app, this);
ui_char_select_background->setObjectName("ui_char_select_background");
ui_char_list = new QTreeWidget(ui_char_select_background);
@@ -24,19 +24,19 @@ void Courtroom::construct_char_select()
ui_char_buttons = new QWidget(ui_char_select_background);
ui_char_buttons->setObjectName("ui_char_buttons");
- ui_back_to_lobby = new AOButton(ui_char_select_background, ao_app);
+ ui_back_to_lobby = new AOButton(ao_app, ui_char_select_background);
ui_back_to_lobby->setObjectName("ui_back_to_lobby");
ui_char_password = new QLineEdit(ui_char_select_background);
ui_char_password->setPlaceholderText(tr("Password"));
ui_char_password->setObjectName("ui_char_password");
- ui_char_select_left = new AOButton(ui_char_select_background, ao_app);
+ ui_char_select_left = new AOButton(ao_app, ui_char_select_background);
ui_char_select_left->setObjectName("ui_char_select_left");
- ui_char_select_right = new AOButton(ui_char_select_background, ao_app);
+ ui_char_select_right = new AOButton(ao_app, ui_char_select_background);
ui_char_select_right->setObjectName("ui_char_select_right");
- ui_spectator = new AOButton(ui_char_select_background, ao_app);
+ ui_spectator = new AOButton(ao_app, ui_char_select_background);
ui_spectator->setText(tr("Spectator"));
ui_spectator->setObjectName("ui_spectator");
@@ -52,44 +52,38 @@ void Courtroom::construct_char_select()
ui_char_taken->setText(tr("Taken"));
ui_char_taken->setObjectName("ui_char_taken");
- connect(ui_char_list, &QTreeWidget::itemDoubleClicked,
- this, &Courtroom::on_char_list_double_clicked);
+ connect(ui_char_list, &QTreeWidget::itemDoubleClicked, this, &Courtroom::on_char_list_double_clicked);
- connect(ui_back_to_lobby, &AOButton::clicked, this,
- &Courtroom::on_back_to_lobby_clicked);
+ connect(ui_back_to_lobby, &AOButton::clicked, this, &Courtroom::on_back_to_lobby_clicked);
- connect(ui_char_select_left, &AOButton::clicked, this,
- &Courtroom::on_char_select_left_clicked);
- connect(ui_char_select_right, &AOButton::clicked, this,
- &Courtroom::on_char_select_right_clicked);
+ connect(ui_char_select_left, &AOButton::clicked, this, &Courtroom::on_char_select_left_clicked);
+ connect(ui_char_select_right, &AOButton::clicked, this, &Courtroom::on_char_select_right_clicked);
connect(ui_spectator, &AOButton::clicked, this, &Courtroom::on_spectator_clicked);
- connect(ui_char_search, &QLineEdit::textEdited,this,
- &Courtroom::on_char_search_changed);
- connect(ui_char_passworded, &QCheckBox::stateChanged, this,
- &Courtroom::on_char_passworded_clicked);
- connect(ui_char_taken, &QCheckBox::stateChanged, this,
- &Courtroom::on_char_taken_clicked);
-
+ connect(ui_char_search, &QLineEdit::textEdited, this, &Courtroom::on_char_search_changed);
+ connect(ui_char_passworded, &QCheckBox::stateChanged, this, &Courtroom::on_char_passworded_clicked);
+ connect(ui_char_taken, &QCheckBox::stateChanged, this, &Courtroom::on_char_taken_clicked);
}
void Courtroom::set_char_select()
{
QString filename = "courtroom_design.ini";
- pos_size_type f_charselect =
- ao_app->get_element_dimensions("char_select", filename);
+ pos_size_type f_charselect = ao_app->get_element_dimensions("char_select", filename);
- if (f_charselect.width < 0 || f_charselect.height < 0) {
+ if (f_charselect.width < 0 || f_charselect.height < 0)
+ {
qWarning() << "did not find char_select width or height in "
- "courtroom_design.ini!";
+ "courtroom_design.ini!";
this->setFixedSize(714, 668);
}
else
+ {
this->setFixedSize(f_charselect.width, f_charselect.height);
+ }
ui_char_select_background->resize(f_charselect.width, f_charselect.height);
- ui_char_select_background->set_image("charselect_background");
+ ui_char_select_background->setImage("charselect_background");
ui_char_search->setFocus();
set_size_and_pos(ui_char_search, "char_search");
@@ -122,8 +116,8 @@ void Courtroom::set_char_select_page()
ui_char_select_left->hide();
ui_char_select_right->hide();
- for (AOCharButton *i_button : qAsConst(ui_char_button_list)) {
- i_button->reset();
+ for (AOCharButton *i_button : qAsConst(ui_char_button_list))
+ {
i_button->hide();
i_button->move(0, 0);
}
@@ -131,34 +125,40 @@ void Courtroom::set_char_select_page()
int total_pages = ui_char_button_list_filtered.size() / max_chars_on_page;
int chars_on_page = 0;
- if (ui_char_button_list_filtered.size() % max_chars_on_page != 0) {
+ if (ui_char_button_list_filtered.size() % max_chars_on_page != 0)
+ {
++total_pages;
// i. e. not on the last page
if (total_pages > current_char_page + 1)
+ {
chars_on_page = max_chars_on_page;
+ }
else
+ {
chars_on_page = ui_char_button_list_filtered.size() % max_chars_on_page;
+ }
}
else
+ {
chars_on_page = max_chars_on_page;
+ }
if (total_pages > current_char_page + 1)
+ {
ui_char_select_right->show();
+ }
if (current_char_page > 0)
+ {
ui_char_select_left->show();
+ }
- QPoint f_spacing =
- ao_app->get_button_spacing("char_button_spacing", "courtroom_design.ini");
+ QPoint f_spacing = ao_app->get_button_spacing("char_button_spacing", "courtroom_design.ini");
int s_button_size = button_width * Options::getInstance().themeScalingFactor();
- char_columns =
- ((ui_char_buttons->width() - s_button_size) / (f_spacing.x() + s_button_size)) +
- 1;
- char_rows = ((ui_char_buttons->height() - s_button_size) /
- (f_spacing.y() + s_button_size)) +
- 1;
+ char_columns = ((ui_char_buttons->width() - s_button_size) / (f_spacing.x() + s_button_size)) + 1;
+ char_rows = ((ui_char_buttons->height() - s_button_size) / (f_spacing.y() + s_button_size)) + 1;
max_chars_on_page = char_columns * char_rows;
@@ -169,11 +169,13 @@ void Courtroom::on_char_list_double_clicked(QTreeWidgetItem *p_item, int column)
{
Q_UNUSED(column);
int cid = p_item->text(1).toInt();
- if (cid == -1 && !p_item->isExpanded()) {
+ if (cid == -1 && !p_item->isExpanded())
+ {
p_item->setExpanded(true);
return;
}
- else if (cid == -1) {
+ else if (cid == -1)
+ {
p_item->setExpanded(false);
return;
}
@@ -185,10 +187,10 @@ void Courtroom::char_clicked(int n_char)
if (n_char != -1)
{
QString char_name = char_list.at(n_char).name;
- QString char_ini_path = ao_app->get_real_path(
- ao_app->get_character_path(char_name, "char.ini"));
+ QString char_ini_path = ao_app->get_real_path(ao_app->get_character_path(char_name, "char.ini"));
- if (!file_exists(char_ini_path)) {
+ if (!file_exists(char_ini_path))
+ {
call_error(tr("Could not find character (char.ini) for %1").arg(char_name));
return;
}
@@ -196,14 +198,13 @@ void Courtroom::char_clicked(int n_char)
qDebug() << "Found char.ini for" << char_name << "at" << char_ini_path;
}
- if (n_char != m_cid || n_char == -1) {
- ao_app->send_server_packet(
- new AOPacket("PW", {ui_char_password->text()}));
- ao_app->send_server_packet(
- new AOPacket("CC", {QString::number(ao_app->client_id),
- QString::number(n_char), get_hdid()}));
+ if (n_char != m_cid || n_char == -1)
+ {
+ ao_app->send_server_packet(AOPacket("PW", {ui_char_password->text()}));
+ ao_app->send_server_packet(AOPacket("CC", {QString::number(ao_app->client_id), QString::number(n_char), get_hdid()}));
}
- if (n_char == m_cid || n_char == -1) {
+ if (n_char == m_cid || n_char == -1)
+ {
update_character(n_char);
enter_courtroom();
set_courtroom_size();
@@ -212,7 +213,7 @@ void Courtroom::char_clicked(int n_char)
void Courtroom::on_char_button_context_menu_requested(const QPoint &pos)
{
- AOCharButton* button = qobject_cast(sender());
+ AOCharButton *button = qobject_cast(sender());
int n_char = ui_char_button_list.indexOf(button);
if (n_char == -1)
{
@@ -220,55 +221,54 @@ void Courtroom::on_char_button_context_menu_requested(const QPoint &pos)
}
QString char_name = char_list.at(n_char).name;
- QString char_ini_path = ao_app->get_real_path(
- ao_app->get_character_path(char_name, "char.ini"));
+ QString char_ini_path = ao_app->get_real_path(ao_app->get_character_path(char_name, "char.ini"));
- if (!file_exists(char_ini_path)) {
+ if (!file_exists(char_ini_path))
+ {
call_error(tr("Could not find character (char.ini) for %1").arg(char_name));
return;
}
QMenu *menu = new QMenu(this);
- menu->addAction(QString("Edit " + char_name + "/char.ini"), this,
- [=] { QDesktopServices::openUrl(QUrl::fromLocalFile(char_ini_path)); }
- );
+ menu->addAction(QString("Edit " + char_name + "/char.ini"), this, [=] { QDesktopServices::openUrl(QUrl::fromLocalFile(char_ini_path)); });
menu->addSeparator();
- menu->addAction(QString("Open character folder " + char_name), this,
- [=] {
+ menu->addAction(QString("Open character folder " + char_name), this, [=] {
QString p_path = ao_app->get_real_path(VPath("characters/" + char_name + "/"));
- if (!dir_exists(p_path)) {
+ if (!dir_exists(p_path))
+ {
return;
}
QDesktopServices::openUrl(QUrl::fromLocalFile(p_path));
- }
- );
+ });
menu->popup(button->mapToGlobal(pos));
}
void Courtroom::put_button_in_place(int starting, int chars_on_this_page)
{
if (ui_char_button_list_filtered.size() == 0)
+ {
return;
+ }
- QPoint f_spacing =
- ao_app->get_button_spacing("char_button_spacing", "courtroom_design.ini");
+ QPoint f_spacing = ao_app->get_button_spacing("char_button_spacing", "courtroom_design.ini");
int x_mod_count = 0;
int y_mod_count = 0;
int startout = starting;
int size = button_width * Options::getInstance().themeScalingFactor();
- for (int n = starting; n < startout + chars_on_this_page; ++n) {
+ for (int n = starting; n < startout + chars_on_this_page; ++n)
+ {
int x_pos = (size + f_spacing.x()) * x_mod_count;
int y_pos = (size + f_spacing.y()) * y_mod_count;
ui_char_button_list_filtered.at(n)->move(x_pos, y_pos);
ui_char_button_list_filtered.at(n)->show();
- ui_char_button_list_filtered.at(n)->apply_taken_image();
++x_mod_count;
- if (x_mod_count == char_columns) {
+ if (x_mod_count == char_columns)
+ {
++y_mod_count;
x_mod_count = 0;
}
@@ -279,8 +279,10 @@ void Courtroom::character_loading_finished()
{
// Zeroeth, we'll clear any leftover characters from previous server visits.
ao_app->generated_chars = 0;
- if (ui_char_button_list.size() > 0) {
- foreach (AOCharButton *item, ui_char_button_list) {
+ if (ui_char_button_list.size() > 0)
+ {
+ foreach (AOCharButton *item, ui_char_button_list)
+ {
delete item;
}
ui_char_button_list.clear();
@@ -290,34 +292,37 @@ void Courtroom::character_loading_finished()
// First, we'll make all the character buttons in the very beginning.
// We also hide them all, so they can't be accidentally clicked.
// Later on, we'll be revealing buttons as we need them.
- for (int n = 0; n < char_list.size(); n++) {
- AOCharButton *char_button =
- new AOCharButton(ui_char_buttons, ao_app, 0, 0, char_list.at(n).taken);
+ for (int i = 0; i < char_list.size(); i++)
+ {
+ const CharacterSlot &character = char_list.at(i);
+
+ AOCharButton *char_button = new AOCharButton(ao_app, ui_char_buttons);
char_button->setContextMenuPolicy(Qt::CustomContextMenu);
- char_button->reset();
char_button->hide();
- char_button->set_image(char_list.at(n).name);
- char_button->setToolTip(char_list.at(n).name);
+ char_button->setCharacter(character.name);
+ char_button->setTaken(character.taken);
+ char_button->setToolTip(character.name);
ui_char_button_list.append(char_button);
- QString char_category = ao_app->get_category(char_list.at(n).name);
- QList matching_list = ui_char_list->findItems(char_category, Qt::MatchFixedString, 0);
+ QString char_category = ao_app->get_category(character.name);
+ QList matching_list = ui_char_list->findItems(char_category, Qt::MatchFixedString, 0);
// create the character tree item
QTreeWidgetItem *treeItem = new QTreeWidgetItem();
- treeItem->setText(0, char_list.at(n).name);
- treeItem->setIcon(
- 0, QIcon(ao_app->get_image_suffix(
- ao_app->get_character_path(char_list.at(n).name, "char_icon"),
- true)));
- treeItem->setText(1, QString::number(n));
+ treeItem->setText(0, character.name);
+ treeItem->setIcon(0, QIcon(ao_app->get_image_suffix(ao_app->get_character_path(character.name, "char_icon"), true)));
+ treeItem->setText(1, QString::number(i));
// category logic
QTreeWidgetItem *category;
if (char_category == "") // no category
+ {
ui_char_list->addTopLevelItem(treeItem);
- else if (!matching_list.isEmpty()) { // our category already exists
+ }
+ else if (!matching_list.isEmpty())
+ { // our category already exists
category = matching_list[0];
category->addChild(treeItem);
}
- else { // we need to make a new category
+ else
+ { // we need to make a new category
category = new QTreeWidgetItem();
category->setText(0, char_category);
category->setText(1, "-1");
@@ -327,14 +332,14 @@ void Courtroom::character_loading_finished()
}
ui_char_list->sortItems(0, Qt::AscendingOrder);
-
- connect(char_button, &AOCharButton::clicked,
- [this, n]() { this->char_clicked(n); });
+
+ connect(char_button, &AOCharButton::clicked, this, [this, i]() { this->char_clicked(i); });
connect(char_button, &AOCharButton::customContextMenuRequested, this, &Courtroom::on_char_button_context_menu_requested);
// This part here serves as a way of showing to the player that the game is
// still running, it is just loading the pictures of the characters.
- if (ao_app->lobby_constructed) {
+ if (ao_app->is_lobby_constructed())
+ {
ao_app->generated_chars++;
}
}
@@ -344,39 +349,40 @@ void Courtroom::character_loading_finished()
void Courtroom::filter_character_list()
{
ui_char_button_list_filtered.clear();
- for (int i = 0; i < char_list.size(); i++) {
+ for (int i = 0; i < char_list.size(); i++)
+ {
AOCharButton *current_char = ui_char_button_list.at(i);
- QTreeWidgetItem* current_char_list_item = ui_char_list->findItems(QString::number(i), Qt::MatchExactly | Qt::MatchRecursive, 1)[0];
-
-
+ QTreeWidgetItem *current_char_list_item = ui_char_list->findItems(QString::number(i), Qt::MatchExactly | Qt::MatchRecursive, 1)[0];
// It seems passwording characters is unimplemented yet?
// Until then, this will stay here, I suppose.
// if (ui_char_passworded->isChecked() && character_is_passworded??)
// continue;
- if (!ui_char_taken->isChecked() && char_list.at(i).taken) {
+ if (!ui_char_taken->isChecked() && char_list.at(i).taken)
+ {
current_char_list_item->setHidden(true);
continue;
}
- if (!char_list.at(i).name.contains(ui_char_search->text(),
- Qt::CaseInsensitive)) {
+ if (!char_list.at(i).name.contains(ui_char_search->text(), Qt::CaseInsensitive))
+ {
current_char_list_item->setHidden(true);
continue;
- }
+ }
// We only really need to update the fact that a character is taken
// for the buttons that actually appear.
// You'd also update the passwordedness and etc. here later.
- current_char->reset();
current_char_list_item->setHidden(false);
- current_char->set_taken(char_list.at(i).taken);
+ current_char->setTaken(char_list.at(i).taken);
current_char_list_item->setText(0, char_list.at(i).name);
// reset disabled
current_char_list_item->setDisabled(false);
if (char_list.at(i).taken) // woops, we are taken
+ {
current_char_list_item->setDisabled(true);
+ }
ui_char_button_list_filtered.append(current_char);
}
@@ -385,8 +391,17 @@ void Courtroom::filter_character_list()
set_char_select_page();
}
-void Courtroom::on_char_search_changed() { filter_character_list(); }
+void Courtroom::on_char_search_changed()
+{
+ filter_character_list();
+}
-void Courtroom::on_char_passworded_clicked() { filter_character_list(); }
+void Courtroom::on_char_passworded_clicked()
+{
+ filter_character_list();
+}
-void Courtroom::on_char_taken_clicked() { filter_character_list(); }
+void Courtroom::on_char_taken_clicked()
+{
+ filter_character_list();
+}
diff --git a/src/chatlogpiece.cpp b/src/chatlogpiece.cpp
index 64ffefe..d8ef294 100644
--- a/src/chatlogpiece.cpp
+++ b/src/chatlogpiece.cpp
@@ -1,57 +1,33 @@
#include "chatlogpiece.h"
-chatlogpiece::chatlogpiece()
-{
- name = tr("UNKNOWN");
- showname = tr("UNKNOWN");
- message = tr("UNKNOWN");
- color = 0;
- action = "";
- datetime = QDateTime::currentDateTimeUtc();
-}
+#include