From: Shamus Hammons Date: Mon, 18 Jan 2010 21:29:21 +0000 (+0000) Subject: Minor tweaks to get things compiling/running X-Git-Tag: 2.0.0~34^2~52 X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=51dd66b8138173fdb3d9722f617c80911929c189;p=virtualjaguar Minor tweaks to get things compiling/running --- diff --git a/Makefile b/Makefile index 9b05b78..ab65a75 100644 --- a/Makefile +++ b/Makefile @@ -206,7 +206,7 @@ obj/moc_%.o: obj/moc_%.cpp @echo -e "\033[01;33m***\033[00;32m Compiling $<...\033[00m" @$(CC) -c $(QT_CXXFLAGS) $(QT_INCPATH) -o $@ $< -obj/qrc_vj.cpp: src/gui/vj.qrc src/gui/res/vj.xpm +obj/qrc_vj.cpp: src/gui/vj.qrc res/vj.xpm @echo -e "\033[01;33m***\033[00;32m Creating qrc_vj.cpp...\033[00m" @/usr/bin/rcc -name vj src/gui/vj.qrc -o obj/qrc_vj.cpp diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp deleted file mode 100644 index 2cdd58d..0000000 --- a/src/gui/gui.cpp +++ /dev/null @@ -1,699 +0,0 @@ -// -// GUI.CPP -// -// Graphical User Interface support -// by James L. Hammons -// - -#include "gui.h" - -#include -#include "crc32.h" -#include "file.h" -#include "jaguar.h" -#include "log.h" -#include "sdlemu_opengl.h" -#include "settings.h" -#include "tom.h" -#include "video.h" - -// Once these are split off, these may not be needed anymore... -#include "button.h" -#include "element.h" -#include "filelist.h" -#include "guimisc.h" -#include "image.h" -#include "listbox.h" -#include "menu.h" -#include "pushbutton.h" -#include "slideswitch.h" -#include "text.h" -#include "textedit.h" -#include "window.h" - -// Private function prototypes - -Window * LoadROM(void); -Window * ResetJaguar(void); -Window * ResetJaguarCD(void); -Window * RunEmu(void); -Window * Quit(void); -Window * About(void); -Window * MiscOptions(void); - -// Local global variables - -bool showGUI = false; -bool exitGUI = false; // GUI (emulator) done variable -int mouseX = 0, mouseY = 0; -uint32 background[1280 * 256]; // GUI background buffer -bool showMessage = false; -//uint32 showMessageTimeout; -//char messageBuffer[200]; -bool finished = false; - -// -// GUI stuff--it's not crunchy, it's GUI! ;-) -// - -void GUIInit(void) -{ - SDL_ShowCursor(SDL_DISABLE); - SDL_GetMouseState(&mouseX, &mouseY); -} - -void GUIDone(void) -{ -} - -// -// GUI main loop -// -//bool GUIMain(void) -bool GUIMain(char * filename) -{ -WriteLog("GUI: Inside GUIMain...\n"); - - uint32 pointerBGSave[6 * 8 + 2]; - pointerBGSave[0] = 6; - pointerBGSave[1] = 8; - -// Need to set things up so that it loads and runs a file if given on the command line. !!! FIX !!! [DONE] -// extern uint32 * backbuffer; -// bool done = false; - SDL_Event event; - Window * mainWindow = NULL; - - // Set up the GUI classes... -// Element::SetScreenAndPitch(backbuffer, GetSDLScreenWidthInPixels()); - Element::SetScreenAndPitch((uint32 *)sdlemuGetOverlayPixels(), sdlemuGetOverlayWidthInPixels()); - sdlemuEnableOverlay(); - - Menu mainMenu; - MenuItems mi; - mi.title = "Jaguar"; - mi.item.push_back(NameAction("Load...", LoadROM, SDLK_l)); - mi.item.push_back(NameAction("Reset", ResetJaguar, SDLK_r)); - if (CDBIOSLoaded) - mi.item.push_back(NameAction("Reset CD", ResetJaguarCD, SDLK_c)); - mi.item.push_back(NameAction("Run", RunEmu, SDLK_ESCAPE)); - mi.item.push_back(NameAction("")); - mi.item.push_back(NameAction("Quit", Quit, SDLK_q)); - mainMenu.Add(mi); - mi.title = "Settings"; - mi.item.clear(); - mi.item.push_back(NameAction("Video...")); - mi.item.push_back(NameAction("Audio...")); - mi.item.push_back(NameAction("Misc...", MiscOptions, SDLK_m)); - mainMenu.Add(mi); - mi.title = "Info"; - mi.item.clear(); - mi.item.push_back(NameAction("About...", About)); - mainMenu.Add(mi); - - bool showMouse = true; - - // Grab the BG where the mouse will be painted (prime the backstore) - -/* -DISNOWOK -Bitmap ptr = { 6, 8, 4, -""//"000011112222333344445555" -//"000011112222333344445555" -//"000011112222333344445555" -//"000011112222333344445555" -//"000011112222333344445555" -//"000011112222333344445555" -//"000011112222333344445555" -//"000011112222333344445555" -};//*/ - uint32 * overlayPixels = (uint32 *)sdlemuGetOverlayPixels(); - uint32 count = 2; - - for(uint32 y=0; y 000100 01000 10001 -> 0001 0000 0100 0010 1000 1100 -> 10 42 8C - for(uint32 i=0; iAddElement(new Text(8, 8, "Error!")); - mainWindow->AddElement(new Text(8, 24, errText)); - } - } - -WriteLog("GUI: Entering main loop...\n"); - while (!exitGUI) - { - if (SDL_PollEvent(&event)) - { - if (event.type == SDL_USEREVENT) - { - if (event.user.code == WINDOW_CLOSE) - { - delete mainWindow; - mainWindow = NULL; - } - else if (event.user.code == MENU_ITEM_CHOSEN) - { - // Confused? Let me enlighten... What we're doing here is casting - // data1 as a pointer to a function which returns a Window pointer and - // which takes no parameters (the "(Window *(*)(void))" part), then - // derefencing it (the "*" in front of that) in order to call the - // function that it points to. Clear as mud? Yeah, I hate function - // pointers too, but what else are you gonna do? - mainWindow = (*(Window *(*)(void))event.user.data1)(); - - while (SDL_PollEvent(&event)); // Flush the event queue... - event.type = SDL_MOUSEMOTION; - int mx, my; - SDL_GetMouseState(&mx, &my); - event.motion.x = mx, event.motion.y = my; - SDL_PushEvent(&event); // & update mouse position...! - - oldMouseX = mouseX, oldMouseY = mouseY; - mouseX = mx, mouseY = my; // This prevents "mouse flash"... - } - } - else if (event.type == SDL_ACTIVEEVENT) - { - if (event.active.state == SDL_APPMOUSEFOCUS) - showMouse = (event.active.gain ? true : false); - } - else if (event.type == SDL_KEYDOWN) - { -// Ugly kludge for windowed<-->fullscreen switching... -uint8 * keystate = SDL_GetKeyState(NULL); - -if ((keystate[SDLK_LALT] || keystate[SDLK_RALT]) & keystate[SDLK_RETURN]) - ToggleFullscreen(); - - if (mainWindow) - mainWindow->HandleKey(event.key.keysym.sym); - else - mainMenu.HandleKey(event.key.keysym.sym); - } - else if (event.type == SDL_MOUSEMOTION) - { - oldMouseX = mouseX, oldMouseY = mouseY; - mouseX = event.motion.x, mouseY = event.motion.y; - - if (mainWindow) - mainWindow->HandleMouseMove(mouseX, mouseY); - else - mainMenu.HandleMouseMove(mouseX, mouseY); - } - else if (event.type == SDL_MOUSEBUTTONDOWN) - { - uint32 mx = event.button.x, my = event.button.y; - - if (mainWindow) - mainWindow->HandleMouseButton(mx, my, true); - else - mainMenu.HandleMouseButton(mx, my, true); - } - else if (event.type == SDL_MOUSEBUTTONUP) - { - uint32 mx = event.button.x, my = event.button.y; - - if (mainWindow) - mainWindow->HandleMouseButton(mx, my, false); - else - mainMenu.HandleMouseButton(mx, my, false); - } - -//PROBLEM: In order to use the dirty rectangle approach here, we need some way of -// handling it in mainMenu.Draw() and mainWindow->Draw(). !!! FIX !!! -//POSSIBLE SOLUTION: -// When mouse is moving and not on menu or window, can do straight dirty rect. -// When mouse is on menu, need to update screen. Same for buttons on windows... -// What the menu & windows should do is only redraw on a state change. IOW, they -// should call their own/child window's Draw() function instead of doing it top -// level. -//#define NEW_BACKSTORE_METHOD - - // Draw the GUI... -// The way we do things here is kinda stupid (redrawing the screen every frame), but -// it's simple. Perhaps there may be a reason down the road to be more selective with -// our clearing, but for now, this will suffice. -// memset(backbuffer, 0x11, tom_getVideoModeWidth() * 240 * 2); -// memcpy(backbuffer, background, tom_getVideoModeWidth() * 256 * 2); -// memcpy(backbuffer, background, tom_getVideoModeWidth() * 256 * 4); -#ifndef NEW_BACKSTORE_METHOD - memset(sdlemuGetOverlayPixels(), 0, sdlemuGetOverlayWidthInPixels() * 480 * 4); - - mainMenu.Draw(); -//Could do multiple windows here by using a vector + priority info... -//Though the way ZSNES does it seems to be by a bool (i.e., they're always active, just not shown) - if (mainWindow) - mainWindow->Draw(); -#endif - -/*uint32 pBGS[6 * 8 + 3] = { 6, 8, 4, - 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 -};*/ -//This isn't working... Why???? -//It's because DrawTransparentBitmap does alpha blending if it detects zero in the alpha channel. -//So why do it that way? Hm. - overlayPixels = (uint32 *)sdlemuGetOverlayPixels(); - -#ifdef NEW_BACKSTORE_METHOD -// DrawTransparentBitmapDeprecated(overlayPixels, oldMouseX, oldMouseY, pointerBGSave); -// DrawTransparentBitmap(overlayPixels, oldMouseX, oldMouseY, pBGS); - for(uint32 y=0; y> 16) & 0xFF, g = (pixel >> 8) & 0xFF, r = pixel & 0xFF; - pixel = ((r + g + b) / 3) & 0x00FF; - backbuffer[i] = 0xFF000000 | (pixel << 16) | (pixel << 8); - } -return NULL;//*/ - -//This is crappy... !!! FIX !!! - extern bool finished, showGUI; - -// uint32 nFrame = 0, nFrameskip = 0; - uint32 totalFrames = 0; - finished = false; - bool showMessage = true; - uint32 showMsgFrames = 120; - uint8 transparency = 0; - // Pass a message to the "joystick" code to debounce the ESC key... - debounceRunKey = true; - - uint32 cartType = 4; - if (jaguarRomSize == 0x200000) - cartType = 0; - else if (jaguarRomSize == 0x400000) - cartType = 1; - else if (jaguar_mainRom_crc32 == 0x687068D5) - cartType = 2; - else if (jaguar_mainRom_crc32 == 0x55A0669C) - cartType = 3; - - char * cartTypeName[5] = { "2M Cartridge", "4M Cartridge", "CD BIOS", "CD Dev BIOS", "Homebrew" }; - uint32 elapsedTicks = SDL_GetTicks(), frameCount = 0, framesPerSecond = 0; - - while (true) - { - // Set up new backbuffer with new pixels and data - JaguarExecute(backbuffer, true); -// JaguarExecuteNew(); - totalFrames++; -//WriteLog("Frame #%u...\n", totalFrames); -//extern bool doDSPDis; -//if (totalFrames == 373) -// doDSPDis = true; - -//This sucks... !!! FIX !!! - joystick_exec(); -//This is done here so that the crud below doesn't get on our GUI background... - if (finished) - break; - - // Some QnD GUI stuff here... - if (showGUI) - { - extern uint32 gpu_pc, dsp_pc; - DrawString(backbuffer, 8, 8, false, "GPU PC: %08X", gpu_pc); - DrawString(backbuffer, 8, 16, false, "DSP PC: %08X", dsp_pc); - DrawString(backbuffer, 8, 32, false, "%u FPS", framesPerSecond); - } - - if (showMessage) - { -// FF0F -> 1111 11 11 000 0 1111 -> 3F 18 0F -// 3FE3 -> 0011 11 11 111 0 0011 -> 0F 3F 03 -/* DrawStringTrans((uint32 *)backbuffer, 8, 24*8, 0xFF0F, transparency, "Running..."); - DrawStringTrans((uint32 *)backbuffer, 8, 26*8, 0x3FE3, transparency, "%s, run address: %06X", cartTypeName[cartType], jaguarRunAddress); - DrawStringTrans((uint32 *)backbuffer, 8, 27*8, 0x3FE3, transparency, "CRC: %08X", jaguar_mainRom_crc32);//*/ -//first has wrong color. !!! FIX !!! - DrawStringTrans(backbuffer, 8, 24*8, 0xFF7F63FF, transparency, "Running..."); - DrawStringTrans(backbuffer, 8, 26*8, 0xFF1FFF3F, transparency, "%s, run address: %06X", cartTypeName[cartType], jaguarRunAddress); - DrawStringTrans(backbuffer, 8, 27*8, 0xFF1FFF3F, transparency, "CRC: %08X", jaguar_mainRom_crc32); - - if (showMsgFrames == 0) - { - transparency++; - - if (transparency == 33) -{ - showMessage = false; -/*extern bool doGPUDis; -doGPUDis = true;//*/ -} - - } - else - showMsgFrames--; - } - - RenderBackbuffer(); - frameCount++; - - if (SDL_GetTicks() - elapsedTicks > 250) - elapsedTicks += 250, framesPerSecond = frameCount * 4, frameCount = 0; - } - - // Reset the pitch, since it may have been changed in-game... - Element::SetScreenAndPitch((uint32 *)backbuffer, GetSDLScreenWidthInPixels()); - - // Save the background for the GUI... -// memcpy(background, backbuffer, tom_getVideoModeWidth() * 240 * 2); - // In this case, we squash the color to monochrome, then force it to blue + green... - for(uint32 i=0; i> 16) & 0xFF, g = (pixel >> 8) & 0xFF, r = pixel & 0xFF; - pixel = ((r + g + b) / 3) & 0x00FF; - background[i] = 0xFF000000 | (pixel << 16) | (pixel << 8); - } - - return NULL; -} - -#else - -bool debounceRunKey = true; -Window * RunEmu(void) -{ -// extern uint32 * backbuffer; - uint32 * overlayPixels = (uint32 *)sdlemuGetOverlayPixels(); - memset(overlayPixels, 0x00, 640 * 480 * 4); // Clear out overlay... - -//This is crappy... !!! FIX !!! -// extern bool finished, showGUI; - - sdlemuDisableOverlay(); - -// uint32 nFrame = 0, nFrameskip = 0; - uint32 totalFrames = 0; - finished = false; - bool showMessage = true; - uint32 showMsgFrames = 120; - uint8 transparency = 0xFF; - // Pass a message to the "joystick" code to debounce the ESC key... - debounceRunKey = true; - - uint32 cartType = 4; - if (jaguarROMSize == 0x200000) - cartType = 0; - else if (jaguarROMSize == 0x400000) - cartType = 1; - else if (jaguarMainROMCRC32 == 0x687068D5) - cartType = 2; - else if (jaguarMainROMCRC32 == 0x55A0669C) - cartType = 3; - - const char * cartTypeName[5] = { "2M Cartridge", "4M Cartridge", "CD BIOS", "CD Dev BIOS", "Homebrew" }; - uint32 elapsedTicks = SDL_GetTicks(), frameCount = 0, framesPerSecond = 0; - - while (!finished) - { - // Set up new backbuffer with new pixels and data - JaguarExecuteNew(); - totalFrames++; -//WriteLog("Frame #%u...\n", totalFrames); -//extern bool doDSPDis; -//if (totalFrames == 373) -// doDSPDis = true; - -//Problem: Need to do this *only* when the state changes from visible to not... -//Also, need to clear out the GUI when not on (when showMessage is active...) -if (showGUI || showMessage) - sdlemuEnableOverlay(); -else - sdlemuDisableOverlay(); - -//Add in a new function for clearing patches of screen (ClearOverlayRect) - -// Also: Take frame rate into account when calculating fade time... - - // Some QnD GUI stuff here... - if (showGUI) - { - FillScreenRectangle(overlayPixels, 8, 1*FONT_HEIGHT, 128, 4*FONT_HEIGHT, 0x00000000); - extern uint32 gpu_pc, dsp_pc; - DrawString(overlayPixels, 8, 1*FONT_HEIGHT, false, "GPU PC: %08X", gpu_pc); - DrawString(overlayPixels, 8, 2*FONT_HEIGHT, false, "DSP PC: %08X", dsp_pc); - DrawString(overlayPixels, 8, 4*FONT_HEIGHT, false, "%u FPS", framesPerSecond); - } - - if (showMessage) - { - DrawString2(overlayPixels, 8, 24*FONT_HEIGHT, 0x007F63FF, transparency, "Running..."); - DrawString2(overlayPixels, 8, 26*FONT_HEIGHT, 0x001FFF3F, transparency, "%s, run address: %06X", cartTypeName[cartType], jaguarRunAddress); - DrawString2(overlayPixels, 8, 27*FONT_HEIGHT, 0x001FFF3F, transparency, "CRC: %08X", jaguarMainROMCRC32); - - if (showMsgFrames == 0) - { - transparency--; - - if (transparency == 0) -{ - showMessage = false; -/*extern bool doGPUDis; -doGPUDis = true;//*/ -} - - } - else - showMsgFrames--; - } - - frameCount++; - - if (SDL_GetTicks() - elapsedTicks > 250) - elapsedTicks += 250, framesPerSecond = frameCount * 4, frameCount = 0; - } - - // Save the background for the GUI... - // In this case, we squash the color to monochrome, then force it to blue + green... - for(uint32 i=0; i> 16) & 0xFF, g = (pixel >> 8) & 0xFF, r = pixel & 0xFF; - pixel = ((r + g + b) / 3) & 0x00FF; - backbuffer[i] = 0xFF000000 | (pixel << 16) | (pixel << 8); - } - - sdlemuEnableOverlay(); - - return NULL; -} - -#endif - - -Window * Quit(void) -{ - WriteLog("GUI: Quitting due to user request.\n"); - exitGUI = true; - - return NULL; -} - -Window * About(void) -{ - char buf[512]; - sprintf(buf, "SVN %s", __DATE__); -//fprintf(fp, "VirtualJaguar v1.0.8 (Last full build was on %s %s)\n", __DATE__, __TIME__); -//VirtualJaguar v1.0.8 (Last full build was on Dec 30 2004 20:01:31) -//Hardwired, bleh... !!! FIX !!! -uint32 width = 55 * FONT_WIDTH, height = 18 * FONT_HEIGHT; -uint32 xpos = (640 - width) / 2, ypos = (480 - height) / 2; -// Window * window = new Window(8, 16, 50 * FONT_WIDTH, 21 * FONT_HEIGHT); - Window * window = new Window(xpos, ypos, width, height); -// window->AddElement(new Text(8, 8, "Virtual Jaguar 1.0.8")); -// window->AddElement(new Text(8, 8, "Virtual Jaguar CVS 20050110", 0xFF3030FF, 0xFF000000)); -// window->AddElement(new Text(208, 8+0*FONT_HEIGHT, buf, 0xFF3030FF, 0xFF000000)); - window->AddElement(new Text(248, 8+4*FONT_HEIGHT+5, buf, 0xFF3030FF, 0xFF000000)); - window->AddElement(new Text(8, 8+0*FONT_HEIGHT, "Coders:")); - window->AddElement(new Text(16, 8+1*FONT_HEIGHT, "James L. Hammons (shamus)")); - window->AddElement(new Text(16, 8+2*FONT_HEIGHT, "Niels Wagenaar (nwagenaar)")); - window->AddElement(new Text(16, 8+3*FONT_HEIGHT, "Carwin Jones (Caz)")); - window->AddElement(new Text(16, 8+4*FONT_HEIGHT, "Adam Green")); - window->AddElement(new Text(8, 8+6*FONT_HEIGHT, "Testers:")); - window->AddElement(new Text(16, 8+7*FONT_HEIGHT, "Guruma")); - window->AddElement(new Text(8, 8+9*FONT_HEIGHT, "Thanks go out to:")); - window->AddElement(new Text(16, 8+10*FONT_HEIGHT, "Aaron Giles for the original CoJag")); - window->AddElement(new Text(16, 8+11*FONT_HEIGHT, "David Raingeard for the original VJ")); - window->AddElement(new Text(16, 8+12*FONT_HEIGHT, "Karl Stenerud for his Musashi 68K emu")); - window->AddElement(new Text(16, 8+13*FONT_HEIGHT, "Sam Lantinga for his amazing SDL libs")); - window->AddElement(new Text(16, 8+14*FONT_HEIGHT, "Ryan C. Gordon for VJ's web presence")); - window->AddElement(new Text(16, 8+15*FONT_HEIGHT, "Curt Vendel for various Jaguar goodies")); - window->AddElement(new Text(16, 8+16*FONT_HEIGHT, "The guys over at Atari Age ;-)")); -// window->AddElement(new Image(8, 8, &vj_title_small)); -// window->AddElement(new Image(width - (vj_title_small.width + 8), 8, &vj_title_small)); - window->AddElement(new Image(width - (((Bitmap *)vj_title_small)->width + 8), 8, &vj_title_small)); - - return window; -} - -Window * MiscOptions(void) -{ - Window * window = new Window(8, 16, 304, 192); - window->AddElement(new PushButton(8, 8, &vjs.useJaguarBIOS, "BIOS")); - window->AddElement(new SlideSwitch(8, 32, &vjs.hardwareTypeNTSC, "PAL", "NTSC")); - window->AddElement(new PushButton(8, 64, &vjs.DSPEnabled, "DSP")); - window->AddElement(new SlideSwitch(24, 88, &vjs.usePipelinedDSP, "Original", "Pipelined")); - window->AddElement(new SlideSwitch(8, 120, (bool *)&vjs.glFilter, "Sharp", "Blurry")); - window->AddElement(new SlideSwitch(8, 152, (bool *)&vjs.renderType, "Normal render", "TV style")); - - window->AddElement(new TextEdit(88, 8, vjs.ROMPath, 20, 0xFF8484FF, 0xFF000000)); - -/*TextEdit(uint32 x, uint32 y, string s, uint32 mss = 10, uint32 fg = 0xFF8484FF, - uint32 bg = 0xFF84FF4D): Element(x, y, 0, 0), fgColor(fg), bgColor(bg), text(s), - caretPos(0), maxScreenSize(mss) {}*/ -// Missing: -// * BIOS path -// * ROM path -// * EEPROM path -// * joystick -// * joystick port -// * OpenGL? -// * GL Filter type -// * Window/fullscreen -// * Key definitions - - return window; -} - -// Function prototype -Window * CrashGracefullyCallback(void); - -//NOTE: Probably should set a flag as well telling it to do a full reset -// of the Jaguar hardware if this happens... -void GUICrashGracefully(const char * reason) -{ - finished = true; // We're finished for now! - - // Since this is used in the menu code as well, we could create another - // internal function called "PushWindowOnQueue" or somesuch - SDL_Event event; - event.type = SDL_USEREVENT; - event.user.code = MENU_ITEM_CHOSEN; - event.user.data1 = (void *)CrashGracefullyCallback; - SDL_PushEvent(&event); -} - -Window * CrashGracefullyCallback(void) -{ - Window * window = new Window(8, 16, 304, 192); - - window->AddElement(new Text(8, 8+0*FONT_HEIGHT, "We CRASHED!!!")); - - return window; -} diff --git a/src/gui/gui.h b/src/gui/gui.h deleted file mode 100644 index 6520f53..0000000 --- a/src/gui/gui.h +++ /dev/null @@ -1,29 +0,0 @@ -// -// GUI.H -// -// Graphical User Interface support -// - -#ifndef __GUI_H__ -#define __GUI_H__ - -#ifdef __cplusplus -extern "C" { -#endif - -void GUIInit(void); -void GUIDone(void); -bool GUIMain(char *); -void GUICrashGracefully(const char *); - -// Exported vars - -extern bool showGUI; -extern bool exitGUI; // Hmm. -extern bool finished; // Current emulator loop is finished - -#ifdef __cplusplus -} -#endif - -#endif // __GUI_H__ diff --git a/src/gui/vj.qrc b/src/gui/vj.qrc index ddd0f3d..65b1eab 100644 --- a/src/gui/vj.qrc +++ b/src/gui/vj.qrc @@ -1,5 +1,5 @@ - res/vj.xpm + ../../res/vj.xpm diff --git a/src/gui/vj_title_small.c b/src/gui/vj_title_small.c deleted file mode 100644 index 66c0519..0000000 --- a/src/gui/vj_title_small.c +++ /dev/null @@ -1,2208 +0,0 @@ -/* GIMP RGBA C-Source image dump (vj-title-small.c) */ - -#if 0 -static const struct { - unsigned int width; - unsigned int height; - unsigned int bytes_per_pixel; /* 3:RGB, 4:RGBA */ - unsigned char pixel_data[197 * 89 * 4 + 1]; -} -#endif -#warning Nonportable!--!!! FIX !!! -uint8 vj_title_small[] = { -// 197, 89, 4, - "\305\0\0\0" - "\131\0\0\0" - "\4\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\21\0\231\372K\0\231\372`\0\231\372C\0" - "\231\372\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\231\3721\0\231\372w\0\231\3724\0\0\0\0\0\0\0\0\0\231\372\23\0\231\372" - "l\0\231\372X\0\231\372\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\3\0\231" - "\3729\0\231\372\\\0\231\372b\0\231\372b\0\231\372b\0\231\372b\0\231\372b" - "\0\231\372b\0\231\372b\0\231\372b\0\231\372b\0\231\372\\\0\231\372'\0\231" - "\372\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\2\0\231\3723\0\231\372\\\0\231\372" - "a\0\231\372a\0\231\372a\0\231\372a\0\231\372a\0\231\372a\0\231\372a\0\231" - "\372a\0\231\372a\0\231\372a\0\231\372a\0\231\372a\0\231\372W\0\231\372%\0" - "\231\372\0\0\231\372\0\0\231\372,\0\231\372y\0\231\372=\0\231\372\1\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231" - "\372\13\0\231\372d\0\231\372e\0\231\372\15\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\231\372\1\0\231\372+\0\231\372[\0\231\372a\0\231\372a\0\231\372a\0\231" - "\372a\0\231\372a\0\231\372a\0\231\372a\0\231\372U\0\231\372'\0\231\372\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\27\0\231\372n\0\231\372M\0\231" - "\372\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\231\372K\0\231\372\346\0\231\372\334\0\231\372\314\0\231" - "\372\353\0\231\372\270\0\231\372\7\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\231\3727\0\231\372\357\0\231\372\310\0\231\372\354\0\231\372" - "(\0\231\372\2\0\231\372\277\0\231\372\323\0\231\372\343\0\231\372\207\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\231\372\12\0\231\372\262\0\231\372\353\0\231\372\313" - "\0\231\372\307\0\231\372\307\0\231\372\307\0\231\372\307\0\231\372\307\0" - "\231\372\307\0\231\372\307\0\231\372\307\0\231\372\307\0\231\372\331\0\231" - "\372\364\0\231\372y\0\231\372\1\0\0\0\0\0\0\0\0\0\231\372m\0\231\372\355" - "\0\231\372\307\0\231\372\304\0\231\372\304\0\231\372\304\0\231\372\304\0" - "\231\372\304\0\231\372\304\0\231\372\304\0\231\372\304\0\231\372\304\0\231" - "\372\304\0\231\372\304\0\231\372\304\0\231\372\315\0\231\372\357\0\231\372" - "C\0\231\372)\0\231\372\357\0\231\372\303\0\231\372\360\0\231\372:\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\1\0\231" - "\372\260\0\231\372\330\0\231\372\336\0\231\372\237\0\231\372\0\0\0\0\0\0" - "\0\0\0\0\231\372\0\0\231\372w\0\231\372\356\0\231\372\323\0\231\372\304\0" - "\231\372\304\0\231\372\304\0\231\372\304\0\231\372\304\0\231\372\304\0\231" - "\372\305\0\231\372\325\0\231\372\356\0\231\372f\0\231\372\0\0\0\0\0\0\0\0" - "\0\0\231\372\12\0\231\372\321\0\231\372\317\0\231\372\353\0\231\372}\0\231" - "\372\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\231\372\0\0\231\372\304\0\231\372\217\0\231\372\11\0\231\372\1\0\231\372" - "%\0\231\372\357\0\231\3728\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\231\372n\0\231\372\305\0\231\372\6\0\231\372\313\0\231\372p\0\231\372" - "\26\0\231\372\362\0\231\3723\0\231\372u\0\231\372\304\0\231\372\2\0\0\0\0" - "\0\0\0\0\0\231\372Q\0\231\372\355\0\231\372$\0\231\372\1\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\4\0\231" - "\372Y\0\231\372\357\0\231\372\25\0\0\0\0\0\0\0\0\0\231\372\313\0\231\372" - "x\0\231\372\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\2\0\231\372\260\0\231\372" - "\224\0\231\372d\0\231\372\320\0\231\372\5\0\231\372\302\0\231\372z\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\16\0" - "\231\372\345\0\231\372F\0\231\372X\0\231\372\336\0\231\372\7\0\0\0\0\0\0" - "\0\0\0\231\372\22\0\231\372\360\0\231\372R\0\231\372\3\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\0\0\231\372\3\0\231\372j\0\231\372" - "\337\0\231\372\17\0\0\0\0\0\0\0\0\0\231\372)\0\231\372\362\0\231\372\36\0" - "\231\372\205\0\231\372\271\0\231\372\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\3\0\231\372\342\0\231\372Q\0\0\0" - "\0\0\0\0\0\0\231\372\0\0\231\372\330\0\231\372`\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\231\372y\0\231\372\275\0\0\0\0\0\231\372\264\0\231" - "\372\202\0\231\372\32\0\231\372\363\0\231\372*\0\231\372a\0\231\372\321\0" - "\231\372\5\0\0\0\0\0\0\0\0\0\231\372}\0\231\372\277\0\231\372\1\0\231\372" - "\5\0\231\372]\0\231\372\223\0\231\372\227\0\231\372\227\0\231\372\227\0\231" - "\372\227\0\231\372\227\0\231\372\207\0\231\3725\0\231\372\0\0\231\372\30" - "\0\231\372\366\0\231\3720\0\0\0\0\0\0\0\0\0\231\372\215\0\231\372\342\0\231" - "\372\236\0\231\372\227\0\231\372\227\0\231\372\224\0\231\372h\0\231\372\11" - "\0\0\0\0\0\231\372\1\0\231\372B\0\231\372\207\0\231\372\227\0\231\372\227" - "\0\231\372\227\0\231\372\251\0\231\372\351\0\231\372^\0\231\372k\0\231\372" - "\311\0\231\372\2\0\231\372\266\0\231\372\201\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\21\0\231\372\351\0\231\372" - ";\0\231\372K\0\231\372\343\0\231\372\11\0\0\0\0\0\0\0\0\0\231\3721\0\231" - "\372\355\0\231\372\27\0\231\372\0\0\231\372>\0\231\372\202\0\231\372\227" - "\0\231\372\227\0\231\372\227\0\231\372\202\0\231\3722\0\231\372\0\0\231\372" - "&\0\231\372\363\0\231\372\36\0\0\0\0\0\0\0\0\0\231\372/\0\231\372\360\0\231" - "\372\25\0\231\372z\0\231\372\275\0\231\372\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\12\0\231\372\354\0\231\372" - "A\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\313\0\231\372k\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372y\0\231\372\275\0\0\0\0\0\231\372\264" - "\0\231\372\202\0\231\372\32\0\231\372\363\0\231\372*\0\231\372a\0\231\372" - "\321\0\231\372\5\0\0\0\0\0\0\0\0\0\231\372\177\0\231\372\271\0\231\372\1" - "\0\231\372g\0\231\372\351\0\231\372\230\0\231\372\215\0\231\372\215\0\231" - "\372\215\0\231\372\215\0\231\372\220\0\231\372\264\0\231\372\351\0\231\372" - "\37\0\231\372\25\0\231\372\364\0\231\3721\0\0\0\0\0\0\0\0\0\231\372\13\0" - "\231\372d\0\231\372\215\0\231\372\215\0\231\372\215\0\231\372\225\0\231\372" - "\337\0\231\372\214\0\231\372\0\0\231\372A\0\231\372\353\0\231\372\247\0\231" - "\372\215\0\231\372\215\0\231\372\215\0\231\372\204\0\231\372O\0\231\372\3" - "\0\231\372k\0\231\372\311\0\231\372\2\0\231\372\266\0\231\372\201\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\21\0\231" - "\372\351\0\231\372<\0\231\372K\0\231\372\343\0\231\372\11\0\0\0\0\0\0\0\0" - "\0\231\372A\0\231\372\346\0\231\372\17\0\231\372*\0\231\372\353\0\231\372" - "\257\0\231\372\217\0\231\372\215\0\231\372\217\0\231\372\266\0\231\372\341" - "\0\231\372\30\0\231\372\27\0\231\372\365\0\231\372*\0\0\0\0\0\0\0\0\0\231" - "\372/\0\231\372\361\0\231\372\25\0\231\372z\0\231\372\275\0\231\372\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\13" - "\0\231\372\354\0\231\372@\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\313\0\231\372" - "k\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372y\0\231\372\275" - "\0\0\0\0\0\231\372\264\0\231\372\202\0\231\372\32\0\231\372\363\0\231\372" - "*\0\231\372a\0\231\372\321\0\231\372\5\0\0\0\0\0\0\0\0\0\231\372\177\0\231" - "\372\272\0\231\372\2\0\231\372\262\0\231\372\215\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\3\0\231\372\333\0\231\372]\0\231\372\25" - "\0\231\372\364\0\231\3721\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\231\372j\0\231\372\321\0\231\372\3\0\231\372\207\0\231" - "\372\264\0\231\372\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231" - "\372k\0\231\372\311\0\231\372\2\0\231\372\266\0\231\372\201\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\21\0\231\372" - "\351\0\231\372<\0\231\372K\0\231\372\343\0\231\372\11\0\0\0\0\0\0\0\0\0\231" - "\372A\0\231\372\346\0\231\372\17\0\231\372d\0\231\372\320\0\231\372\6\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\231\372\12\0\231\372\351\0\231\372J\0\231\372\26\0" - "\231\372\366\0\231\372+\0\0\0\0\0\0\0\0\0\231\372/\0\231\372\361\0\231\372" - "\25\0\231\372z\0\231\372\275\0\231\372\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\13\0\231\372\354\0\231\372@\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\231\372\313\0\231\372k\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\231\372y\0\231\372\275\0\0\0\0\0\231\372\264\0\231" - "\372\202\0\231\372\32\0\231\372\363\0\231\372*\0\231\372a\0\231\372\321\0" - "\231\372\5\0\0\0\0\0\0\0\0\0\231\372\177\0\231\372\272\0\231\372\3\0\231" - "\372\306\0\231\372o\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231" - "\372\0\0\231\372\312\0\231\372g\0\231\372\25\0\231\372\364\0\231\3721\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372Q\0" - "\231\372\337\0\231\372\10\0\231\372\231\0\231\372\235\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372k\0\231\372\311\0\231\372\2" - "\0\231\372\266\0\231\372\201\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\231\372\21\0\231\372\351\0\231\372<\0\231\372K\0\231" - "\372\343\0\231\372\11\0\0\0\0\0\0\0\0\0\231\372A\0\231\372\346\0\231\372" - "\17\0\231\372{\0\231\372\273\0\231\372\1\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372" - "\1\0\231\372\331\0\231\372]\0\231\372\26\0\231\372\366\0\231\372+\0\0\0\0" - "\0\0\0\0\0\231\372/\0\231\372\361\0\231\372\25\0\231\372z\0\231\372\275\0" - "\231\372\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\231\372\13\0\231\372\354\0\231\372@\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372" - "\313\0\231\372k\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372" - "y\0\231\372\275\0\0\0\0\0\231\372\264\0\231\372\202\0\231\372\32\0\231\372" - "\363\0\231\372*\0\231\372^\0\231\372\321\0\231\372\5\0\0\0\0\0\0\0\0\0\231" - "\372\177\0\231\372\272\0\231\372\3\0\231\372\306\0\231\372p\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\0\0\231\372\314\0\231\372g\0" - "\231\372\21\0\231\372\360\0\231\3728\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372Q\0\231\372\337\0\231\372\10\0\231" - "\372\220\0\231\372\247\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\231\372k\0\231\372\311\0\231\372\2\0\231\372\266\0\231\372\201\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372" - "\21\0\231\372\351\0\231\372<\0\231\372K\0\231\372\343\0\231\372\11\0\0\0" - "\0\0\0\0\0\0\231\372A\0\231\372\346\0\231\372\17\0\231\372z\0\231\372\273" - "\0\231\372\1\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\0\0\231\372\326\0\231\372" - "W\0\231\372\26\0\231\372\366\0\231\372+\0\0\0\0\0\0\0\0\0\231\372/\0\231" - "\372\361\0\231\372\25\0\231\372l\0\231\372\312\0\231\372\1\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\13\0\231\372" - "\354\0\231\372@\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\313\0\231\372k\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372y\0\231\372\275\0\0\0\0" - "\0\231\372\264\0\231\372\202\0\231\372\32\0\231\372\363\0\231\372*\0\231" - "\372G\0\231\372\341\0\231\372\27\0\0\0\0\0\0\0\0\0\231\372\177\0\231\372" - "\272\0\231\372\1\0\231\372\250\0\231\372\234\0\231\372\11\0\231\372\4\0\231" - "\372\4\0\231\372\4\0\231\372\4\0\231\372\5\0\231\372\22\0\231\372\343\0\231" - "\372Z\0\231\372\13\0\231\372\345\0\231\372Y\0\231\372\1\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372Q\0\231\372\337\0\231\372" - "\10\0\231\372\200\0\231\372\302\0\231\372\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\231\372k\0\231\372\311\0\231\372\2\0\231\372\230\0" - "\231\372\252\0\231\372\11\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\231\372\21\0\231\372\351\0\231\372<\0\231\372K\0\231\372\343\0" - "\231\372\11\0\0\0\0\0\231\372\1\0\231\372b\0\231\372\334\0\231\372\11\0\231" - "\372d\0\231\372\327\0\231\372\21\0\231\372\5\0\231\372\4\0\231\372\6\0\231" - "\372\31\0\231\372\354\0\231\372E\0\231\372\20\0\231\372\360\0\231\372D\0" - "\231\372\0\0\0\0\0\0\231\372/\0\231\372\361\0\231\372\25\0\231\372a\0\231" - "\372\332\0\231\372\16\0\231\372\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\231\372\13\0\231\372\354\0\231\372@\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\231\372\313\0\231\372k\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\231\372\177\0\231\372\270\0\0\0\0\0\231\372\264\0\231\372\202\0" - "\231\372\32\0\231\372\363\0\231\372*\0\231\372\22\0\231\372\317\0\231\372" - "\332\0\231\372K\0\231\372\0\0\231\372\177\0\231\372\272\0\231\372\1\0\231" - "\372A\0\231\372\356\0\231\372\333\0\231\372\315\0\231\372\315\0\231\372\315" - "\0\231\372\315\0\231\372\320\0\231\372\347\0\231\372\316\0\231\372\23\0\231" - "\372\1\0\231\372\213\0\231\372\361\0\231\372\217\0\231\372\14\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372Q\0\231\372\337\0\231\372\10" - "\0\231\372,\0\231\372\340\0\231\372\306\0\231\372+\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\231\372k\0\231\372\311\0\231\372\2\0\231\3728\0\231" - "\372\342\0\231\372\312\0\231\372,\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\231\372\21\0\231\372\351\0\231\372<\0\231\372K\0\231\372\343\0" - "\231\372\11\0\231\372\17\0\231\372\231\0\231\372\354\0\231\372\177\0\231" - "\372\0\0\231\372!\0\231\372\334\0\231\372\342\0\231\372\321\0\231\372\315" - "\0\231\372\323\0\231\372\345\0\231\372\304\0\231\372\15\0\231\372\2\0\231" - "\372\235\0\231\372\352\0\231\372\204\0\231\372\5\0\231\372/\0\231\372\361" - "\0\231\372\25\0\231\372\36\0\231\372\325\0\231\372\326\0\231\372A\0\231\372" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\13\0\231\372" - "\354\0\231\372@\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\313\0\231\372k\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\2\0\231\372\236\0\231\372\231" - "\0\0\0\0\0\231\372\264\0\231\372\202\0\231\372\32\0\231\372\363\0\231\372" - "*\0\0\0\0\0\231\372\20\0\231\372|\0\231\372\350\0\231\372\27\0\231\372\177" - "\0\231\372\272\0\231\372\1\0\231\372\1\0\231\372!\0\231\372L\0\231\372S\0" - "\231\372S\0\231\372S\0\231\372S\0\231\372S\0\231\372C\0\231\372\23\0\0\0" - "\0\0\0\0\0\0\231\372\4\0\231\372C\0\231\372\346\0\231\372h\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372Q\0\231\372\337\0\231\372\10" - "\0\231\372\0\0\231\372\37\0\231\372\247\0\231\372\304\0\231\372\3\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372k\0\231\372\311\0\231\372\2\0\231\372\0" - "\0\231\372\32\0\231\372\262\0\231\372\253\0\231\372\1\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\231\372\21\0\231\372\351\0\231\372<\0\231\372K\0\231" - "\372\343\0\231\372\11\0\231\372r\0\231\372\331\0\231\3726\0\231\372\2\0\0" - "\0\0\0\231\372\0\0\231\372\23\0\231\372?\0\231\372M\0\231\372S\0\231\372" - "J\0\231\372<\0\231\372\17\0\0\0\0\0\0\0\0\0\231\372\5\0\231\372L\0\231\372" - "\360\0\231\372D\0\231\372/\0\231\372\361\0\231\372\25\0\0\0\0\0\231\372\22" - "\0\231\372\220\0\231\372\334\0\231\372\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\231\372\13\0\231\372\354\0\231\372@\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\231\372\313\0\231\372k\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372" - "\26\0\231\372\245\0\231\372\356\0\231\372D\0\0\0\0\0\231\372\264\0\231\372" - "\202\0\231\372\32\0\231\372\363\0\231\372*\0\0\0\0\0\0\0\0\0\231\372\22\0" - "\231\372\366\0\231\3720\0\231\372\177\0\231\372\272\0\231\372\1\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\231\372\2\0\231\372\22\0\231\372!\0\231\372$\0\231\372$" - "\0\231\372$\0\231\372$\0\231\372\34\0\231\372\10\0\0\0\0\0\231\372\0\0\231" - "\372\246\0\231\372\214\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\231\372Q\0\231\372\337\0\231\372\10\0\0\0\0\0\0\0\0\0\231\372E\0\231\372" - "\342\0\231\372\14\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372k\0\231\372\311" - "\0\231\372\2\0\0\0\0\0\0\0\0\0\231\372d\0\231\372\320\0\231\372\5\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\21\0\231\372\351\0\231\372<\0" - "\231\372K\0\231\372\343\0\231\372\11\0\231\372\237\0\231\372\232\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\6\0\231\372\34\0\231\372+\0\231\3724\0" - "\231\3724\0\231\3724\0\231\3720\0\231\372!\0\231\372\12\0\0\0\0\0\0\0\0\0" - "\231\372\317\0\231\372i\0\231\372/\0\231\372\361\0\231\372\25\0\0\0\0\0\0" - "\0\0\0\231\372%\0\231\372\364\0\231\372\35\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\231\372\7\0\231\372\350\0\231\372H\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\231\372\313\0\231\372k\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\0\0\231" - "\372\250\0\231\372\304\0\231\3725\0\231\372\1\0\0\0\0\0\231\372\265\0\231" - "\372\202\0\231\372\32\0\231\372\363\0\231\372*\0\0\0\0\0\0\0\0\0\231\372" - "\20\0\231\372\366\0\231\3721\0\231\372\177\0\231\372\272\0\231\372\1\0\0" - "\0\0\0\0\0\0\0\231\372\6\0\231\372\233\0\231\372\354\0\231\372\366\0\231" - "\372\370\0\231\372\370\0\231\372\370\0\231\372\370\0\231\372\364\0\231\372" - "\322\0\231\372\"\0\0\0\0\0\231\372\242\0\231\372\227\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372Q\0\231\372\337\0\231\372\10\0\0\0" - "\0\0\0\0\0\0\231\3726\0\231\372\353\0\231\372\24\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\231\372k\0\231\372\311\0\231\372\2\0\0\0\0\0\0\0\0\0\231\372]" - "\0\231\372\323\0\231\372\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231" - "\372\21\0\231\372\351\0\231\372<\0\231\372K\0\231\372\343\0\231\372\11\0" - "\231\372\251\0\231\372\217\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\14\0\231\372" - "\265\0\231\372\356\0\231\372\361\0\231\372\354\0\231\372\354\0\231\372\354" - "\0\231\372\357\0\231\372\360\0\231\372\323\0\231\372\36\0\0\0\0\0\231\372" - "\315\0\231\372i\0\231\372/\0\231\372\361\0\231\372\25\0\0\0\0\0\0\0\0\0\231" - "\372\33\0\231\372\363\0\231\372)\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\231\372\0\0\231\372\313\0\231\372\200\0\231\372\6\0\0\0\0\0\0" - "\0\0\0\231\372\313\0\231\372k\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\3\0\231\372" - "\321\0\231\372d\0\0\0\0\0\231\372\0\0\231\372\33\0\231\372\337\0\231\372" - "]\0\231\372\32\0\231\372\363\0\231\372*\0\0\0\0\0\0\0\0\0\231\372\20\0\231" - "\372\366\0\231\3721\0\231\372\177\0\231\372\272\0\231\372\1\0\0\0\0\0\0\0" - "\0\0\231\372C\0\231\372\363\0\231\372E\0\231\372\33\0\231\372\16\0\231\372" - "\16\0\231\372\16\0\231\372\20\0\231\372!\0\231\372\261\0\231\372\250\0\231" - "\372\0\0\231\372\242\0\231\372\227\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\231\372Q\0\231\372\337\0\231\372\10\0\0\0\0\0\0\0\0\0\231\372" - "5\0\231\372\354\0\231\372\25\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372k\0" - "\231\372\311\0\231\372\2\0\0\0\0\0\0\0\0\0\231\372N\0\231\372\336\0\231\372" - "\12\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\21\0\231\372\351\0" - "\231\372<\0\231\372K\0\231\372\343\0\231\372\11\0\231\372\251\0\231\372\217" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372X\0\231\372\341\0\231\372%\0\231\372\14" - "\0\231\372\4\0\231\372\4\0\231\372\4\0\231\372\11\0\231\372\27\0\231\372" - "\300\0\231\372\216\0\0\0\0\0\231\372\315\0\231\372i\0\231\372/\0\231\372" - "\361\0\231\372\25\0\0\0\0\0\0\0\0\0\231\372\33\0\231\372\363\0\231\372)\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372N\0\231\372" - "\350\0\231\372\274\0\231\372\37\0\0\0\0\0\231\372\313\0\231\372k\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\231\372\7\0\231\372\332\0\231\372W\0\231\372\0\0\231\372" - "U\0\231\372\340\0\231\372\277\0\231\372\14\0\231\372\32\0\231\372\363\0\231" - "\372*\0\0\0\0\0\0\0\0\0\231\372\20\0\231\372\366\0\231\3721\0\231\372\177" - "\0\231\372\272\0\231\372\1\0\0\0\0\0\0\0\0\0\231\372`\0\231\372\330\0\231" - "\372\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372r\0\231\372" - "\314\0\231\372\3\0\231\372\242\0\231\372\227\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\231\372Q\0\231\372\337\0\231\372\10\0\0\0\0\0\0\0" - "\0\0\231\3725\0\231\372\354\0\231\372\25\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\231\372k\0\231\372\311\0\231\372\2\0\0\0\0\0\0\0\0\0\231\372N\0\231\372" - "\336\0\231\372\12\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\21\0" - "\231\372\351\0\231\372<\0\231\372K\0\231\372\343\0\231\372\11\0\231\372\251" - "\0\231\372\217\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372x\0\231\372\276\0\231\372" - "\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\206\0\231\372" - "\262\0\0\0\0\0\231\372\315\0\231\372i\0\231\372/\0\231\372\361\0\231\372" - "\25\0\0\0\0\0\0\0\0\0\231\372\33\0\231\372\363\0\231\372)\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\0\0\231\372$\0\231\372" - "\312\0\231\372\214\0\0\0\0\0\231\372\313\0\231\372k\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\231\372\7\0\231\372\332\0\231\372W\0\231\372\11\0\231\372\345\0\231" - "\372}\0\231\372\11\0\0\0\0\0\231\372\32\0\231\372\363\0\231\372*\0\0\0\0" - "\0\0\0\0\0\231\372\20\0\231\372\366\0\231\3721\0\231\372\177\0\231\372\272" - "\0\231\372\1\0\0\0\0\0\0\0\0\0\231\372a\0\231\372\326\0\231\372\3\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372m\0\231\372\323\0\231\372" - "\4\0\231\372\242\0\231\372\227\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\231\372Q\0\231\372\337\0\231\372\10\0\0\0\0\0\0\0\0\0\231\3725\0" - "\231\372\354\0\231\372\25\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372k\0\231" - "\372\311\0\231\372\2\0\0\0\0\0\0\0\0\0\231\372N\0\231\372\336\0\231\372\12" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\21\0\231\372\351\0\231" - "\372<\0\231\372K\0\231\372\343\0\231\372\11\0\231\372\251\0\231\372\217\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\231\372{\0\231\372\272\0\231\372\1\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\200\0\231\372\265\0\0\0\0\0" - "\231\372\315\0\231\372i\0\231\372/\0\231\372\361\0\231\372\25\0\0\0\0\0\0" - "\0\0\0\231\372\33\0\231\372\363\0\231\372)\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\220\0\231\372\246\0" - "\0\0\0\0\231\372\313\0\231\372k\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\7\0\231" - "\372\332\0\231\372W\0\231\372\34\0\231\372\357\0\231\372/\0\0\0\0\0\0\0\0" - "\0\231\372\32\0\231\372\363\0\231\372*\0\0\0\0\0\0\0\0\0\231\372\20\0\231" - "\372\366\0\231\3721\0\231\372\177\0\231\372\272\0\231\372\1\0\0\0\0\0\0\0" - "\0\0\231\372a\0\231\372\326\0\231\372\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\231\372m\0\231\372\323\0\231\372\4\0\231\372\242\0\231\372" - "\227\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372Q\0\231\372" - "\337\0\231\372\10\0\0\0\0\0\0\0\0\0\231\3725\0\231\372\354\0\231\372\25\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372k\0\231\372\311\0\231\372\2\0\0\0" - "\0\0\0\0\0\0\231\372N\0\231\372\331\0\231\372\10\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\231\372\21\0\231\372\351\0\231\372<\0\231\372K\0\231\372" - "\343\0\231\372\11\0\231\372\251\0\231\372\217\0\0\0\0\0\0\0\0\0\0\0\0\0\231" - "\372{\0\231\372\272\0\231\372\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\231\372\200\0\231\372\265\0\0\0\0\0\231\372\315\0\231\372i\0\231" - "\372/\0\231\372\361\0\231\372\25\0\0\0\0\0\0\0\0\0\231\372\33\0\231\372\363" - "\0\231\372)\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\231\372\220\0\231\372\246\0\0\0\0\0\231\372\313\0\231\372k\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\231\372\7\0\231\372\332\0\231\372W\0\231\372$\0" - "\231\372\357\0\231\372#\0\0\0\0\0\0\0\0\0\231\372\32\0\231\372\363\0\231" - "\372*\0\0\0\0\0\0\0\0\0\231\372\20\0\231\372\366\0\231\3721\0\231\372\177" - "\0\231\372\272\0\231\372\1\0\0\0\0\0\0\0\0\0\231\372a\0\231\372\326\0\231" - "\372\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372m\0\231\372" - "\323\0\231\372\4\0\231\372\242\0\231\372\227\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\231\372Q\0\231\372\337\0\231\372\10\0\231\372\0\0" - "\231\372\0\0\231\3725\0\231\372\354\0\231\372\25\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\231\372k\0\231\372\311\0\231\372\2\0\0\0\0\0\0\0\0\0\231\372N" - "\0\231\372\332\0\231\372\11\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231" - "\372\22\0\231\372\351\0\231\3729\0\231\372K\0\231\372\343\0\231\372\11\0" - "\231\372\251\0\231\372\217\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372{\0\231\372\272" - "\0\231\372\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\200" - "\0\231\372\265\0\0\0\0\0\231\372\315\0\231\372i\0\231\372/\0\231\372\361" - "\0\231\372\25\0\0\0\0\0\0\0\0\0\231\372\33\0\231\372\363\0\231\372)\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231" - "\372\220\0\231\372\246\0\0\0\0\0\231\372\306\0\231\372u\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\231\372\11\0\231\372\335\0\231\372T\0\231\372$\0\231\372\357\0\231" - "\372#\0\0\0\0\0\0\0\0\0\231\372\32\0\231\372\363\0\231\372*\0\0\0\0\0\0\0" - "\0\0\231\372\20\0\231\372\366\0\231\3721\0\231\372\177\0\231\372\272\0\231" - "\372\1\0\0\0\0\0\0\0\0\0\231\372a\0\231\372\326\0\231\372\3\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372m\0\231\372\323\0\231\372\4\0" - "\231\372\242\0\231\372\227\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\231\372Q\0\231\372\337\0\231\372\11\0\231\372\6\0\231\372\2\0\231\372" - "5\0\231\372\354\0\231\372\25\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372k\0" - "\231\372\311\0\231\372\2\0\0\0\0\0\0\0\0\0\231\372C\0\231\372\342\0\231\372" - "\14\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372!\0\231\372\361\0\231" - "\372&\0\231\372K\0\231\372\343\0\231\372\11\0\231\372\251\0\231\372\217\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\231\372{\0\231\372\272\0\231\372\1\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\200\0\231\372\265\0\0\0\0\0" - "\231\372\315\0\231\372i\0\231\372/\0\231\372\361\0\231\372\25\0\0\0\0\0\0" - "\0\0\0\231\372\27\0\231\372\357\0\231\3724\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\220\0\231\372\246\0" - "\0\0\0\0\231\372\225\0\231\372\311\0\231\372V\0\231\372M\0\231\372M\0\231" - "\372s\0\231\372\363\0\231\372/\0\231\372$\0\231\372\357\0\231\372#\0\0\0" - "\0\0\0\0\0\0\231\372\32\0\231\372\363\0\231\372*\0\0\0\0\0\0\0\0\0\231\372" - "\20\0\231\372\366\0\231\3721\0\231\372\177\0\231\372\272\0\231\372\1\0\0" - "\0\0\0\0\0\0\0\231\372a\0\231\372\326\0\231\372\3\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372m\0\231\372\323\0\231\372\4\0\231\372\242" - "\0\231\372\227\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\7\0\0\1\25\0\0\3\3\210\337" - "T\0\226\365\340$\24\40\24C\4\7\33/\3\5\12\0\230\3715\0\231\372\354\0\231" - "\372\25\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372k\0\231\372\310\0\231\372" - "\1\0\0\0\0\0\0\0\0\0\231\372\40\0\231\372\361\0\231\372\214\0\231\372_\0" - "\231\372_\0\231\372_\0\231\372_\0\231\372`\0\231\372\233\0\231\372\347\0" - "\231\372\14\0\231\372K\0\231\372\343\0\231\372\11\0\231\372\251\0\231\372" - "\217\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372{\0\231\372\272\0\231\372\1\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\200\0\231\372\265\0\0" - "\0\0\0\231\372\315\0\231\372i\0\231\372/\0\231\372\361\0\231\372\25\0\0\0" - "\0\0\0\0\0\0\231\372\10\0\231\372\317\0\231\372\247\0\231\372W\0\231\372" - "M\0\231\372M\0\231\372M\0\231\372L\0\231\3727\0\231\372\13\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\231\372\212\0\231\372\256\0\0\0\0\0\231\372\26\0\231\372\252\0\231\372" - "\317\0\231\372\325\0\231\372\325\0\231\372\310\0\231\372m\0\231\372\1\0\231" - "\372(\0\231\372\357\0\231\372\40\0\0\0\0\0\0\0\0\0\231\372\32\0\231\372\362" - "\0\231\372(\0\0\0\0\0\0\0\0\0\231\372\21\0\231\372\366\0\231\3721\0\231\372" - "~\0\231\372\270\0\231\372\1\0\0\0\0\0\0\0\0\0\231\372e\0\231\372\324\0\231" - "\372\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372m\0\231\372" - "\323\0\231\372\4\0\231\372\242\0\231\372\232$\0\0\10""0\0\0\14O\0\0\35Z\0" - "\0,`\0\0Ea\0\0m;Bl\263\11\216\347\362y\4\7\327\216\0\0\351i\0\0q\1\225\364" - "@\0\231\372\346\0\231\372\20\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372k\0" - "\231\372\310\0\231\372\2\0\0\0\0\0\0\0\0\0\231\372\1\0\231\372P\0\231\372" - "\265\0\231\372\306\0\231\372\306\0\231\372\306\0\231\372\306\0\231\372\306" - "\0\231\372\272\0\231\372B\0\0\0\0\0\231\372L\0\231\372\343\0\231\372\11\0" - "\231\372\240\0\231\372\231\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\200\0\231\372" - "\266\0\231\372\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372" - "\200\0\231\372\265\0\0\0\0\0\231\372\315\0\231\372i\0\231\372.\0\231\372" - "\357\0\231\372\25\0\0\0\0\0\0\0\0\0\231\372\0\0\231\372:\0\231\372\265\0" - "\231\372\325\0\231\372\325\0\231\372\325\0\231\372\325\0\231\372\325\0\231" - "\372\343\0\231\372\320\0\231\372\16\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372k\0\231\372\314\0\231" - "\372\6\0\0\0\0\0\0\0\0\0\231\372\1\0\231\372\2\0\231\372\2\0\231\372\1\0" - "\0\0\0\0\0\0\0\0\231\372K\0\231\372\352\0\231\372\16\0\0\0\0\0\0\0\0\0\231" - "\372\20\0\231\372\357\0\231\372C\0\0\0\0\0\0\0\0\0\231\372/\0\231\372\363" - "\0\231\372%\0\231\372h\0\231\372\332\0\231\372\11\0\0\0\0\0\231\372\0\0\231" - "\372\231\0\231\372\266\0\231\372\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\231\372j\1\224\362\330?\15\26&\13\205\332\272$j\256\316|\0\0" - "\261\204\0\0\310\211\0\0\345\177\0\0\314}\0\0\303o\0\0\2332Gu\204\1\226\365" - "\3560;`AR\2\3(:\0\0\14\0\231\372k\0\231\372\320\0\231\372\5\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\231\372Q\0\231\372\340\0\231\372\17\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\231\372\0\0\231\372m\0\231\372\314\0\231\372\2\0\231\372\204\0" - "\231\372\274\0\231\372\3\0\0\0\0\0\231\372\1\0\231\372\250\0\231\372\234" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372x\0\231" - "\372\276\0\231\372\1\0\231\372\316\0\231\372i\0\231\372\31\0\231\372\362" - "\0\231\3723\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\0\0\231\372\2\0\231" - "\372\2\0\231\372\2\0\231\372\2\0\231\372\2\0\231\372\22\0\231\372\345\0\231" - "\372T\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\231\372\36\0\231\372\344\0\231\372\307\0\231\372\234\0\231" - "\372\213\0\231\372\204\0\231\372\204\0\231\372\204\0\231\372\204\0\231\372" - "\215\0\231\372\233\0\231\372\340\0\231\372\231\0\231\372\0\0\0\0\0\0\0\0" - "\0\0\231\372\0\0\231\372\231\0\231\372\341\0\231\372\241\0\231\372\234\0" - "\231\372\333\0\231\372\256\0\231\372\3\0\231\372\40\0\231\372\347\0\231\372" - "\307\0\231\372\225\0\231\372\254\0\231\372\362\0\231\372U\0\0\0\0\23\0\0" - "\1\24\0\0\3#\0\0\11A\0\0\32Z\0\0:g\0\0\\M1P\250\4\224\362\370CKz\354\17\211" - "\340\376[Cn\377\243\0\0\377\243\0\0\377{\0\0\3119\0\0#(\0\0\10)\0\0\3\3\211" - "\341\11\0\231\372\307\0\231\372\323\0\231\372\224\0\231\372\244\0\231\372" - "\346\0\231\372y\0\231\372\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372\20" - "\0\231\372\331\0\231\372\322\0\231\372\242\0\231\372\217\0\231\372\204\0" - "\231\372\204\0\231\372\204\0\231\372\204\0\231\372\204\0\231\372\204\0\231" - "\372\204\0\231\372\204\0\231\372\212\0\231\372\230\0\231\372\267\0\231\372" - "\354\0\231\372u\0\0\0\0\0\231\372,\0\231\372\346\0\231\372\275\0\231\372" - "\221\0\231\372\265\0\231\372\354\0\231\372;\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\372M\0\231\372\347\0\231\372n\0\231\372" - "\357\0\231\372O\0\231\372\3\0\231\372\254\0\231\372\335\0\231\372\241\0\231" - "\372\207\0\231\372\204\0\231\372\204\0\231\372\204\0\231\372\204\0\231\372" - "\204\0\231\372\204\0\231\372\204\0\231\372\206\0\231\372\244\0\231\372\355" - "\0\231\372*\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\231\372\0\0\231\372%\0\231\372v\0\231\372\217\0\231" - "\372\230\0\231\372\241\0\231\372\241\0\231\372\241\0\231\372\241\0\231\372" - "\224\0\231\372\212\0\231\372\\\0\231\372\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\224\362\12\0\226\365^\0\231\371\216\0\231\372\220\0\231\372j\0\231\372" - "\15\0\0\0\0\0\0\0\0\0\231\372)\0\222\357\201\0\214\345\230\2\212\341\225" - "\5\202\325T:\13\22\40Z\0\0;q\0\0rx\0\0\227\177\0\0\270\207\0\0\343\230\0" - "\0\375\240\0\0\377\236\3\4\377MM\177\377\36z\307\377=[\224\377\210\13\21" - "\377\222\0\0\377\227\0\0\377\214\0\0\365c\0\0~\36\0\0\11\0\0\0\0\0\0\0\0" - "\0\231\372\24\0\231\372t\0\231\372\221\0\231\372\214\0\231\372[\0\231\372" - "\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\215\347\32\0\215\346" - "j\0\216\350\215\0\227\367\222\0\231\372\241\0\231\372\241\0\231\372\241\0" - "\231\372\241\0\231\372\241\0\231\372\241\0\231\372\241\0\231\372\241\0\231" - "\372\226\0\231\372\217\0\231\372\177\0\231\372G\0\231\372\3\0\0\0\0\0\231" - "\372\0\0\231\372+\0\231\372\200\0\231\372\221\0\231\372\205\0\231\372/\0" - "\231\372\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\0\231" - "\372\7\0\231\372\207\0\227\366\307\0\231\371\214\0\231\372\11\0\0\0\0\0\231" - "\372\16\0\231\372c\0\231\372\215\0\231\372\235\0\231\372\241\0\231\372\241" - "\0\231\372\241\0\231\372\241\0\231\372\241\0\231\372\241\0\231\372\241\0" - "\231\372\236\0\231\372\215\0\231\372I\0\231\372\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\13\0\0\0\17\0\0\0\32\0\0" - "\0\23\0\0\0\23\0\0\3\24\0\0\3\31\0\0\4""3\0\0\23>\0\0!d\0\0Vz\0\0\217\177" - "\0\0\261\202\0\0\305\213\0\0\342\221\0\0\370\241\0\0\377\241\0\0\377\240" - "\0\0\377\233\0\0\377\230\0\0\377\226\0\0\377\222\0\0\377\222\0\0\377\221" - "\2\3\377\222\0\0\377\223\0\0\377\234\0\0\377\251\0\0\377\224\0\0\336T\0\0" - """1\22\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\25\0\0\0$\0\0\3]\0\0" - "?`\0\0G\32\0\0\2\0\0\0\0\0\7\13\0\0\21\33\2\0\5\10\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\7\0\0\0\26\0\0\0\24\0\0\0\34\0\0\0\37\0\0\0\37\0\0\0\34\0\0" - "\0\17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\21\0\0" - "\1""3\0\0\7""8\0\0\13.\0\0\11/\0\0\11.\0\0\11""7\0\0\16K\0\0)S\0\0""6e\0" - "\0`k\0\0pw\0\0\230\203\0\0\256\204\0\0\265\213\0\0\342\222\0\0\363\231\0" - "\0\376\242\0\0\377\236\0\0\377\235\0\0\377\234\0\0\377\230\0\0\377\226\0" - "\0\377\224\0\0\377\222\0\0\377\223\0\0\377\223\0\0\377\223\0\0\377\223\0" - "\0\377\223\0\0\377\224\0\0\377\232\0\0\377\233\0\0\374\203\0\0\323w\0\0\232" - "W\0\0""1\5\0\0\0\0\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0!\0\0\3""8\0\0\14%\0\0\5" - "\12\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\32\0\0\0U\0\0(\177" - "\0\0\241\232\0\0\367\216\0\0\3245\0\0\13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\7\0\0\0(\0\0\4.\0\0\10\25\0\0\1\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0" - "\13\0\0\1\16\0\0\1\17\0\0\1\32\0\0\2""5\0\0\11]\0\0JZ\0\0Fg\0\0ek\0\0pk\0" - "\0pe\0\0aN\0\0+6\0\0\13\32\0\0\2\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "+\0\0\15{\0\0\247\223\0\0\324\213\0\0\307\214\0\0\310\213\0\0\310\214\0\0" - "\317\223\0\0\356\230\0\0\367\234\0\0\377\231\0\0\377\233\0\0\377\240\0\0" - "\377\240\0\0\377\236\0\0\377\232\0\0\377\227\0\0\377\225\0\0\377\223\0\0" - "\377\223\0\0\377\223\0\0\377\223\0\0\377\223\0\0\377\224\0\0\377\224\0\0" - "\377\224\0\0\377\223\0\0\377\226\0\0\377\234\0\0\377\237\0\0\377\234\0\0" - "\374\227\0\0\354u\0\0\202<\0\0\22\30\0\0\5\5\0\0\0\7\0\0\1\15\0\0\0""4\0" - "\0\21@\0\0\35=\0\0\26o\0\0v\224\0\0\321q\0\0q\26\0\0\2\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\5\0\0\0\20\0\0\2\36\0\0\5*\0\0\7$\0\0\5\16\0\0\1\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\24\0\0\0_\0\0.\217\0\0\330\243\0\0\377\234\0\0\377" - "\226\0\0\363V\0\0""9\15\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0$\0\0\6y\0\0\210\213\0\0\303W\0\0""3\34\0\0\4\22\0\0\3\15\0\0" - "\2\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\11\0\0\0\27\0\0\3'\0\0\7>\0\0\24S\0\0;[\0\0I\\" - "\0\0Nn\0\0y\200\0\0\262\230\0\0\371\231\0\0\372\235\0\0\377\236\0\0\377\236" - "\0\0\377\234\0\0\376\223\0\0\354\213\0\0\310l\0\0c6\0\0\13\11\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\7\0\0\1\31\0\0\10^\0\0\\\222\0\0\365\241\0\0\377\236\0\0\377\236" - "\0\0\377\234\0\0\377\227\0\0\377\227\0\0\377\226\0\0\377\225\0\0\377\224" - "\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377\223\0\0\377\223\0\0\377\224" - "\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377\223" - "\0\0\377\223\0\0\377\223\0\0\377\227\0\0\377\232\0\0\376\215\0\0\331}\0\0" - "\247_\0\0PJ\0\0\36&\0\0\5\0\0\0\0\0\0\0\0""9\0\0\17X\0\0C2\0\0\22{\0\0\227" - "\223\0\0\351\222\0\0\345\231\0\0\374\247\0\0\377{\0\0\226\31\0\0\2\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\12\0\0\0\37\0\0\5O\0\0'i\0\0j{\0\0\243\210\0\0\316\200\0\0\262" - "^\0\0E\"\0\0\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0""9\0\0\17\206\0\0\303\241\0\0\377" - "\224\0\0\377\224\0\0\377\231\0\0\377t\0\0\2205\0\0\10\2\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0(\0\0\6;\0\0\16\31\0\0\5\27\0\0\4\15\0\0\1\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0*\0\0\11\204\0\0\277\244\0\0\377\212" - "\0\0\346~\0\0\253k\0\0sf\0\0_7\0\0\13\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\7\0\0\0\21\0\0\2L\0\0\37p\0\0\200\204" - "\0\0\277\222\0\0\344\230\0\0\367\235\0\0\375\235\0\0\375\240\0\0\377\235" - "\0\0\377\227\0\0\377\227\0\0\377\226\0\0\377\226\0\0\377\226\0\0\377\226" - "\0\0\377\227\0\0\377\236\0\0\377\235\0\0\373\201\0\0\262P\0\0&\30\0\0\1\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0%\0\0\12p\0\0vw\0\0\233\212\0\0\360\230\0\0\377\223\0\0\377\224\0\0" - "\377\223\0\0\377\223\0\0\377\223\0\0\377\224\0\0\377\224\0\0\377\224\0\0" - "\377\224\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377\224\0\0" - "\377\224\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377\223\0\0\377\224\0\0" - "\377\231\0\0\377\234\0\0\377\240\0\0\377\201\0\0\253C\0\0\24\40\0\0\4\17" - "\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0l\0\0T\234\0\0\367u\0\0\251\214\0\0" - "\346\236\0\0\377\233\0\0\377\226\0\0\377\237\0\0\377{\0\0\2535\0\0\14\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0&\0\0\10]\0\0Au\0\0\224\222\0\0\352\241\0\0\377\241\0\0\377\234\0\0\377" - "\240\0\0\377\231\0\0\362b\0\0J\14\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0^\0\0?\232\0\0\375" - "\227\0\0\377\223\0\0\377\223\0\0\377\226\0\0\377\230\0\0\371d\0\0V\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0$\0\0\7u\0\0\203\212\0\0\323o\0\0\213q" - "\0\0\213g\0\0W'\0\0\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0A\0\0\24\212\0\0\332" - "\233\0\0\377\226\0\0\377\237\0\0\377\241\0\0\377\243\0\0\374_\0\0I\7\0\0" - "\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\33\0\0\5E\0\0\35^\0\0" - "El\0\0u\215\0\0\331\241\0\0\377\234\0\0\377\232\0\0\377\225\0\0\377\225\0" - "\0\377\225\0\0\377\225\0\0\377\224\0\0\377\223\0\0\377\223\0\0\377\224\0" - "\0\377\224\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377\223\0\0\377\226\0" - "\0\377\237\0\0\377\220\0\0\333`\0\0A\30\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0&\0\0\12~\0\0\235\234\0\0\364" - "\231\0\0\377\223\0\0\377\223\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377" - "\224\0\0\377\224\0\0\377\223\0\0\377\223\0\0\377\223\0\0\377\222\0\0\377" - "\222\0\0\377\223\0\0\377\223\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377" - "\224\0\0\377\224\0\0\377\224\0\0\377\234\0\0\377\231\0\0\373\211\0\0\327" - "}\0\0\222J\0\0\26\17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\33\0\0" - "\5w\0\0\236\242\0\0\377\230\0\0\377\224\0\0\377\223\0\0\377\223\0\0\377\223" - "\0\0\377\226\0\0\377\235\0\0\375n\0\0q\14\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\22\0\0\1P\0\0$|\0\0\240\233\0\0\370\241\0" - "\0\377\232\0\0\377\225\0\0\377\223\0\0\377\223\0\0\377\225\0\0\377\237\0" - "\0\377\201\0\0\304?\0\0\27\20\0\0\4\10\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\30\0\0\4v\0\0\224\241\0\0\377\222\0" - "\0\377\224\0\0\377\223\0\0\377\232\0\0\377\227\0\0\365V\0\0""8\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\25\0\0\3i\0\0d\233\0\0\370\237\0\0\377\233\0\0\377" - "\244\0\0\377\230\0\0\353G\0\0\33\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\22\0\0\0=\0\0\16x\0\0\226" - "\231\0\0\373\230\0\0\377\223\0\0\377\223\0\0\377\226\0\0\377\236\0\0\371" - "X\0\0""8\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\20\0\0\0/\0\0\12X\0\0""5r\0\0\217" - "\215\0\0\346\237\0\0\372\241\0\0\376\235\0\0\377\224\0\0\377\223\0\0\377" - "\223\0\0\377\223\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377" - "\224\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377" - "\224\0\0\377\224\0\0\377\223\0\0\377\224\0\0\377\240\0\0\377\230\0\0\360" - "`\0\0O\15\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2" - "\0\0\0\2\0\0\0\26\0\0\2v\0\0\213\242\0\0\377\225\0\0\377\222\0\0\377\223" - "\0\0\377\222\0\0\377\222\0\0\377\222\0\0\377\223\0\0\377\226\0\0\377\230" - "\0\0\377\232\0\0\377\240\0\0\377\241\0\0\377\240\0\0\377\227\0\0\377\222" - "\0\0\377\223\0\0\377\224\0\0\377\224\0\0\377\222\0\0\377\234\0\0\377\215" - "\0\0\347b\0\0U2\0\0\20\24\0\0\2\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\35\0\0\2f\0\0U\225\0\0\366\226\0\0\377\223\0\0\377\224\0\0\377\224" - "\0\0\377\224\0\0\377\224\0\0\377\222\0\0\377\242\0\0\377\200\0\0\272\36\0" - "\0\11\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\21\0\0\0N\0\0&\216" - "\0\0\333\243\0\0\377\226\0\0\377\222\0\0\377\223\0\0\377\223\0\0\377\224" - "\0\0\377\224\0\0\377\223\0\0\377\225\0\0\377\226\0\0\376\206\0\0\314U\0\0" - "C\16\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0" - "\0K\0\0#\222\0\0\352\235\0\0\377\222\0\0\377\224\0\0\377\224\0\0\377\236" - "\0\0\376y\0\0\225*\0\0\6\0\0\0\0\0\0\0\0\0\0\0\0\5\0\0\0I\0\0\34\221\0\0" - "\340\237\0\0\377\221\0\0\377\222\0\0\377\233\0\0\377\211\0\0\341<\0\0\26" - "\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0R\0\0\33\201\0\0\254\240\0\0\376\230\0\0\377\223\0\0\377" - "\224\0\0\377\223\0\0\377\233\0\0\377\223\0\0\351F\0\0\27\0\0\0\0\0\0\0\0" - "\17\0\0\0@\0\0\22k\0\0]\202\0\0\272\227\0\0\372\237\0\0\377\232\0\0\377\226" - "\0\0\377\222\0\0\377\223\0\0\377\223\0\0\377\224\0\0\377\224\0\0\377\224" - "\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377\224" - "\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377\224" - "\0\0\377\224\0\0\377\224\0\0\377\221\0\0\377\237\0\0\377\217\0\0\333E\0\0" - "\32\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0@\0\0\27{\0\0\310\234\0\0\377\233\0\0\377\231\0\0\377\234\0\0\377\242\0" - "\0\377\243\0\0\377\241\0\0\377\237\0\0\377\237\0\0\377\230\0\0\377\224\0" - "\0\371\205\0\0\323\201\0\0\303z\0\0\252\207\0\0\341\232\0\0\377\224\0\0\377" - "\224\0\0\377\223\0\0\377\225\0\0\377\244\0\0\377v\0\0\226\22\0\0\3\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0R\0\0+\224\0\0" - "\346\237\0\0\377\222\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377\224\0\0" - "\377\224\0\0\377\223\0\0\377\240\0\0\377w\0\0\237\25\0\0\5\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0:\0\0\16\177\0\0\255\241\0\0\377\223\0" - "\0\377\223\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377\223\0" - "\0\377\224\0\0\377\230\0\0\377\237\0\0\377\267\0\0\377t\0\0y\10\0\0\1\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0.\0\0\7z\0\0\236\236" - "\0\0\376\225\0\0\377\223\0\0\377\223\0\0\377\231\0\0\377\230\0\0\361Q\0\0" - ",\13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\23\0\0\2m\0\0q\241\0\0\376\225\0\0\377" - "\223\0\0\377\223\0\0\377\226\0\0\377\223\0\0\371{\0\0\222)\0\0\10\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0C\0\0\24" - "\205\0\0\301\246\0\0\377\230\0\0\377\223\0\0\377\224\0\0\377\224\0\0\377" - "\223\0\0\377\233\0\0\377\203\0\0\3103\0\0\13\0\0\0\0\15\0\0\1^\0\0=\211\0" - "\0\313\237\0\0\375\241\0\0\377\231\0\0\377\223\0\0\377\223\0\0\377\223\0" - "\0\377\224\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377\224\0" - "\0\377\224\0\0\377\223\0\0\377\223\0\0\377\222\0\0\377\222\0\0\377\222\0" - "\0\377\223\0\0\377\223\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377\224\0" - "\0\377\224\0\0\377\224\0\0\377\223\0\0\377\224\0\0\377\244\0\0\376j\0\0g" - "\21\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0" - ".\0\0\11R\0\0:\211\0\0\323\230\0\0\363\220\0\0\357\202\0\0\317x\0\0\247x" - "\0\0\243o\0\0\206h\0\0oc\0\0bR\0\0""4L\0\0)-\0\0\17\"\0\0\12\33\0\0\4v\0" - "\0\211\237\0\0\377\225\0\0\377\223\0\0\377\223\0\0\377\230\0\0\377\233\0" - "\0\376c\0\0Y\11\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\"\0\0\6~\0\0\252\237\0\0\377\224\0\0\377\223\0\0\377\224\0\0\377\224" - "\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377\223\0\0\377\237\0\0\377p\0\0" - "\203\7\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\12\0\0\0?\0\0\16|\0\0\235\234" - "\0\0\375\226\0\0\377\223\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377\223" - "\0\0\377\224\0\0\377\233\0\0\377\237\0\0\374\234\0\0\371\213\0\0\341{\0\0" - "\241C\0\0\"\3\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\14\0" - "\0\1_\0\0;\235\0\0\367\226\0\0\377\223\0\0\377\223\0\0\377\224\0\0\377\240" - "\0\0\376x\0\0\220%\0\0\6\0\0\0\0\0\0\0\0\0\0\0\0\17\0\0\0G\0\0\32\214\0\0" - "\330\236\0\0\377\223\0\0\377\224\0\0\377\224\0\0\377\223\0\0\377\235\0\0" - "\377\221\0\0\3223\0\0\12\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\20\0\0\0P\0\0\40\200\0\0\272\235\0\0\377\227\0\0\377\223\0\0\377" - "\223\0\0\377\224\0\0\377\224\0\0\377\222\0\0\377\241\0\0\377r\0\0\214\31" - "\0\0\5\0\0\0\0""1\0\0\15\205\0\0\311\250\0\0\377\227\0\0\377\223\0\0\377" - "\223\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377" - "\224\0\0\377\224\0\0\377\224\0\0\377\223\0\0\377\223\0\0\377\227\0\0\377" - "\233\0\0\377\241\0\0\377\242\0\0\377\241\0\0\377\231\0\0\377\223\0\0\377" - "\223\0\0\377\223\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377" - "\224\0\0\377\222\0\0\377\235\0\0\377\204\0\0\3105\0\0\14\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\2\0\0\0\12\0\0\1J\0\0\36" - "Q\0\0'I\0\0%4\0\0\20\34\0\0\7\32\0\0\7\20\0\0\3\7\0\0\2\6\0\0\1\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0&\0\0\11\201\0\0\271\234\0\0\377\224\0\0\377\223\0" - "\0\377\223\0\0\377\232\0\0\377\210\0\0\345E\0\0\40\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0H\0\0\37\227\0\0\360\233\0\0\377" - "\223\0\0\377\224\0\0\377\224\0\0\377\223\0\0\377\223\0\0\377\224\0\0\377" - "\224\0\0\377\223\0\0\377\237\0\0\377p\0\0{\5\0\0\1\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0""2\0\0\12\177\0\0\235\240\0\0\377\227\0\0\377\223\0\0\377\224" - "\0\0\377\224\0\0\377\223\0\0\377\224\0\0\377\232\0\0\377\237\0\0\374\200" - "\0\0\270d\0\0_Z\0\0?@\0\0\32\34\0\0\6\6\0\0\1\2\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0%\0\0\5\200\0\0\257\236\0\0\377\223\0\0\377\224" - "\0\0\377\223\0\0\377\232\0\0\377\215\0\0\327H\0\0\26\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0""2\0\0\7|\0\0\236\233\0\0\377\225\0\0\377\223\0\0\377\224\0" - "\0\377\224\0\0\377\224\0\0\377\237\0\0\375q\0\0z\31\0\0\3\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0=\0\0\21\203\0\0\300\243\0\0\377" - "\234\0\0\377\232\0\0\377\224\0\0\377\223\0\0\377\224\0\0\377\224\0\0\377" - "\223\0\0\377\237\0\0\375e\0\0a\12\0\0\2C\0\0\24q\0\0\204\231\0\0\375\231" - "\0\0\377\222\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377\224" - "\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377\223\0\0\377\225" - "\0\0\377\236\0\0\377\240\0\0\375\205\0\0\313r\0\0\213q\0\0\211|\0\0\254\220" - "\0\0\345\237\0\0\375\233\0\0\377\223\0\0\377\223\0\0\377\224\0\0\377\224" - "\0\0\377\224\0\0\377\224\0\0\377\223\0\0\377\232\0\0\377\216\0\0\346C\0\0" - "\25\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0?\0\0\37\216\0\0\347\234\0\0\377" - "\223\0\0\377\224\0\0\377\223\0\0\377\237\0\0\377\204\0\0\313/\0\0\17\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\32\0\0\2o\0\0y\240\0" - "\0\377\224\0\0\377\230\0\0\377\234\0\0\377\231\0\0\377\225\0\0\377\223\0" - "\0\377\224\0\0\377\223\0\0\377\227\0\0\377\230\0\0\377`\0\0S\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\33\0\0\1h\0\0S\235\0\0\372\233\0\0\377\223\0\0\377\223" - "\0\0\377\223\0\0\377\223\0\0\377\232\0\0\377\233\0\0\376\214\0\0\324o\0\0" - "k9\0\0\14\13\0\0\1\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0>\0\0\23\223\0\0\344\233\0\0\377\223\0" - "\0\377\223\0\0\377\230\0\0\377\231\0\0\371c\0\0U\22\0\0\1\0\0\0\0\0\0\0\0" - "\0\0\0\0\17\0\0\1b\0\0I\224\0\0\361\227\0\0\377\223\0\0\377\224\0\0\377\224" - "\0\0\377\223\0\0\377\234\0\0\377\210\0\0\321E\0\0\31\3\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0""8\0\0\13w\0\0\222\235\0\0\376\242\0" - "\0\377\207\0\0\325\203\0\0\321\222\0\0\376\224\0\0\377\224\0\0\377\224\0" - "\0\377\223\0\0\377\242\0\0\373b\0\0MN\0\0\36\221\0\0\314\240\0\0\375\230" - "\0\0\377\223\0\0\377\223\0\0\377\224\0\0\377\224\0\0\377\223\0\0\377\223" - "\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377\223\0\0\377\226" - "\0\0\377\230\0\0\377z\0\0\261`\0\0K;\0\0\20\27\0\0\4\26\0\0\4#\0\0\7F\0\0" - "\26q\0\0v\221\0\0\344\230\0\0\377\223\0\0\377\223\0\0\377\224\0\0\377\224" - "\0\0\377\224\0\0\377\223\0\0\377\232\0\0\377\230\0\0\361Q\0\0'\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\5\0\0\0[\0\0E\223\0\0\373\230\0\0\377\223\0\0\377" - "\224\0\0\377\224\0\0\377\237\0\0\377z\0\0\232\33\0\0\4\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\16\0\0\0F\0\0\30\207\0\0\316\232\0\0\377\227" - "\0\0\377\230\0\0\373}\0\0\250w\0\0\267\230\0\0\377\226\0\0\377\223\0\0\377" - "\223\0\0\377\230\0\0\377\230\0\0\377_\0\0E\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0" - "\0Z\0\0""1\215\0\0\340\232\0\0\377\223\0\0\377\224\0\0\377\223\0\0\377\226" - "\0\0\377\235\0\0\377\225\0\0\363v\0\0\211>\0\0\21\22\0\0\2\2\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\27\0\0\1g\0\0]\235\0\0\373\225\0\0\377\223\0\0\377\222\0\0\377" - "\233\0\0\377\215\0\0\341A\0\0\26\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\31\0\0\5" - "\203\0\0\267\241\0\0\377\224\0\0\377\223\0\0\377\224\0\0\377\224\0\0\377" - "\224\0\0\377\241\0\0\374i\0\0Y\24\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\31\0\0\3p\0\0p\244\0\0\375\241\0\0\377\223\0\0\353U\0\0%\\" - "\0\0F\227\0\0\373\225\0\0\377\224\0\0\377\223\0\0\377\231\0\0\377\232\0\0" - "\365Q\0\0,d\0\0U\250\0\0\375\233\0\0\377\223\0\0\377\223\0\0\377\223\0\0" - "\377\224\0\0\377\223\0\0\377\225\0\0\377\225\0\0\377\223\0\0\377\224\0\0" - "\377\224\0\0\377\224\0\0\377\223\0\0\377\237\0\0\377\221\0\0\354?\0\0\33" - "\13\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\25\0\0\2X\0\0/\211\0\0" - "\331\231\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377\223\0\0" - "\377\232\0\0\377\233\0\0\365T\0\0""1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\26\0" - "\0\1o\0\0}\234\0\0\377\225\0\0\377\223\0\0\377\223\0\0\377\226\0\0\377\240" - "\0\0\377q\0\0q\16\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0""0" - "\0\0\12|\0\0\245\232\0\0\376\224\0\0\377\237\0\0\377\201\0\0\2607\0\0\11" - "a\0\0Q\234\0\0\377\230\0\0\377\223\0\0\377\223\0\0\377\230\0\0\377\231\0" - "\0\377`\0\0O\0\0\0\0\0\0\0\0\0\0\0\0,\0\0\13\205\0\0\301\241\0\0\377\222" - "\0\0\377\224\0\0\377\223\0\0\377\230\0\0\377\240\0\0\377\212\0\0\323`\0\0" - "G(\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\12\0\0\0G\0\0\31\212\0\0\323\232" - "\0\0\377\223\0\0\377\223\0\0\377\223\0\0\377\244\0\0\377~\0\0\261&\0\0\11" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\37\0\0\6|\0\0\261\233\0\0\377\224\0\0\377" - "\223\0\0\377\224\0\0\377\223\0\0\377\234\0\0\377\206\0\0\313?\0\0\21\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\13\0\0\0X\0\0""1\220\0\0\350" - "\237\0\0\377\222\0\0\362`\0\0K\34\0\0\2q\0\0z\236\0\0\377\225\0\0\377\224" - "\0\0\377\223\0\0\377\231\0\0\377\230\0\0\363N\0\0\"=\0\0\23m\0\0i\206\0\0" - "\330\246\0\0\377\231\0\0\377\223\0\0\377\222\0\0\377\231\0\0\377\240\0\0" - "\377\230\0\0\377\223\0\0\377\224\0\0\377\224\0\0\377\223\0\0\377\231\0\0" - "\377\243\0\0\376~\0\0\237\33\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\2\0\0\0\30\0\0\0o\0\0q\233\0\0\377\226\0\0\377\223\0\0\377\224" - "\0\0\377\224\0\0\377\223\0\0\377\232\0\0\377\214\0\0\333?\0\0\22\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\40\0\0\7\200\0\0\264\237\0\0\377\222\0\0\377\224" - "\0\0\377\223\0\0\377\232\0\0\377\223\0\0\366W\0\0""7\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\17\0\0\0j\0\0Z\236\0\0\374\227\0\0\377\233\0" - "\0\377\232\0\0\366_\0\0@\0\0\0\0`\0\0T\234\0\0\377\230\0\0\377\223\0\0\377" - "\223\0\0\377\231\0\0\377\220\0\0\365V\0\0""1\0\0\0\0\0\0\0\0\25\0\0\1_\0" - "\0G\233\0\0\373\226\0\0\377\223\0\0\377\223\0\0\377\230\0\0\377\241\0\0\376" - "~\0\0\256@\0\0\24\17\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\22\0\0" - "\1n\0\0w\236\0\0\377\225\0\0\377\223\0\0\377\222\0\0\377\233\0\0\377\233" - "\0\0\373Z\0\0A\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\23\0\0\1h\0\0_\230\0\0\373" - "\227\0\0\377\223\0\0\377\224\0\0\377\224\0\0\377\225\0\0\377\237\0\0\377" - "c\0\0W\15\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0""8\0\0\16" - "\202\0\0\274\244\0\0\377\234\0\0\376q\0\0\200\36\0\0\3:\0\0\13\210\0\0\306" - "\232\0\0\377\223\0\0\377\224\0\0\377\223\0\0\377\232\0\0\377\220\0\0\347" - "I\0\0\35\0\0\0\0\11\0\0\1]\0\0G\205\0\0\274\217\0\0\351\243\0\0\377\237\0" - "\0\377\217\0\0\356w\0\0\225v\0\0\263\232\0\0\377\223\0\0\377\223\0\0\377" - "\227\0\0\377\221\0\0\356l\0\0g:\0\0\21\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\24\0\0\1y\0\0\222\237\0\0\377\225\0\0\377" - "\223\0\0\377\224\0\0\377\224\0\0\377\222\0\0\377\240\0\0\377x\0\0\241$\0" - "\0\7\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0L\0\0\"\214\0\0\346\234\0\0\377\223\0" - "\0\377\224\0\0\377\223\0\0\377\235\0\0\377\206\0\0\317,\0\0\16\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0C\0\0\25\213\0\0\325\237\0\0\377\224" - "\0\0\377\240\0\0\377{\0\0\227)\0\0\5\0\0\0\0a\0\0R\234\0\0\377\230\0\0\377" - "\223\0\0\377\223\0\0\377\235\0\0\377\205\0\0\3247\0\0\24\0\0\0\0\2\0\0\0" - "F\0\0\32\210\0\0\317\234\0\0\377\222\0\0\377\223\0\0\377\227\0\0\377\233" - "\0\0\374z\0\0\226G\0\0\24\22\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0.\0\0\15\207\0\0\315\234\0\0\377\224\0\0\377\223\0\0\377\225\0" - "\0\377\236\0\0\377w\0\0\227!\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0/\0\0\16" - "\211\0\0\315\242\0\0\377\223\0\0\377\223\0\0\377\224\0\0\377\223\0\0\377" - "\235\0\0\377\206\0\0\320:\0\0\21\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0?\0\0\22{\0\0\233\233\0\0\374\241\0\0\377\207\0\0\314<\0\0\17\0\0" - "\0\0I\0\0&\220\0\0\357\227\0\0\377\223\0\0\377\224\0\0\377\223\0\0\377\240" - "\0\0\377w\0\0\246\35\0\0\7\0\0\0\0\4\0\0\0\21\0\0\4\40\0\0\5^\0\0E\202\0" - "\0\275{\0\0\237]\0\0""9\"\0\0\10s\0\0\223\236\0\0\377\223\0\0\377\223\0\0" - "\377\233\0\0\377u\0\0\220\27\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0C\0\0\33\213\0\0\341\235\0\0\377\224\0" - "\0\377\223\0\0\377\224\0\0\377\223\0\0\377\225\0\0\377\235\0\0\373`\0\0J" - "\12\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0k\0\0\\\242\0\0\377\226\0\0\377\223" - "\0\0\377\224\0\0\377\224\0\0\377\240\0\0\377~\0\0\241\30\0\0\3\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\31\0\0\2p\0\0w\240\0\0\377\227\0\0\377\232" - "\0\0\377\224\0\0\342N\0\0\35\15\0\0\0\0\0\0\0a\0\0R\234\0\0\377\230\0\0\377" - "\223\0\0\377\223\0\0\377\237\0\0\377\206\0\0\3201\0\0\21\0\0\0\0\21\0\0\2" - "j\0\0i\242\0\0\377\225\0\0\377\223\0\0\377\223\0\0\377\235\0\0\376}\0\0\252" - "2\0\0\13\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\7\0\0\0" - "V\0\0A\225\0\0\374\230\0\0\377\223\0\0\377\223\0\0\377\236\0\0\377\212\0" - "\0\324F\0\0\30\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0""3\0\0\23\205\0\0" - "\325\234\0\0\377\223\0\0\377\224\0\0\377\223\0\0\377\226\0\0\377\232\0\0" - "\374i\0\0X\20\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\40\0\0\2q\0\0" - "|\243\0\0\377\241\0\0\377\221\0\0\344[\0\0/-\0\0\6C\0\0\26\\\0\0Z\222\0\0" - "\370\226\0\0\377\223\0\0\377\224\0\0\377\222\0\0\377\243\0\0\377y\0\0\246" - "\32\0\0\7\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\21\0\0\1\"\0\0\12\34\0\0\6\17\0" - "\0\0P\0\0%\225\0\0\356\231\0\0\377\222\0\0\377\230\0\0\377\231\0\0\364U\0" - "\0""0\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0.\0\0\6w\0\0\221\233\0\0\377\224\0\0\377\223\0\0\377\224\0\0\377\223" - "\0\0\377\225\0\0\377\245\0\0\377\203\0\0\3001\0\0\16\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\22\0\0\3w\0\0\222\244\0\0\377\223\0\0\377\223\0\0\377\224\0" - "\0\377\226\0\0\377\235\0\0\377q\0\0t\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0S\0\0%\212\0\0\337\233\0\0\377\224\0\0\377\237\0\0\377q\0\0u" - "\35\0\0\2\0\0\0\0\0\0\0\0`\0\0R\234\0\0\377\230\0\0\377\223\0\0\377\223\0" - "\0\377\237\0\0\377\206\0\0\3212\0\0\21\0\0\0\0""1\0\0\15\205\0\0\311\235" - "\0\0\377\223\0\0\377\222\0\0\377\236\0\0\377\213\0\0\326K\0\0\35\6\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\22\0\0\1""9\0\0\22)\0\0\5\5\0\0\0\6\0\0\1\2\0\0\0\34\0\0\4w\0\0" - "\227\237\0\0\377\225\0\0\377\223\0\0\377\226\0\0\377\233\0\0\376p\0\0i\20" - "\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\17\0\0\1c\0\0P\224\0\0\367\230\0\0" - "\377\223\0\0\377\224\0\0\377\223\0\0\377\236\0\0\377\212\0\0\330B\0\0\27" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\31\0\0\2h\0\0V\223\0\0\362\233\0" - "\0\377\230\0\0\373k\0\0b@\0\0\22~\0\0\237\220\0\0\343\214\0\0\363\223\0\0" - "\377\224\0\0\377\224\0\0\377\224\0\0\377\223\0\0\377\237\0\0\377p\0\0\211" - "\24\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\24\0\0" - "\2e\0\0[\236\0\0\373\224\0\0\377\222\0\0\377\241\0\0\377\210\0\0\3137\0\0" - "\15\0\0\0\0\0\0\0\0\4\0\0\0\6\0\0\1\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\33\0" - "\0\4o\0\0q\231\0\0\371\231\0\0\377\223\0\0\377\224\0\0\377\223\0\0\377\225" - "\0\0\377\237\0\0\377\216\0\0\337X\0\0""0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0+\0\0\15\204\0\0\321\240\0\0\377\222\0\0\377\224\0\0\377\223\0\0" - "\377\232\0\0\377\222\0\0\361K\0\0'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0;\0\0\20\206\0\0\301\237\0\0\377\222\0\0\377\233\0\0\377\224\0\0\342E\0" - "\0\30\3\0\0\0\0\0\0\0\22\0\0\1c\0\0^\227\0\0\377\227\0\0\377\223\0\0\377" - "\223\0\0\377\237\0\0\377\206\0\0\3212\0\0\21\10\0\0\0Q\0\0""1\234\0\0\371" - "\225\0\0\377\223\0\0\377\230\0\0\377\236\0\0\375g\0\0\\\20\0\0\1\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\"\0\0\4Y\0\0""6\213\0\0\320l\0\0gS\0\0""6.\0\0\23\14\0\0\0=\0\0\31\213\0" - "\0\336\236\0\0\377\223\0\0\377\223\0\0\377\235\0\0\377\215\0\0\326:\0\0\21" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0!\0\0\10\177\0\0\262\241\0\0\377" - "\223\0\0\377\223\0\0\377\223\0\0\377\226\0\0\377\234\0\0\377p\0\0z\27\0\0" - "\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0Y\0\0.\222\0\0\347\235\0\0\377" - "\231\0\0\377\217\0\0\356]\0\0g~\0\0\266\237\0\0\376\233\0\0\377\225\0\0\377" - "\223\0\0\377\223\0\0\377\224\0\0\377\223\0\0\377\227\0\0\377\240\0\0\377" - "a\0\0Q\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0D\0" - "\0\27\213\0\0\325\232\0\0\377\223\0\0\377\224\0\0\377\232\0\0\366p\0\0u\30" - "\0\0\4\0\0\0\0\0\0\0\0""9\0\0\20d\0\0KD\0\0\20\0\0\0\0\0\0\0\0\11\0\0\0Z" - "\0\0:\230\0\0\363\236\0\0\377\223\0\0\377\223\0\0\377\223\0\0\377\224\0\0" - "\377\235\0\0\377\223\0\0\353^\0\0=\33\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0J\0\0%\223\0\0\364\232\0\0\377\223\0\0\377\224\0\0\377\224\0\0" - "\377\240\0\0\377\213\0\0\311-\0\0\11\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0Y\0\0;\237\0\0\374\231\0\0\377\223\0\0\377\242\0\0\377p\0\0x\31\0\0\2" - "\16\0\0\1D\0\0\26c\0\0N\206\0\0\325\235\0\0\377\224\0\0\377\223\0\0\377\223" - "\0\0\377\236\0\0\377\205\0\0\3201\0\0\21\21\0\0\2b\0\0]\237\0\0\376\224\0" - "\0\377\223\0\0\377\241\0\0\377\204\0\0\3023\0\0\15\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\11\0\0\0\36\0\0\7D\0\0\27l\0\0" - "k\225\0\0\360\240\0\0\377\230\0\0\371\233\0\0\367]\0\0O\23\0\0\1X\0\0""7" - "\226\0\0\370\233\0\0\377\222\0\0\377\225\0\0\377\241\0\0\377~\0\0\233\22" - "\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0""7\0\0\24\206\0\0\325\237" - "\0\0\377\222\0\0\377\224\0\0\377\223\0\0\377\234\0\0\377\222\0\0\354P\0\0" - ")\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0.\0\0\10}\0\0\245\242\0\0\377\225" - "\0\0\377\223\0\0\377\224\0\0\377\230\0\0\376\231\0\0\377\223\0\0\377\224" - "\0\0\377\226\0\0\377\225\0\0\377\223\0\0\377\224\0\0\377\223\0\0\377\227" - "\0\0\377\240\0\0\377_\0\0O\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\14\0\0\1`\0\0N\240\0\0\375\224\0\0\377\223\0\0\377\240\0\0\377" - "p\0\0\204&\0\0\6\2\0\0\0\0\0\0\0\0\0\0\0Z\0\0""7\246\0\0\370\210\0\0\236" - "7\0\0\20'\0\0\12A\0\0\32\204\0\0\307\241\0\0\377\223\0\0\377\223\0\0\377" - "\223\0\0\377\227\0\0\377\242\0\0\377\216\0\0\342a\0\0D\35\0\0\2\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0a\0\0N\241\0\0\375\226\0\0\377\223" - "\0\0\377\224\0\0\377\224\0\0\377\240\0\0\377\177\0\0\243!\0\0\3\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\24\0\0\3e\0\0_\236\0\0\375\225\0\0\377\233\0\0\377" - "\216\0\0\340N\0\0'0\0\0\20[\0\0B\215\0\0\332\236\0\0\373\232\0\0\377\225" - "\0\0\377\223\0\0\377\224\0\0\377\223\0\0\377\234\0\0\377}\0\0\272&\0\0\13" - "\37\0\0\4s\0\0\214\237\0\0\377\224\0\0\377\231\0\0\377\235\0\0\375g\0\0P" - "\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0,\0\0\12" - "a\0\0Kx\0\0\244\215\0\0\340\235\0\0\374\227\0\0\377\223\0\0\377\233\0\0\377" - "\233\0\0\371Y\0\0A\32\0\0\2n\0\0t\233\0\0\376\226\0\0\377\223\0\0\377\233" - "\0\0\377\231\0\0\366]\0\0:\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0[\0\0C\232\0\0\375\230\0\0\377\223\0\0\377\224\0\0\377\225\0\0\377\241" - "\0\0\377}\0\0\233\32\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\7\0\0\1f\0\0Z" - "\234\0\0\374\227\0\0\377\223\0\0\377\224\0\0\377\224\0\0\377\223\0\0\377" - "\223\0\0\377\227\0\0\377\240\0\0\377\240\0\0\377\235\0\0\377\223\0\0\377" - "\223\0\0\377\223\0\0\377\227\0\0\377\241\0\0\377b\0\0Q\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\36\0\0\4v\0\0\230\240\0\0\377\223" - "\0\0\377\230\0\0\377\234\0\0\377]\0\0E\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0""4" - "\0\0\7x\0\0e\220\0\0\352\204\0\0\320\200\0\0\306\177\0\0\313\232\0\0\376" - "\227\0\0\377\222\0\0\377\225\0\0\377\234\0\0\377\235\0\0\377\214\0\0\315" - "`\0\0:\33\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\34\0\0\5t" - "\0\0\226\241\0\0\377\222\0\0\377\224\0\0\377\223\0\0\377\231\0\0\377\226" - "\0\0\364X\0\0:\22\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0T\0\0""0\222\0\0\352" - "\227\0\0\377\225\0\0\377\231\0\0\374]\0\0T_\0\0O\211\0\0\335\226\0\0\372" - "\240\0\0\377\232\0\0\377\230\0\0\377\224\0\0\377\223\0\0\377\224\0\0\377" - "\223\0\0\377\236\0\0\377z\0\0\242\32\0\0\4-\0\0\11\202\0\0\304\233\0\0\377" - "\223\0\0\377\236\0\0\377\206\0\0\322:\0\0\23\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0=\0\0\16i\0\0V|\0\0\265\236\0\0\374\241\0\0\377\232\0" - "\0\377\226\0\0\377\223\0\0\377\223\0\0\377\230\0\0\377\222\0\0\341A\0\0\27" - "U\0\0/\223\0\0\362\231\0\0\377\223\0\0\377\224\0\0\377\234\0\0\373x\0\0}" - "&\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\24\0\0\2j\0\0p\237\0\0\377" - "\225\0\0\377\223\0\0\377\223\0\0\377\232\0\0\377\230\0\0\365[\0\0?\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0A\0\0\24\213\0\0\323\237\0\0\377\222\0" - "\0\377\224\0\0\377\224\0\0\377\223\0\0\377\230\0\0\377\241\0\0\377\231\0" - "\0\372\203\0\0\314s\0\0\200{\0\0\264\227\0\0\377\224\0\0\377\223\0\0\377" - "\230\0\0\377\233\0\0\376Z\0\0?\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\12\0\0\0G\0\0\36\217\0\0\343\231\0\0\377\223\0\0\377\234\0\0\377\201" - "\0\0\3166\0\0\21\0\0\0\0\0\0\0\0\0\0\0\0\22\0\0\1.\0\0\15""1\0\0\15s\0\0" - "\224\243\0\0\377\242\0\0\377\234\0\0\377\227\0\0\377\222\0\0\377\225\0\0" - "\377\240\0\0\377\221\0\0\347s\0\0\1779\0\0\20\12\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0H\0\0\33\216\0\0\343\232\0\0\377\223" - "\0\0\377\224\0\0\377\224\0\0\377\234\0\0\377\206\0\0\3000\0\0\11\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\21\0\0\2m\0\0x\240\0\0\377\222\0\0\377\226\0\0\377" - "\222\0\0\375n\0\0\224\215\0\0\340\237\0\0\377\237\0\0\377\240\0\0\377\231" - "\0\0\375\220\0\0\372\225\0\0\377\224\0\0\377\223\0\0\377\223\0\0\377\236" - "\0\0\377z\0\0\244\30\0\0\5+\0\0\11\200\0\0\301\234\0\0\377\223\0\0\377\235" - "\0\0\377z\0\0\246\32\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\17\0\0\0=\0\0" - "\20w\0\0\232\244\0\0\376\254\0\0\377\245\0\0\377\241\0\0\377\231\0\0\377" - "\222\0\0\377\223\0\0\377\223\0\0\377\234\0\0\377\210\0\0\303)\0\0\7i\0\0" - "d\245\0\0\377\227\0\0\377\223\0\0\377\231\0\0\377\215\0\0\317:\0\0\15\4\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0""5\0\0\20\206\0\0\324\236\0" - "\0\377\222\0\0\377\224\0\0\377\224\0\0\377\236\0\0\377\207\0\0\2714\0\0\10" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0(\0\0\5q\0\0~\237\0\0\376\225\0\0\377\223" - "\0\0\377\222\0\0\377\222\0\0\377\232\0\0\377\236\0\0\377\213\0\0\327j\0\0" - "b5\0\0\21\17\0\0\1^\0\0J\235\0\0\374\225\0\0\377\222\0\0\377\234\0\0\377" - "\217\0\0\362E\0\0\36\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\27\0" - "\0\1h\0\0f\240\0\0\376\225\0\0\377\222\0\0\377\237\0\0\377w\0\0\223\23\0" - "\0\3\0\0\0\0\0\0\0\0\21\0\0\2`\0\0K\212\0\0\314\206\0\0\317\210\0\0\354\230" - "\0\0\377\231\0\0\377\227\0\0\377\222\0\0\377\226\0\0\377\225\0\0\375|\0\0" - "\257U\0\0,\33\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\7\0\0\0]\0\0B\235\0\0\371\225\0\0\377\223\0\0\377\224\0\0\377" - "\224\0\0\377\237\0\0\377s\0\0\213\34\0\0\3\0\0\0\0\0\0\0\0\2\0\0\0\23\0\0" - "\1I\0\0\35\216\0\0\336\233\0\0\377\223\0\0\377\222\0\0\377\227\0\0\377\240" - "\0\0\377\246\0\0\377\235\0\0\374\222\0\0\356|\0\0\256\\\0\0?g\0\0z\232\0" - "\0\377\227\0\0\377\223\0\0\377\223\0\0\377\236\0\0\377z\0\0\244\30\0\0\5" - "+\0\0\11\200\0\0\301\233\0\0\377\225\0\0\377\242\0\0\377z\0\0\233\30\0\0" - "\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0J\0\0\25\212\0\0\277\252\0\0\375\230\0" - "\0\356~\0\0\270~\0\0\300v\0\0\234z\0\0\306\227\0\0\377\224\0\0\377\224\0" - "\0\377\237\0\0\377|\0\0\240\31\0\0\4n\0\0~\241\0\0\377\224\0\0\377\224\0" - "\0\377\233\0\0\373j\0\0h\25\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\7\0\0\0U\0\0.\233\0\0\366\233\0\0\377\223\0\0\377\224\0\0\377\225\0\0\377" - "\233\0\0\372c\0\0Q\24\0\0\1\0\0\0\0\0\0\0\0\35\0\0\1M\0\0\33\200\0\0\243" - "\224\0\0\371\226\0\0\377\222\0\0\377\227\0\0\377\240\0\0\377\243\0\0\377" - "\222\0\0\350g\0\0a@\0\0\26\23\0\0\1\0\0\0\0\22\0\0\1^\0\0Q\234\0\0\374\225" - "\0\0\377\222\0\0\377\236\0\0\377\215\0\0\355?\0\0\31\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0-\0\0\5\204\0\0\256\237\0\0\377\224\0\0\377\225" - "\0\0\377\234\0\0\377m\0\0o\22\0\0\1'\0\0\11;\0\0\22\"\0\0\13w\0\0\240\252" - "\0\0\376\243\0\0\377\230\0\0\377y\0\0\334\214\0\0\346\234\0\0\373\227\0\0" - "\377\232\0\0\377\211\0\0\353E\0\0\37\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\25\0\0\3n\0\0y\240\0\0\377\222" - "\0\0\377\224\0\0\377\223\0\0\377\232\0\0\377\226\0\0\362P\0\0/\14\0\0\1\2" - "\0\0\0\37\0\0\3A\0\0\22V\0\0:}\0\0\265\235\0\0\377\225\0\0\377\223\0\0\377" - "\231\0\0\377\232\0\0\373\220\0\0\335}\0\0\257e\0\0XG\0\0\37%\0\0\11\3\0\0" - "\0N\0\0""0\225\0\0\366\231\0\0\377\223\0\0\377\223\0\0\377\236\0\0\377z\0" - "\0\244\30\0\0\5+\0\0\11\200\0\0\301\234\0\0\377\224\0\0\377\240\0\0\377z" - "\0\0\227\33\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0;\0\0\15{\0\0\256\227\0\0\344w\0" - "\0zL\0\0#\"\0\0\11#\0\0\12\24\0\0\7n\0\0\203\236\0\0\377\223\0\0\377\224" - "\0\0\377\240\0\0\377i\0\0g\32\0\0\6z\0\0\252\241\0\0\377\222\0\0\377\232" - "\0\0\377\213\0\0\327>\0\0\20\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0""7\0\0\10|\0\0\235\241\0\0\376\223\0\0\377\223\0\0\377\223\0\0\377\233" - "\0\0\377\223\0\0\335=\0\0\21\0\0\0\0\5\0\0\0+\0\0\5h\0\0R\214\0\0\322\240" - "\0\0\377\227\0\0\377\222\0\0\377\230\0\0\377\223\0\0\367\206\0\0\311}\0\0" - "\256Z\0\0""5\25\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\21\0\0\1^\0\0P\234\0\0\374" - "\225\0\0\377\222\0\0\377\236\0\0\377\216\0\0\357@\0\0\33\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0J\0\0%\217\0\0\346\231\0\0\377\222\0\0\377" - "\234\0\0\377\221\0\0\360Q\0\0.\33\0\0\2l\0\0e\220\0\0\327v\0\0\217M\0\0K" - "p\0\0\247\230\0\0\364\244\0\0\377\206\0\0\314@\0\0\40p\0\0l\240\0\0\367\232" - "\0\0\377\226\0\0\375|\0\0\240O\0\0\34\17\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0\0>\0\0\23\211\0\0\326\233\0\0\377\223" - "\0\0\377\224\0\0\377\223\0\0\377\234\0\0\377\210\0\0\3300\0\0\16\0\0\0\0" - "\0\0\0\0d\0\0F\227\0\0\340\227\0\0\367\232\0\0\377\224\0\0\377\225\0\0\377" - "\237\0\0\377\224\0\0\346k\0\0gA\0\0\23&\0\0\10\17\0\0\1\0\0\0\0\0\0\0\0\0" - "\0\0\0@\0\0\40\221\0\0\360\232\0\0\377\223\0\0\377\223\0\0\377\236\0\0\377" - "z\0\0\244\31\0\0\5+\0\0\11\201\0\0\301\234\0\0\377\223\0\0\377\236\0\0\377" - "{\0\0\244\32\0\0\5\0\0\0\0\0\0\0\0\16\0\0\3Q\0\0Ci\0\0}M\0\0\30\27\0\0\3" - "\0\0\0\0\0\0\0\0\0\0\0\0,\0\0\14\202\0\0\305\240\0\0\377\222\0\0\377\232" - "\0\0\377\225\0\0\354J\0\0\35G\0\0\33\217\0\0\347\233\0\0\377\222\0\0\377" - "\241\0\0\377t\0\0\213\30\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0%\0" - "\0\4n\0\0d\236\0\0\372\225\0\0\377\223\0\0\377\224\0\0\377\223\0\0\377\240" - "\0\0\377u\0\0\215\35\0\0\4\26\0\0\3@\0\0\23|\0\0\223\236\0\0\372\240\0\0" - "\377\225\0\0\377\223\0\0\377\230\0\0\377\230\0\0\372m\0\0h1\0\0\14%\0\0\10" - "\14\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\21\0\0\1^\0\0O\234\0\0\374\225" - "\0\0\377\222\0\0\377\236\0\0\377\216\0\0\356?\0\0\32\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0f\0\0_\234\0\0\376\227\0\0\377\222\0\0\377\237" - "\0\0\377\206\0\0\306)\0\0\13$\0\0\2{\0\0\222\246\0\0\374\240\0\0\372\236" - "\0\0\354u\0\0\244M\0\0""6\177\0\0\244\235\0\0\367\177\0\0\2103\0\0\13w\0" - "\0u\231\0\0\365\233\0\0\377\241\0\0\377\216\0\0\314K\0\0\26\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\20\0\0\2d\0\0\\\237\0\0\375\224" - "\0\0\377\223\0\0\377\224\0\0\377\223\0\0\377\242\0\0\377|\0\0\253\36\0\0" - "\5\0\0\0\0\0\0\0\0\\\0\0""4\211\0\0\312\226\0\0\376\225\0\0\377\225\0\0\377" - "\236\0\0\377\200\0\0\273M\0\0\37\23\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0@\0\0\37\221\0\0\357\232\0\0\377\223\0\0\377\223\0\0\377" - "\236\0\0\377z\0\0\244\31\0\0\5+\0\0\10\201\0\0\277\233\0\0\377\223\0\0\377" - "\236\0\0\377z\0\0\243\31\0\0\5\0\0\0\0\0\0\0\0\10\0\0\0\35\0\0\4\36\0\0\4" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0M\0\0&\225\0\0\363\231\0\0\377\222" - "\0\0\377\235\0\0\377}\0\0\261$\0\0\6e\0\0V\242\0\0\375\226\0\0\377\232\0" - "\0\377\230\0\0\363Y\0\0:\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0""7\0\0" - "\10q\0\0o\225\0\0\362\233\0\0\377\223\0\0\377\224\0\0\377\224\0\0\377\225" - "\0\0\377\237\0\0\373[\0\0B\11\0\0\0B\0\0#\210\0\0\327\236\0\0\375\230\0\0" - "\377\224\0\0\377\223\0\0\377\227\0\0\377\237\0\0\376x\0\0\213+\0\0\6\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\25\0\0\1c\0\0\\\234" - "\0\0\375\225\0\0\377\222\0\0\377\237\0\0\377\211\0\0\3437\0\0\24\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\11\0\0\0u\0\0\205\235\0\0\377\225\0\0\377" - "\225\0\0\377\244\0\0\377~\0\0\245\32\0\0\4\26\0\0\1T\0\0/w\0\0\210\222\0" - "\0\325\226\0\0\343\223\0\0\362{\0\0\237@\0\0\37x\0\0l\243\0\0\366\201\0\0" - "\220G\0\0\16_\0\0""9\213\0\0\302\227\0\0\362\237\0\0\375~\0\0\2377\0\0\12" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0%\0\0\6~\0\0\250\240\0\0" - "\377\224\0\0\377\224\0\0\377\224\0\0\377\224\0\0\377\236\0\0\373e\0\0Y\16" - "\0\0\1\0\0\0\0\2\0\0\0\25\0\0\1T\0\0<\221\0\0\370\227\0\0\377\232\0\0\377" - "\224\0\0\365U\0\0""1\16\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0@\0\0\37\222\0\0\357\232\0\0\377\223\0\0\377\223\0\0\377\236" - "\0\0\377z\0\0\244\31\0\0\5#\0\0\3z\0\0\236\235\0\0\377\223\0\0\377\236\0" - "\0\377}\0\0\257\35\0\0\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\17\0\0\2e\0\0a\236\0\0\375\227\0\0\377\222\0\0\377" - "\240\0\0\377n\0\0y\36\0\0\6x\0\0\236\241\0\0\377\221\0\0\377\242\0\0\377" - "z\0\0\247)\0\0\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0&\0\0\5u\0\0\207\240\0\0" - "\372\234\0\0\377\223\0\0\377\223\0\0\377\224\0\0\377\223\0\0\377\235\0\0" - "\377\221\0\0\341C\0\0\25\0\0\0\0P\0\0/\214\0\0\364\226\0\0\376\225\0\0\377" - "\224\0\0\377\225\0\0\377\241\0\0\377\204\0\0\305A\0\0\22\3\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\35\0\0\2n\0\0}\233\0\0\377" - "\224\0\0\377\222\0\0\377\240\0\0\377\201\0\0\302%\0\0\13\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0""0\0\0\16\212\0\0\320\240\0\0\377\223\0\0\377\225" - "\0\0\377\237\0\0\377t\0\0\201\20\0\0\1!\0\0\6T\0\0.<\0\0\22?\0\0\21N\0\0" - "$\203\0\0\301\257\0\0\376\210\0\0\267<\0\0\23u\0\0]\227\0\0\353\212\0\0\273" - "A\0\0\23""8\0\0\12T\0\0""3\221\0\0\337\251\0\0\374v\0\0\2030\0\0\10\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\17\0\0\0T\0\0""1\225\0\0\357\231\0\0\377\223\0" - "\0\377\224\0\0\377\222\0\0\377\237\0\0\377\206\0\0\316<\0\0\22\0\0\0\0\0" - "\0\0\0\0\0\0\0#\0\0\6~\0\0\255\236\0\0\377\225\0\0\377\240\0\0\377}\0\0\243" - "'\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@" - "\0\0\37\222\0\0\357\232\0\0\377\223\0\0\377\223\0\0\377\236\0\0\377z\0\0" - "\244\31\0\0\5\26\0\0\2h\0\0m\240\0\0\377\224\0\0\377\234\0\0\377\215\0\0" - "\350L\0\0$\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\30\0\0\5t\0\0\222\243\0\0\377\222\0\0\377\223\0\0\377\235\0\0" - "\373b\0\0R>\0\0\20\215\0\0\336\232\0\0\377\224\0\0\377\235\0\0\376^\0\0O" - "\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0""8\0\0\7s\0\0\207\242\0\0\376\240\0\0\377" - "\223\0\0\377\223\0\0\377\224\0\0\377\224\0\0\377\222\0\0\377\241\0\0\377" - "t\0\0\216\34\0\0\4\11\0\0\2J\0\0""2b\0\0]{\0\0\260\241\0\0\377\225\0\0\377" - "\227\0\0\377\231\0\0\370^\0\0F\17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\15\0\0\1V\0\0;\231\0\0\366\225\0\0\377\222" - "\0\0\377\241\0\0\377\200\0\0\271\36\0\0\11\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\10\0\0\0h\0\0]\235\0\0\376\230\0\0\377\222\0\0\377\231\0\0\377\222\0\0" - "\371P\0\0""6\4\0\0\0?\0\0\31\211\0\0\327\216\0\0\316_\0\0:7\0\0\12U\0\0+" - "\215\0\0\334\254\0\0\375\211\0\0\266F\0\0\21d\0\0?\237\0\0\361\220\0\0\314" - "O\0\0\34\35\0\0\2b\0\0@\226\0\0\344\244\0\0\374q\0\0s\31\0\0\1\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\"\0\0\2t\0\0\210\236\0\0\377\224\0\0\377\223\0\0\377\223\0" - "\0\377\226\0\0\377\233\0\0\372e\0\0]\24\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0U\0" - "\0""2\223\0\0\364\232\0\0\377\231\0\0\377\232\0\0\363[\0\0""8\22\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0\0\37\222" - "\0\0\357\232\0\0\377\223\0\0\377\223\0\0\377\236\0\0\377{\0\0\250\32\0\0" - "\5\15\0\0\1X\0\0E\234\0\0\374\224\0\0\377\224\0\0\377\236\0\0\377w\0\0\227" - "!\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\26" - "\0\0\5r\0\0\215\242\0\0\377\222\0\0\377\227\0\0\377\226\0\0\365T\0\0""3A" - "\0\0\22\216\0\0\344\231\0\0\377\234\0\0\377\215\0\0\355@\0\0\36\0\0\0\0\0" - "\0\0\0\0\0\0\0""2\0\0\6p\0\0\201\237\0\0\373\231\0\0\371w\0\0\302\220\0\0" - "\370\224\0\0\377\224\0\0\377\223\0\0\377\226\0\0\377\230\0\0\367Z\0\0A\12" - "\0\0\0\6\0\0\1\15\0\0\2^\0\0,\216\0\0\334\235\0\0\377\224\0\0\377\232\0\0" - "\377\207\0\0\3008\0\0\13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\14\0\0\1T\0\0""9\230\0\0\365\225\0\0\377\222\0\0" - "\377\241\0\0\377\200\0\0\272\36\0\0\11\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\35" - "\0\0\4\177\0\0\246\242\0\0\377\224\0\0\377\223\0\0\377\233\0\0\377\214\0" - "\0\341+\0\0\20\0\0\0\0\31\0\0\5W\0\0""0\177\0\0\237\232\0\0\365\206\0\0\275" - "b\0\0KS\0\0/\203\0\0\261\250\0\0\374\211\0\0\255I\0\0\27s\0\0r\254\0\0\377" - "\212\0\0\307X\0\0,\25\0\0\2e\0\0>\230\0\0\345\227\0\0\357W\0\0""4\20\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0G\0\0\35\215\0\0\335\232\0\0\377\223\0\0\377\224\0\0\377" - "\222\0\0\377\240\0\0\377~\0\0\265-\0\0\12\0\0\0\0\0\0\0\0\0\0\0\0,\0\0\7" - "}\0\0\236\236\0\0\377\224\0\0\377\234\0\0\377\200\0\0\254.\0\0\6\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0A\0\0\37" - "\222\0\0\360\232\0\0\377\223\0\0\377\225\0\0\377\233\0\0\377p\0\0\201\27" - "\0\0\2\5\0\0\0""8\0\0\20\215\0\0\332\231\0\0\377\222\0\0\377\233\0\0\377" - "\230\0\0\367\\\0\0F\31\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\33\0\0\6v\0\0\231\243\0\0\377\222\0\0\377\232\0\0\377\217\0" - "\0\354F\0\0\34B\0\0\23\215\0\0\345\232\0\0\377\236\0\0\377z\0\0\253\31\0" - "\0\7\0\0\0\0\21\0\0\0I\0\0\25|\0\0\235\232\0\0\372\235\0\0\375i\0\0|^\0\0" - "g\224\0\0\371\224\0\0\377\224\0\0\377\222\0\0\377\240\0\0\377\202\0\0\302" - "3\0\0\17\0\0\0\0\0\0\0\0C\0\0\16\210\0\0\304\243\0\0\377\223\0\0\377\224" - "\0\0\377\231\0\0\370e\0\0T\25\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\22\0\0\1`\0\0S\235\0\0\374\225\0\0\377" - "\222\0\0\377\241\0\0\377\201\0\0\274!\0\0\11\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0+\0\0\16\207\0\0\315\237\0\0\377\222\0\0\377\224\0\0\377\234\0\0\377" - "~\0\0\244\27\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0?\0\0\16\216\0\0\303\254\0\0\374" - "\236\0\0\363|\0\0\212A\0\0\"\200\0\0\234\253\0\0\372\210\0\0\262C\0\0!\177" - "\0\0\243\257\0\0\376\222\0\0\340_\0\0B&\0\0\3h\0\0R\235\0\0\361\217\0\0\331" - "]\0\0""0\34\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\5\0\0\0l\0\0g\240\0\0\377\227\0\0\377\223\0\0\377\223\0" - "\0\377\226\0\0\377\242\0\0\377l\0\0a\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0[\0\0" - """6\226\0\0\367\232\0\0\377\231\0\0\377\225\0\0\357N\0\0&\10\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0A\0\0!" - "\222\0\0\360\232\0\0\377\223\0\0\377\227\0\0\377\233\0\0\377i\0\0b\5\0\0" - "\0\0\0\0\0\20\0\0\2n\0\0l\241\0\0\375\223\0\0\377\223\0\0\377\234\0\0\377" - "\221\0\0\340\\\0\0""8\24\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\15\0\0\1]\0\0E\226\0\0\367\227\0\0\377\231\0\0\377\220\0\0\355G\0" - "\0\32B\0\0\23\216\0\0\345\232\0\0\377\236\0\0\377r\0\0\177\3\0\0\0\32\0\0" - "\2T\0\0$\204\0\0\276\240\0\0\376\243\0\0\375z\0\0\227(\0\0\14\206\0\0\267" - "\235\0\0\377\224\0\0\377\223\0\0\377\226\0\0\377\240\0\0\377e\0\0g\11\0\0" - "\1\0\0\0\0*\0\0\6u\0\0\204\241\0\0\377\225\0\0\377\223\0\0\377\240\0\0\377" - "\211\0\0\3032\0\0\11\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\21\0\0\1_\0\0Q\235\0\0\374\225\0\0\377\225\0" - "\0\377\241\0\0\377s\0\0\177\23\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\"\0" - "\0\10\177\0\0\266\236\0\0\377\223\0\0\377\226\0\0\377\236\0\0\377m\0\0q\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\12\0\0\1""9\0\0\21e\0\0U\221\0\0\331\247\0" - "\0\377\210\0\0\264;\0\0\31\203\0\0\242\250\0\0\375\205\0\0\254>\0\0\40v\0" - "\0\211\237\0\0\365\236\0\0\357t\0\0l\32\0\0\4q\0\0g\256\0\0\373\237\0\0\351" - "m\0\0R%\0\0\4\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0<\0\0\16\201\0\0\271\240\0\0\377\225\0\0\377\223\0\0\377\223\0\0\377" - "\236\0\0\377\215\0\0\343J\0\0\37\0\0\0\0\0\0\0\0\0\0\0\0\35\0\0\4u\0\0\214" - "\237\0\0\377\222\0\0\377\241\0\0\377\201\0\0\262\"\0\0\6\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0""1\0\0\14" - "\205\0\0\311\236\0\0\377\224\0\0\377\227\0\0\377\234\0\0\377l\0\0d\13\0\0" - "\0\0\0\0\0\0\0\0\0C\0\0\27\203\0\0\273\234\0\0\376\223\0\0\377\224\0\0\377" - "\235\0\0\377\210\0\0\324X\0\0""4'\0\0\5\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\10\0\0\0""9\0\0\26\204\0\0\333\233\0\0\377\231\0\0\377\220\0\0\355" - "G\0\0\32B\0\0\23\215\0\0\342\232\0\0\377\234\0\0\377y\0\0\255?\0\0\30e\0" - "\0V\216\0\0\335\237\0\0\377\240\0\0\376\177\0\0\234@\0\0\14C\0\0\26\220\0" - "\0\335\230\0\0\377\223\0\0\377\223\0\0\377\227\0\0\377\237\0\0\377c\0\0_" - "\22\0\0\1#\0\0\4o\0\0m\230\0\0\364\232\0\0\377\222\0\0\377\232\0\0\377\234" - "\0\0\365c\0\0G\16\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\15\0\0\1J\0\0)\202\0\0\313\224\0\0\377\226" - "\0\0\377\241\0\0\377o\0\0l\17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\15\0\0\1c\0\0" - "M\222\0\0\360\230\0\0\377\223\0\0\377\227\0\0\377\234\0\0\375d\0\0]\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\13\0\0\1Q\0\0'\216\0\0\332\253" - "\0\0\373d\0\0SO\0\0\36\222\0\0\317\251\0\0\374\202\0\0\2346\0\0\14t\0\0g" - "\252\0\0\364\220\0\0\326L\0\0\35\36\0\0\5l\0\0R\225\0\0\331\240\0\0\364{" - "\0\0\223F\0\0\31\14\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\40\0\0\2" - "z\0\0\210\240\0\0\376\225\0\0\377\223\0\0\377\223\0\0\377\226\0\0\377\244" - "\0\0\377x\0\0\213\31\0\0\3\0\0\0\0\0\0\0\0\6\0\0\0X\0\0""8\223\0\0\360\231" - "\0\0\377\224\0\0\377\233\0\0\367`\0\0E\13\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\32\0\0\1n\0\0y\231" - "\0\0\377\225\0\0\377\225\0\0\377\243\0\0\377{\0\0\232\31\0\0\3\0\0\0\0\0" - "\0\0\0\2\0\0\0N\0\0\37\221\0\0\340\241\0\0\377\223\0\0\377\223\0\0\377\233" - "\0\0\377\231\0\0\362y\0\0\224D\0\0\30\33\0\0\5\7\0\0\1\10\0\0\1\31\0\0\4" - "T\0\0,\203\0\0\272\234\0\0\375\232\0\0\377\232\0\0\377\220\0\0\355G\0\0\32" - "/\0\0\12\200\0\0\277\234\0\0\377\222\0\0\377\223\0\0\374\223\0\0\355\227" - "\0\0\372\237\0\0\377\240\0\0\377\177\0\0\2425\0\0\13\2\0\0\0A\0\0\32\217" - "\0\0\340\227\0\0\377\224\0\0\377\224\0\0\377\223\0\0\377\231\0\0\377\217" - "\0\0\340R\0\0'S\0\0)\230\0\0\354\232\0\0\377\223\0\0\377\223\0\0\377\242" - "\0\0\377z\0\0\235)\0\0\7\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\26\0\0\2[\0\0I\230\0\0\371" - "\230\0\0\377\241\0\0\377p\0\0p\21\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0""8\0\0\24" - "\210\0\0\332\237\0\0\377\222\0\0\377\223\0\0\377\230\0\0\377\220\0\0\343" - "H\0\0\40\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\32\0\0\1" - "t\0\0t\250\0\0\375\207\0\0\2749\0\0\14X\0\0)\221\0\0\324\250\0\0\373~\0\0" - "\215-\0\0\10]\0\0""0\202\0\0\270\214\0\0\340p\0\0[(\0\0\4M\0\0\40\213\0\0" - "\317\251\0\0\377\212\0\0\307E\0\0\27\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0U\0\0-\223\0\0\355\235\0\0\377\222\0\0\377\224\0\0\377\223\0\0\377\235" - "\0\0\377\216\0\0\337R\0\0$\6\0\0\0\0\0\0\0\0\0\0\0""6\0\0\16\201\0\0\264" - "\241\0\0\377\221\0\0\377\236\0\0\377\207\0\0\317<\0\0\17\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\36\0\0\2{\0\0\231\234\0\0\377\224\0\0\377\222\0\0\377\240\0\0\377\177\0" - "\0\255\32\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\17\0\0\1h\0\0J\224\0\0\355\237\0" - "\0\377\227\0\0\377\223\0\0\377\233\0\0\377\236\0\0\376\212\0\0\333s\0\0\225" - "d\0\0^e\0\0ar\0\0\215\215\0\0\341\241\0\0\377\211\0\0\326\217\0\0\356\244" - "\0\0\377\220\0\0\353E\0\0\30\27\0\0\2n\0\0w\250\0\0\376\232\0\0\377\235\0" - "\0\377\242\0\0\377\240\0\0\377\234\0\0\376\200\0\0\253H\0\0\25\2\0\0\0\12" - "\0\0\0H\0\0#\221\0\0\351\227\0\0\377\223\0\0\377\224\0\0\377\223\0\0\377" - "\222\0\0\377\232\0\0\376\202\0\0\316{\0\0\300\230\0\0\377\224\0\0\377\222" - "\0\0\377\234\0\0\377\225\0\0\354W\0\0""3\11\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\2\0\0\0M\0\0'\226\0\0\362\235\0\0\377\236\0\0\377m\0\0e\16\0\0\0\0\0\0\0" - "\0\0\0\0\2\0\0\0\\\0\0I\232\0\0\375\227\0\0\377\223\0\0\377\224\0\0\377\235" - "\0\0\377\211\0\0\3021\0\0\7\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0""9\0\0\14\200\0\0\235\244\0\0\371}\0\0~\37\0\0\4X\0\0" - ",\212\0\0\276\234\0\0\366\177\0\0\234A\0\0\25:\0\0\20x\0\0\216\217\0\0\354" - "w\0\0|)\0\0\4f\0\0>\226\0\0\347\252\0\0\377}\0\0\236?\0\0\14\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0""0\0\0\12{\0\0\253\237\0\0\377\225\0\0\377\223\0\0\377\223\0" - "\0\377\231\0\0\377\227\0\0\371e\0\0U\25\0\0\1\0\0\0\0\0\0\0\0\17\0\0\1g\0" - "\0]\237\0\0\374\226\0\0\377\224\0\0\377\237\0\0\375i\0\0i\23\0\0\2\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0!\0\0\3\204\0\0\260\243\0\0\377\230\0\0\377\223\0\0\377\240\0\0" - "\377z\0\0\241\31\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\33\0\0\2^\0\0;\210" - "\0\0\317\240\0\0\376\233\0\0\377\225\0\0\377\223\0\0\377\234\0\0\377\240" - "\0\0\377\236\0\0\376\236\0\0\376\245\0\0\377\243\0\0\376{\0\0\243@\0\0\25" - "d\0\0L\226\0\0\354\231\0\0\361Q\0\0(\2\0\0\0M\0\0\36\210\0\0\312\226\0\0" - "\370\223\0\0\371\225\0\0\371\215\0\0\340s\0\0};\0\0\16\15\0\0\0\0\0\0\0\13" - "\0\0\0F\0\0!\212\0\0\337\230\0\0\377\223\0\0\377\223\0\0\377\224\0\0\377" - "\227\0\0\377\224\0\0\377\232\0\0\377\233\0\0\377\223\0\0\377\223\0\0\377" - "\224\0\0\377\242\0\0\377p\0\0\177\34\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0G\0\0\32\221\0\0\354\240\0\0\377\224\0\0\371[\0\0;\5\0\0\0\0\0" - "\0\0\0\0\0\0\35\0\0\6y\0\0\237\244\0\0\377\222\0\0\377\223\0\0\377\224\0" - "\0\377\236\0\0\377}\0\0\237%\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0>\0\0\15\201\0\0\225\241\0\0\364t\0\0" - "d-\0\0\3F\0\0\17\203\0\0\261\262\0\0\375\210\0\0\301K\0\0!)\0\0\5_\0\0K\213" - "\0\0\342~\0\0\221H\0\0\16f\0\0<\217\0\0\323\246\0\0\376\201\0\0\256S\0\0" - "\40\21\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0%\0\0\4r\0\0\200\235\0\0\374\225\0\0\377\223\0\0\377\223\0\0" - "\377\224\0\0\377\243\0\0\377\200\0\0\252*\0\0\6\0\0\0\0\0\0\0\0\0\0\0\0""0" - "\0\0\12\207\0\0\312\237\0\0\377\221\0\0\377\235\0\0\377\214\0\0\347@\0\0" - "\33\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0$\0\0\1n\0\0\202\207\0\0\347\224\0\0\374\233\0" - "\0\377\247\0\0\377}\0\0\252\32\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\17\0\0\0@\0\0\25o\0\0l\214\0\0\336\247\0\0\377\242\0\0\377\235\0\0\377" - "\227\0\0\377\230\0\0\377\237\0\0\377\247\0\0\377\215\0\0\315I\0\0\26\16\0" - "\0\0\30\0\0\2]\0\0?\231\0\0\364n\0\0a\10\0\0\1\17\0\0\1""4\0\0\21S\0\0""6" - "W\0\0=X\0\0<@\0\0\33\30\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0*\0\0\5\204" - "\0\0\271\244\0\0\377\231\0\0\377\233\0\0\377\242\0\0\377\241\0\0\377\225" - "\0\0\377\222\0\0\377\223\0\0\377\223\0\0\377\224\0\0\377\240\0\0\377\206" - "\0\0\316@\0\0\26\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0>\0\0\23" - "\214\0\0\337\250\0\0\377\224\0\0\367T\0\0""4\0\0\0\0\0\0\0\0\0\0\0\0:\0\0" - "\22\212\0\0\333\235\0\0\377\223\0\0\377\223\0\0\377\231\0\0\377\241\0\0\376" - "j\0\0o\31\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\6\0\0\0""0\0\0\10r\0\0m\226\0\0\355x\0\0t#\0\0\4U\0\0\37\206" - "\0\0\302\252\0\0\374\210\0\0\270A\0\0\25\40\0\0\4b\0\0H\227\0\0\351\221\0" - "\0\275K\0\0\21P\0\0\34\177\0\0\236\246\0\0\374\223\0\0\335`\0\0:\24\0\0\1" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\25\0\0\1`\0\0E\231" - "\0\0\364\235\0\0\377\222\0\0\377\223\0\0\377\223\0\0\377\237\0\0\377\220" - "\0\0\335T\0\0'\21\0\0\0\0\0\0\0\0\0\0\0\22\0\0\1\\\0\0@\235\0\0\373\226\0" - "\0\377\224\0\0\377\244\0\0\377z\0\0\236\30\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\22\0\0\0""6\0\0\30B\0\0\40o\0\0\226\200\0\0\321\206\0\0\270\201\0\0\240" - "\30\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\30\0\0" - "\1T\0\0%t\0\0\177}\0\0\261\207\0\0\336\231\0\0\371\230\0\0\367\202\0\0\312" - "w\0\0\213S\0\0#\23\0\0\0\0\0\0\0\0\0\0\0\33\0\0\1b\0\0FM\0\0&\10\0\0\1\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\31\0\0\1f\0\0P\216\0\0\335\234\0\0\373\200\0\0\307o\0\0yj" - "\0\0~\214\0\0\365\227\0\0\377\223\0\0\377\223\0\0\377\232\0\0\377\234\0\0" - "\373e\0\0P\14\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0!\0\0\5" - "m\0\0|\235\0\0\372\216\0\0\351E\0\0!\0\0\0\0\0\0\0\0\7\0\0\0D\0\0\34\214" - "\0\0\344\232\0\0\377\222\0\0\377\231\0\0\376y\0\0\277\214\0\0\353[\0\0L\21" - "\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0$\0\0\4\201\0\0\211\253\0\0\373v\0\0\204<\0\0\14H\0" - "\0\31v\0\0\202\232\0\0\352\210\0\0\273X\0\0""9\30\0\0\5b\0\0C\230\0\0\344" - "\214\0\0\272W\0\0\"4\0\0\10o\0\0n\235\0\0\361\235\0\0\354e\0\0H\33\0\0\2" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\22\0\0\3\32\0\0\7""1\0\0" - "\13\"\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\20\0\0\0Q\0\0\37\216\0\0\330\236" - "\0\0\377\224\0\0\377\223\0\0\377\223\0\0\377\232\0\0\377\232\0\0\360f\0\0" - "R\25\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0""2\0\0\11\207\0\0\276\236\0\0\377\223" - "\0\0\377\235\0\0\377\222\0\0\354T\0\0.\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\13\0\0\1T\0\0Jc\0\0~E\0\0\27N\0\0'\5\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\13\0\0\1\34\0\0" - "\7""3\0\0\21S\0\0""3S\0\0""0)\0\0\14\16\0\0\3\0\0\0\0\2\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\4\0\0\1\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\17\0\0\2D\0" - "\0\32V\0\0""93\0\0\17\23\0\0\2g\0\0_\227\0\0\374\227\0\0\377\223\0\0\377" - "\225\0\0\377\243\0\0\377\206\0\0\2662\0\0\14\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0S\0\0""0\241\0\0\366\210\0\0\323.\0\0" - "\21\0\0\0\0\0\0\0\0\23\0\0\3j\0\0m\234\0\0\374\224\0\0\377\230\0\0\377\226" - "\0\0\363O\0\0""1E\0\0--\0\0\21\12\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0""8\0\0\15" - "\204\0\0\236\251\0\0\374\177\0\0\232;\0\0\13\30\0\0\3^\0\0""8\220\0\0\307" - "\220\0\0\334_\0\0""8)\0\0\2P\0\0""1\214\0\0\314\225\0\0\335g\0\0?#\0\0\3" - "W\0\0""0\220\0\0\302\233\0\0\362s\0\0h6\0\0\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0(\0\0\16""8\0\0%\202\0\0\267u\0\0a\25\0\0\2\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\21" - "\0\0\0Q\0\0\36\214\0\0\304\235\0\0\377\224\0\0\377\223\0\0\377\223\0\0\377" - "\232\0\0\377\231\0\0\366g\0\0R\37\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\20\0\0\0" - "O\0\0)\225\0\0\352\235\0\0\377\231\0\0\377\240\0\0\377x\0\0\227\37\0\0\4" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\14\0\0\2O\0\0=[\0\0d\"\0" - "\0\1\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\11\0\0\0Q\0\0$\216\0\0\336\235" - "\0\0\377\223\0\0\377\227\0\0\377\232\0\0\374r\0\0\212J\0\0\32\15\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0I\0\0#\227" - "\0\0\346\212\0\0\325/\0\0\21\0\0\0\0\0\0\0\0\31\0\0\5t\0\0\216\243\0\0\377" - "\221\0\0\377\241\0\0\377{\0\0\262?\0\0,<\0\0$\20\0\0\2\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0""4\0\0\14\201\0\0\233\244\0\0\373s\0\0n\24\0\0\2\12" - "\0\0\0O\0\0\31\213\0\0\264\230\0\0\337S\0\0""1\"\0\0\2U\0\0""1\233\0\0\344" - "\233\0\0\354t\0\0u9\0\0\16C\0\0\17\202\0\0\240\247\0\0\372y\0\0q!\0\0\3\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\25\0\0\4\35\0\0\7\205\0\0\245\230\0\0\345" - "d\0\0<%\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\13\0\0\0R\0\0\40\214\0\0\307\236\0\0\377\225\0\0\377\223\0\0" - "\377\223\0\0\377\225\0\0\377\240\0\0\376}\0\0\2330\0\0\10\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0""0\0\0\7|\0\0\241\235\0\0\377\216\0\0\354v\0\0\270\224\0" - "\0\370c\0\0I\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0" - "\0\0\33\0\0\5!\0\0\11\16\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\36" - "\0\0\5z\0\0\230\243\0\0\377\226\0\0\377\223\0\0\377\237\0\0\377\210\0\0\277" - ">\0\0\20\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\37\0\0\10\211\0\0\262\227\0\0\3415\0\0\24\0\0\0\0\11\0\0" - "\0N\0\0\"\212\0\0\332\231\0\0\377\227\0\0\377\245\0\0\377a\0\0Vz\0\0\250" - "j\0\0}\30\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0""8\0\0\14" - "\206\0\0\245\233\0\0\351a\0\0""0\10\0\0\0\0\0\0\0N\0\0\33\220\0\0\314\203" - "\0\0\266S\0\0-0\0\0\7c\0\0I\214\0\0\307\246\0\0\376\205\0\0\251F\0\0\17A" - "\0\0\17|\0\0\202\225\0\0\360o\0\0Y*\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0T\0\0\40\221\0\0\326\242\0\0\361w\0\0\207I\0\0\32\12\0\0\1\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\34\0\0\6]\0\0=\215\0\0\322\236" - "\0\0\377\225\0\0\377\223\0\0\377\222\0\0\377\226\0\0\377\243\0\0\377\202" - "\0\0\271A\0\0\20\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0[\0\0?\233\0\0\366" - "\240\0\0\377t\0\0\216_\0\0V{\0\0\261-\0\0\7\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0Q\0\0)\223\0\0\354\235\0\0\377\222\0\0\377\227" - "\0\0\377\230\0\0\356\\\0\0""4\26\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0:\0\0\23\220\0\0\334\202\0" - "\0\264$\0\0\7\0\0\0\0#\0\0\5\177\0\0\241\240\0\0\377\223\0\0\377\237\0\0" - "\377\217\0\0\343D\0\0\37|\0\0\271]\0\0""4\14\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0A\0\0\16\206\0\0\256\212\0\0\315g\0\0" - "GI\0\0\35\26\0\0\2V\0\0'|\0\0\243x\0\0\314q\0\0\205T\0\0\"N\0\0\32\210\0" - "\0\264\253\0\0\376\207\0\0\250<\0\0\15""0\0\0\4p\0\0a\210\0\0\337y\0\0\204" - "A\0\0\24\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\34\0\0\1`\0\0""6\220\0\0\317\257" - "\0\0\376\222\0\0\336j\0\0]:\0\0\13\14\0\0\0\20\0\0\1\21\0\0\1""1\0\0\12d" - "\0\0F{\0\0\247\225\0\0\365\240\0\0\377\224\0\0\377\223\0\0\377\223\0\0\377" - "\227\0\0\377\234\0\0\376\205\0\0\304O\0\0!\7\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\"\0\0\6~\0\0\253\242\0\0\377\224\0\0\354<\0\0\34F\0\0""2L\0\0" - """5\7\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0'\0\0\7{\0\0\245" - "\241\0\0\377\227\0\0\377\230\0\0\377\241\0\0\377y\0\0\220\"\0\0\4\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\35\0\0\3c\0\0`b\0\0p\17\0\0\1\17\0\0\0T\0\0+\226\0\0\354\232\0\0" - "\377\236\0\0\377\236\0\0\375k\0\0[d\0\0Gc\0\0\2044\0\0\12\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\7\0\0\0B\0\0\16y\0\0\211" - "\224\0\0\356\237\0\0\351t\0\0f\32\0\0\2/\0\0\3V\0\0""1\203\0\0\274\226\0" - "\0\350~\0\0zC\0\0\36\201\0\0\224\250\0\0\371\215\0\0\254>\0\0\16!\0\0\1a" - "\0\0""5\224\0\0\334\207\0\0\273J\0\0\23\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\16" - "\0\0\0P\0\0\37\207\0\0\274\250\0\0\375\252\0\0\375\200\0\0\256r\0\0ps\0\0" - "ws\0\0x~\0\0\264\232\0\0\372\242\0\0\377\226\0\0\377\222\0\0\377\223\0\0" - "\377\222\0\0\377\234\0\0\377\243\0\0\377x\0\0\236A\0\0\22\17\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0H\0\0(\224\0\0\362\201\0\0\316l\0\0\232" - "%\0\0\10\26\0\0\13\27\0\0\12\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\30\0\0\1`\0\0J\233\0\0\367\235\0\0\377\234\0\0\377\232\0\0\377\221\0" - "\0\347O\0\0!\7\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0F\0\0$W\0\0b\21\0\0\1\35\0\0" - "\2p\0\0|\241\0\0\377\225\0\0\375\217\0\0\362\206\0\0\341K\0\0\35m\0\0e^\0" - "\0?\7\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\34\0\0\2]\0\0""6\210\0\0\237\217\0\0\350g\0\0F\0\0\0\0" - "\5\0\0\0""9\0\0\13\206\0\0\235\256\0\0\374~\0\0\222B\0\0\23x\0\0l\245\0\0" - "\362\216\0\0\265H\0\0\22\3\0\0\0R\0\0\35\210\0\0\277\210\0\0\274Z\0\0\"\4" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\14\0\0\0;\0\0\16i\0\0T\206\0\0\303\243\0\0" - "\373\254\0\0\377\245\0\0\377\240\0\0\377\234\0\0\377\226\0\0\377\221\0\0" - "\377\222\0\0\377\222\0\0\377\230\0\0\377\241\0\0\377\223\0\0\356s\0\0{?\0" - "\0\14\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0R\0\0:\201\0" - "\0\340W\0\0B,\0\0\25\14\0\0\2\13\0\0\3\7\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0K\0\0\40\223\0\0\335\232\0\0\373\213\0\0\354~\0\0\301" - "c\0\0hT\0\0""9\31\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0,\0\0\11""8\0\0\25" - "\13\0\0\0\37\0\0\2r\0\0\204\243\0\0\377\220\0\0\326O\0\0""8O\0\0=\35\0\0" - "\7\27\0\0\3\21\0\0\3\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0!\0\0\4}\0\0\212\216" - "\0\0\322G\0\0\22\27\0\0\0\10\0\0\0""9\0\0\14{\0\0\207\250\0\0\373\216\0\0" - "\305U\0\0'i\0\0<\214\0\0\307\206\0\0\302Y\0\0+\37\0\0\1K\0\0\21\203\0\0\241" - "\217\0\0\335_\0\0""6\40\0\0\1\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0,\0\0" - "\13[\0\0>s\0\0\214\214\0\0\337\243\0\0\375\241\0\0\377\241\0\0\377\241\0" - "\0\377\241\0\0\377\242\0\0\377\235\0\0\367\202\0\0\271V\0\0""2\31\0\0\3\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0-\0\0\22@\0" - "\0(\33\0\0\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0F\0\0\37\222\0\0\332\211\0\0\305A\0\0!5\0\0\22\5\0\0" - "\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\35\0\0\2v\0\0\201\253\0\0\377|\0\0\215\40\0\0\2\5\0\0\1\3\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0""5\0\0\14o\0\0\204\200" - "\0\0\311d\0\0@!\0\0\3\0\0\0\0)\0\0\6~\0\0\205\256\0\0\374\217\0\0\323^\0" - "\0*G\0\0\17x\0\0\202\213\0\0\345k\0\0K(\0\0\2/\0\0\6r\0\0p\202\0\0\331w\0" - "\0zD\0\0\15\12\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\30\0\0\4J\0" - "\0\36o\0\0|\177\0\0\264\200\0\0\263\200\0\0\262\201\0\0\267u\0\0\221\\\0" - "\0:5\0\0\14\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\7\0\0\1\6\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0%\0\0\10c\0\0n\\\0\0A\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0$\0\0\2z\0\0\226\225\0\0\353^\0\0I\20\0\0\1\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - """6\0\0\10p\0\0p\215\0\0\345n\0\0b)\0\0\5\0\0\0\0*\0\0\10t\0\0}\245\0\0\362" - "\221\0\0\314\\\0\0)+\0\0\6u\0\0n\216\0\0\352m\0\0j%\0\0\5$\0\0\3j\0\0L\223" - "\0\0\345\202\0\0\250C\0\0\17\12\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\3\0\0\0\27\0\0\3$\0\0\7$\0\0\7#\0\0\7%\0\0\7\32\0\0\4\6\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\13\0\0\1\31\0\0\4\17\0\0\2\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\32\0\0\1M\0\0""6M\0\0*\40\0\0\10\6\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\37\0\0\3c\0\0C\202\0\0\320r\0\0|G\0\0\16\0\0\0\0\32\0\0\3d\0\0>\221" - "\0\0\327\232\0\0\350g\0\0<\36\0\0\3a\0\0""9|\0\0\314i\0\0o)\0\0\6\30\0\0" - "\1Y\0\0$\202\0\0\306z\0\0\244;\0\0\13\0\0\0\0\2\0\0\0\2\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\6\0\0\0\16\0\0\2\12\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\32\0\0\1S\0\0!\200\0\0\267z\0\0\245\\\0\0&\17\0\0\0\26\0\0" - "\1M\0\0\32y\0\0\205}\0\0\321c\0\0G\30\0\0\1Q\0\0\40g\0\0\222`\0\0o6\0\0\12" - "\11\0\0\0V\0\0\"u\0\0\232F\0\0-0\0\0\16#\0\0\5\2\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\23\0\0\0A\0\0\15{\0\0\227\212\0\0\330p\0\0[1\0\0\11\13\0\0" - "\0)\0\0\2\\\0\0;o\0\0\252Y\0\0=\30\0\0\2.\0\0\11d\0\0vV\0\0Z1\0\0\15\22\0" - "\0\0)\0\0\2\32\0\0\5c\0\0ye\0\0c)\0\0\5\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0$\0\0\4m\0\0Z\221\0\0\337\202\0\0\247E\0\0\17\0\0\0\0\10" - "\0\0\0K\0\0\36d\0\0\216L\0\0""5\23\0\0\2\36\0\0\4P\0\0BT\0\0g1\0\0\20\15" - "\0\0\0\12\0\0\0H\0\0\36j\0\0\226\207\0\0\257a\0\0,\15\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\16\0\0\0]\0\0""1\213\0\0\313y\0\0\2318\0\0\14" - "\40\0\0\0\11\0\0\0""8\0\0\17O\0\0TG\0\0""5\30\0\0\3\32\0\0\2E\0\0'G\0\0E" - "(\0\0\15\15\0\0\0\6\0\0\0M\0\0\23\211\0\0\255\200\0\0\302A\0\0\32\15\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0D\0\0\26s\0\0\233\201\0" - "\0\311c\0\0E*\0\0\3\0\0\0\0.\0\0\12F\0\0\0\0\15\7\0\0\0.\0\0\20^\0\0{a\0\0yN\0\0$\22\0\0\1\36\0\0\2""7\0\0\24[\0" - "\0mM\0\0N\37\0\0\13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\21\0\0\1K\0\0" - "+m\0\0\255k\0\0\177A\0\0\24\12\0\0\0\0\0\0\0>\0\0\20r\0\0\227r\0\0\233B\0" - "\0\24\5\0\0\0%\0\0\6c\0\0[i\0\0\242J\0\0""2\23\0\0\2\2\0\0\0\25\0\0\3$\0" - "\0\17\30\0\0\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\17\0\0\0G" - "\0\0\32i\0\0\201s\0\0\263Z\0\0""9\30\0\0\1\0\0\0\0;\0\0\13i\0\0{s\0\0\256" - "K\0\0\40\6\0\0\0\24\0\0\1A\0\0\34C\0\0""0\40\0\0\17\4\0\0\1\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\12\0\0" - "\0'\0\0\5a\0\0Jm\0\0\255^\0\0S,\0\0\4\10\0\0\0&\0\0\5Z\0\0BU\0\0f\"\0\0\12" - "\3\0\0\0\0\0\0\0\23\0\0\3\24\0\0\6\4\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\15\0\0" - "\1M\0\0!j\0\0\231f\0\0{1\0\0\14\23\0\0\0\22\0\0\1""0\0\0\15\23\0\0\4!\0\0" - "\12#\0\0\7\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\14\0\0" - "\0>\0\0\20^\0\0j^\0\0\202H\0\0\36\22\0\0\1\0\0\0\0\14\0\0\3H\0\0""9M\0\0" - "@\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\37\0\0\4R\0\0