diff --git a/.gitmessage b/.gitmessage index 75664741dee..3dc13d23c44 100644 --- a/.gitmessage +++ b/.gitmessage @@ -4,9 +4,9 @@ # [MODULE] A short but descriptive summary (#pr-num) # # A comprehensible description of WHY you did this work. Do not limit -# yourself here. -# The width of the description is arbitary, but it is a good idea to -# wrap the text by 72 chars. +# yourself here. +# The width of the description is arbitary, but it is a good idea to +# wrap the text by 72 chars. # # CORE-XXXX CIDXXXXX # ---------------------- @@ -17,6 +17,6 @@ # * Description of a commit should explain WHY a change was made. # * JIRA, Coverity ID references should be placed at the bottom row. # * There must be a newline between summary, description and bug IDs. -# * GitHub Pull Request ID should be referenced in the summary in -# parens. If the resulting summary is longer than 70 chars it may +# * GitHub Pull Request ID should be referenced in the summary in +# parens. If the resulting summary is longer than 70 chars it may # be placed last in the ID row to prevent hard wrapping on GitHub. diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile index 5e090eb7cdf..1fda5743294 100644 --- a/.gitpod.Dockerfile +++ b/.gitpod.Dockerfile @@ -1,5 +1,5 @@ FROM gitpod/workspace-full-vnc - + USER gitpod # Install custom tools, runtime, etc. using apt-get diff --git a/COPYING.ARM b/COPYING.ARM index 90d23b3263b..10be3e134fc 100644 --- a/COPYING.ARM +++ b/COPYING.ARM @@ -1,12 +1,12 @@ -Copyright 2008 ReactOS Portable Systems Group. All rights reserved. +Copyright 2008 ReactOS Portable Systems Group. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided -that the following conditions are met: +that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and - the following disclaimer. + the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions - and the following disclaimer in the documentation and/or other materials provided with the - distribution. + and the following disclaimer in the documentation and/or other materials provided with the + distribution. THIS SOFTWARE IS PROVIDED BY THE REACTOS PORTABLE SYSTEMS GROUP ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND diff --git a/base/applications/calc/convert.c b/base/applications/calc/convert.c index 79ee4471faf..5e6c5de1d8e 100644 --- a/base/applications/calc/convert.c +++ b/base/applications/calc/convert.c @@ -512,7 +512,7 @@ static const conv_t conv_VOLUME[] = { 1 chang = 20 tamlung 1 tamlung = 4 baht 1 baht = 4 saloung -1 saloung = +1 saloung = 1 chang = 6/5 kg = 1200 g 1 tamlung = 1/20 chang = 60 g diff --git a/base/applications/calc/fun_ieee.c b/base/applications/calc/fun_ieee.c index 3e8ba68de8e..6db63fd2b61 100644 --- a/base/applications/calc/fun_ieee.c +++ b/base/applications/calc/fun_ieee.c @@ -55,7 +55,7 @@ double acosh(double x) { // must be x>=1, if not return Nan (Not a Number) if(!(x>=1.0)) return sqrt(-1.0); - + // return only the positive result (as sqrt does). return log(x+sqrt(x*x-1.0)); } @@ -64,7 +64,7 @@ double atanh(double x) { // must be x>-1, x<1, if not return Nan (Not a Number) if(!(x>-1.0 && x<1.0)) return sqrt(-1.0); - + return log((1.0+x)/(1.0-x))/2.0; } @@ -372,7 +372,7 @@ static __int64 cbrti(__int64 x) { s = 60; y = 0; - while(s >= 0) { + while(s >= 0) { y = 2*y; b = (3*y*(y + 1) + 1) << s; s = s - 3; diff --git a/base/applications/calc/whatsnew.txt b/base/applications/calc/whatsnew.txt index 387b802f753..855fb2d80d1 100644 --- a/base/applications/calc/whatsnew.txt +++ b/base/applications/calc/whatsnew.txt @@ -133,7 +133,7 @@ * "DOT" function can be used for starting a number (integer part will be zero). * Added repeat function. * If the number is greater than maximum resolution, it will be displayed with exponential notation. -* Removed mouse and keyboard focuses from displayed buttons. +* Removed mouse and keyboard focuses from displayed buttons. * Added normal and small icons. 1.00 (20070323) diff --git a/base/applications/calc/winmain.c b/base/applications/calc/winmain.c index 6bf11a3c246..519bf60990e 100644 --- a/base/applications/calc/winmain.c +++ b/base/applications/calc/winmain.c @@ -852,7 +852,7 @@ static void update_memory_flag(HWND hWnd, BOOL mem_flag) static void update_n_stats_items(HWND hWnd, TCHAR *buffer) { - unsigned int n = SendDlgItemMessage(hWnd, IDC_LIST_STAT, LB_GETCOUNT, 0, 0); + unsigned int n = SendDlgItemMessage(hWnd, IDC_LIST_STAT, LB_GETCOUNT, 0, 0); _stprintf(buffer, _T("n=%u"), n); SetDlgItemText(hWnd, IDC_TEXT_NITEMS, buffer); @@ -1211,7 +1211,7 @@ static void handle_context_menu(HWND hWnd, WPARAM wp, LPARAM lp) #else (void)idm; #endif -} +} static void run_canc(calc_number_t *c) { diff --git a/base/applications/charmap/charmap.c b/base/applications/charmap/charmap.c index 90008a812a1..13ce8e2f1bc 100644 --- a/base/applications/charmap/charmap.c +++ b/base/applications/charmap/charmap.c @@ -47,7 +47,7 @@ FillCharacterSetComboList(HWND hwndCombo) if (GetCPInfoExW(codePages[i], 0, &cpInfo)) { trimmedName = wcschr(cpInfo.CodePageName, L'('); - if (!trimmedName) + if (!trimmedName) trimmedName = cpInfo.CodePageName; SendMessageW(hwndCombo, @@ -678,7 +678,7 @@ wWinMain(HINSTANCE hInst, MSG Msg; hInstance = hInst; - + /* Mirroring code for the titlebar */ switch (GetUserDefaultUILanguage()) { diff --git a/base/applications/charmap/map.c b/base/applications/charmap/map.c index 334980b3f61..a351f74be37 100644 --- a/base/applications/charmap/map.c +++ b/base/applications/charmap/map.c @@ -276,7 +276,7 @@ SetFont(PMAP infoPtr, NULL, TRUE); - if (infoPtr->pActiveCell) + if (infoPtr->pActiveCell) infoPtr->pActiveCell->bActive = FALSE; infoPtr->pActiveCell = &infoPtr->Cells[0][0]; infoPtr->pActiveCell->bActive = TRUE; @@ -357,7 +357,7 @@ OnClick(PMAP infoPtr, * Find the cell the mouse pointer is over. * Since each cell is the same size, this can be done quickly using CellSize. * Clamp to XCELLS - 1 and YCELLS - 1 because the map can sometimes be slightly - * larger than infoPtr.CellSize * XCELLS , due to the map size being a non integer + * larger than infoPtr.CellSize * XCELLS , due to the map size being a non integer * multiple of infoPtr.CellSize . */ x = min(XCELLS - 1, ptx / max(1, infoPtr->CellSize.cx)); @@ -367,7 +367,7 @@ OnClick(PMAP infoPtr, i = XCELLS * infoPtr->iYStart + y * XCELLS + x; if (i >= infoPtr->NumValidGlyphs) { - if (infoPtr->pActiveCell) + if (infoPtr->pActiveCell) infoPtr->pActiveCell->bActive = FALSE; infoPtr->pActiveCell = NULL; return; @@ -507,11 +507,11 @@ OnVScroll(PMAP infoPtr, /* Invalidate the rect around the active cell since a new cell will become active */ if (infoPtr->pActiveCell && infoPtr->pActiveCell->bActive) { - InvalidateRect(infoPtr->hMapWnd, - &infoPtr->pActiveCell->CellExt, + InvalidateRect(infoPtr->hMapWnd, + &infoPtr->pActiveCell->CellExt, TRUE); } - + GetClientRect(infoPtr->hMapWnd, &rect); rect.top += 2; rect.bottom -= 2; @@ -630,7 +630,7 @@ MapWndProc(HWND hwnd, case WM_LBUTTONDBLCLK: { - if (!infoPtr->pActiveCell) + if (!infoPtr->pActiveCell) break; NotifyParentOfSelection(infoPtr, diff --git a/base/applications/charmap/precomp.h b/base/applications/charmap/precomp.h index 5899180bb43..d8573d5b09e 100644 --- a/base/applications/charmap/precomp.h +++ b/base/applications/charmap/precomp.h @@ -26,7 +26,7 @@ #define FM_SETCHARMAP (WM_USER + 5) // the code pages to display in the advanced 'character set' combobox -static const UINT codePages[] = { +static const UINT codePages[] = { 864, 775, 863, 855, 737, 856, 862, 861, 852, 869, 850, 858, 865, 860, 866, 857, 437, // OEM code pages 1256, 1257, 1250, 1251, 1253, 1255, 932, 949, 1252, 936, 874, 950, 1254, 1258 // ANSI code pages }; diff --git a/base/applications/charmap_new/GridView.cpp b/base/applications/charmap_new/GridView.cpp index 639b3224e3a..f7005d2170d 100644 --- a/base/applications/charmap_new/GridView.cpp +++ b/base/applications/charmap_new/GridView.cpp @@ -155,7 +155,7 @@ CGridView::UpdateCellCoordinates( ) { // Go through all the cells and calculate - // their coordinates within the grid + // their coordinates within the grid for (int y = 0; y < m_yNumCells; y++) for (int x = 0; x < m_xNumCells; x++) { @@ -262,7 +262,6 @@ VOID CGridView::OnVScroll(_In_ INT Value, _In_ INT Pos) { - INT PrevScrollPosition = m_ScrollPosition; switch (Value) diff --git a/base/applications/charmap_new/MainWindow.cpp b/base/applications/charmap_new/MainWindow.cpp index 0981a1ef17b..3ed8182320f 100644 --- a/base/applications/charmap_new/MainWindow.cpp +++ b/base/applications/charmap_new/MainWindow.cpp @@ -99,7 +99,7 @@ CCharMapWindow::Run(void) { MSG Msg; - // Pump the message queue + // Pump the message queue while (GetMessageW(&Msg, NULL, 0, 0) != 0) { TranslateMessage(&Msg); @@ -195,7 +195,7 @@ CCharMapWindow::OnCreate(_In_ HWND hDlg) } } - // Add all the fonts to the + // Add all the fonts to the list if (!CreateFontComboBox()) return FALSE; diff --git a/base/applications/cmdutils/at/at.c b/base/applications/cmdutils/at/at.c index 22d362207ba..82298db3765 100644 --- a/base/applications/cmdutils/at/at.c +++ b/base/applications/cmdutils/at/at.c @@ -398,7 +398,7 @@ GetTimeAsJobTime(VOID) GetLocalTime(&Time); - JobTime = (DWORD_PTR)Time.wHour * 3600000 + + JobTime = (DWORD_PTR)Time.wHour * 3600000 + (DWORD_PTR)Time.wMinute * 60000; return JobTime; @@ -698,7 +698,7 @@ AddJob( ULONG ulJobId = 0; NET_API_STATUS Status; - InfoBuffer.JobTime = (DWORD_PTR)ulJobHour * 3600000 + + InfoBuffer.JobTime = (DWORD_PTR)ulJobHour * 3600000 + (DWORD_PTR)ulJobMinute * 60000; InfoBuffer.DaysOfMonth = ulDaysOfMonth; InfoBuffer.DaysOfWeek = ucDaysOfWeek; diff --git a/base/applications/cmdutils/fc/text.h b/base/applications/cmdutils/fc/text.h index 7a5d7382c59..3feb9f79b13 100644 --- a/base/applications/cmdutils/fc/text.h +++ b/base/applications/cmdutils/fc/text.h @@ -4,6 +4,7 @@ * PURPOSE: Comparing text files * COPYRIGHT: Copyright 2021 Katayama Hirofumi MZ (katayama.hirofumi.mz@gmail.com) */ + #include "fc.h" #define IS_SPACE(ch) ((ch) == TEXT(' ') || (ch) == TEXT('\t')) @@ -510,7 +511,7 @@ Resync(FILECOMPARE *pFC, struct list **pptr0, struct list **pptr1) return FCRET_DIFFERENT; } -static FCRET +static FCRET Finalize(FILECOMPARE* pFC, struct list *ptr0, struct list* ptr1, BOOL fDifferent) { if (!ptr0 && !ptr1) diff --git a/base/applications/cmdutils/more/more.c b/base/applications/cmdutils/more/more.c index afe20b9e803..df9f18b814a 100644 --- a/base/applications/cmdutils/more/more.c +++ b/base/applications/cmdutils/more/more.c @@ -552,7 +552,7 @@ IsDataUnicode( IS_TEXT_UNICODE_REVERSE_MASK | IS_TEXT_UNICODE_UNICODE_MASK) & ~IS_TEXT_UNKNOWN_FLAGS_MASK; INT Results; - + IsTextUnicode(Buffer, BufferSize, &Tests); Results = Tests; @@ -1083,7 +1083,7 @@ int wmain(int argc, WCHAR* argv[]) continue; GetFullPathNameW(argv[i], ARRAYSIZE(szFullPath), szFullPath, NULL); - hFile = CreateFileW(szFullPath, + hFile = CreateFileW(szFullPath, GENERIC_READ, FILE_SHARE_READ, NULL, diff --git a/base/applications/cmdutils/tasklist/tasklist.c b/base/applications/cmdutils/tasklist/tasklist.c index 4248e7204f1..5ecb5cc4bb5 100644 --- a/base/applications/cmdutils/tasklist/tasklist.c +++ b/base/applications/cmdutils/tasklist/tasklist.c @@ -49,7 +49,7 @@ VOID PrintResString(HINSTANCE hInstance, UINT uID, UINT MaxWidth, BOOL bAlignLef { if (!hInstance) return; - + WCHAR StringBuffer[RES_STR_MAXLEN]; LoadStringW(hInstance, uID, StringBuffer, _countof(StringBuffer)); PrintString(StringBuffer, MaxWidth, bAlignLeft); @@ -96,7 +96,7 @@ BOOL PrintMemory(SIZE_T MemorySizeByte, UINT MaxWidth, HINSTANCE hInstance) *pNumberStr = L'0' + (MemorySize / Mod); MemorySize %= Mod; pNumberStr++; - + if (i != 1 && i % 3 == 1) { *pNumberStr = L','; diff --git a/base/applications/cmdutils/tree/tree.c b/base/applications/cmdutils/tree/tree.c index 7c066243b39..a8012c7451e 100644 --- a/base/applications/cmdutils/tree/tree.c +++ b/base/applications/cmdutils/tree/tree.c @@ -28,7 +28,7 @@ BOOL bUseAscii = FALSE; /** * @name: HasSubFolder * -* @param strPath +* @param strPath * Must specify folder name * * @return @@ -207,7 +207,7 @@ static VOID DrawTree(PCWSTR strPath, /** * @name: GetDirectoryStructure - * + * * @param strPath * Must specify folder name * @@ -240,7 +240,7 @@ GetDirectoryStructure(PWSTR strPath, UINT width, PCWSTR prevLine) wcscat(tmp, strPath); wcscat(tmp, L"\\*.*"); hFind = FindFirstFileW(tmp, &FindFileData); - //err = GetLastError(); + //err = GetLastError(); } if (hFind == INVALID_HANDLE_VALUE) diff --git a/base/applications/cmdutils/whoami/whoami.c b/base/applications/cmdutils/whoami/whoami.c index 8d8f7e14a4e..d5a24b8256c 100644 --- a/base/applications/cmdutils/whoami/whoami.c +++ b/base/applications/cmdutils/whoami/whoami.c @@ -367,7 +367,7 @@ void WhoamiPrintTable(WhoamiTable *pTable) WhoamiFree(pTable->Content[i * pTable->Cols + j]); WhoamiFree(pTable); - + if (PrintFormat != csv) HeapFree(GetProcessHeap(), 0, ColLength); } diff --git a/base/applications/dxdiag/ddtest.c b/base/applications/dxdiag/ddtest.c index ea112a78d9a..7b63805b738 100644 --- a/base/applications/dxdiag/ddtest.c +++ b/base/applications/dxdiag/ddtest.c @@ -14,7 +14,7 @@ BOOL DDOffscreenBufferTest(HWND hWnd, BOOL Fullscreen); VOID DDRedrawFrame(LPDIRECTDRAWSURFACE lpDDSurface); VOID DDUpdateFrame(LPDIRECTDRAWSURFACE lpDDPrimarySurface ,LPDIRECTDRAWSURFACE lpDDBackBuffer, BOOL Fullscreen, INT *posX, INT *posY, INT *gainX, INT *gainY, RECT *rectDD); -#define TEST_DURATION 10000 +#define TEST_DURATION 10000 #define DD_TEST_WIDTH 640 #define DD_TEST_HEIGHT 480 #define DD_TEST_STEP 5 @@ -295,7 +295,7 @@ BOOL DDOffscreenBufferTest(HWND hWnd, BOOL Fullscreen){ { if (msg.message == WM_TIMER) { - if(msg.wParam == TimerID) + if(msg.wParam == TimerID) { break; } diff --git a/base/applications/dxdiag/display.c b/base/applications/dxdiag/display.c index 779772f4052..eae055589f4 100644 --- a/base/applications/dxdiag/display.c +++ b/base/applications/dxdiag/display.c @@ -188,7 +188,7 @@ DisplayPageSetDeviceDetails(HWND * hDlgCtrls, LPCGUID classGUID, LPGUID * device SendMessageW(hDlgCtrls[1], WM_SETTEXT, 0, (LPARAM)szText); /* FIXME - * we currently enumerate only the first adapter + * we currently enumerate only the first adapter */ EnumerateDrivers(&hDlgCtrls[2], hInfo, &InfoData); break; @@ -367,7 +367,7 @@ DisplayPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) { RECT rect; PDXDIAG_CONTEXT pContext = (PDXDIAG_CONTEXT)GetWindowLongPtr(hDlg, DWLP_USER); - switch (message) + switch (message) { case WM_INITDIALOG: { diff --git a/base/applications/dxdiag/dxdiag.c b/base/applications/dxdiag/dxdiag.c index 096b276da8c..eaeace91e1f 100644 --- a/base/applications/dxdiag/dxdiag.c +++ b/base/applications/dxdiag/dxdiag.c @@ -18,7 +18,7 @@ HWND hTabCtrlWnd; // http://www.catch22.net/software/winspy // Copyright (c) 2002 by J Brown // - + // // Copied from uxtheme.h // If you have this new header, then delete these and @@ -29,7 +29,7 @@ HWND hTabCtrlWnd; #define ETDT_USETABTEXTURE 0x00000004 #define ETDT_ENABLETAB (ETDT_ENABLE | ETDT_USETABTEXTURE) -// +// typedef HRESULT (WINAPI * ETDTProc) (HWND, DWORD); // @@ -44,7 +44,7 @@ BOOL EnableDialogTheme(HWND hwnd) if(hUXTheme) { - fnEnableThemeDialogTexture = + fnEnableThemeDialogTexture = (ETDTProc)GetProcAddress(hUXTheme, "EnableThemeDialogTexture"); if(fnEnableThemeDialogTexture) @@ -249,9 +249,9 @@ DxDiagWndProc(HWND hwndDlg, UINT message, WPARAM wParam, LPARAM lParam) CurSel++; /* enable/disable next button */ - EnableWindow(GetDlgItem(hwndDlg, IDC_BUTTON_NEXT), + EnableWindow(GetDlgItem(hwndDlg, IDC_BUTTON_NEXT), (CurSel != TabCtrl_GetItemCount(hTabCtrlWnd) - 1)); - + /* switch to next tab */ SendMessageW(hTabCtrlWnd, TCM_SETCURSEL, CurSel, 0L); @@ -280,7 +280,7 @@ DxDiagWndProc(HWND hwndDlg, UINT message, WPARAM wParam, LPARAM lParam) INT CurSel = TabCtrl_GetCurSel(hTabCtrlWnd); /* enable/disable next button */ - EnableWindow(GetDlgItem(hwndDlg, IDC_BUTTON_NEXT), + EnableWindow(GetDlgItem(hwndDlg, IDC_BUTTON_NEXT), (CurSel != TabCtrl_GetItemCount(hTabCtrlWnd) - 1)); TabCtrl_OnSelChange(pContext); @@ -310,8 +310,8 @@ int APIENTRY wWinMain(HINSTANCE hInstance, InitCommonControlsEx(&InitControls); hInst = hInstance; - + DialogBox(hInst, MAKEINTRESOURCE(IDD_MAIN_DIALOG), NULL, DxDiagWndProc); - + return 0; } diff --git a/base/applications/dxdiag/network.c b/base/applications/dxdiag/network.c index 7122b7b6beb..440ebe30619 100644 --- a/base/applications/dxdiag/network.c +++ b/base/applications/dxdiag/network.c @@ -43,7 +43,7 @@ static DIRECTPLAY_GUID DirectPlay8SP[] = } }; -static DIRECTPLAY_GUID DirectPlaySP[] = +static DIRECTPLAY_GUID DirectPlaySP[] = { { L"{36E95EE0-8577-11cf-960C-0080C7534E82}", @@ -232,7 +232,7 @@ EnumerateServiceProviders(HKEY hKey, HWND hDlgCtrl, DIRECTPLAY_GUID * PreDefProv Item.iItem = ListView_GetItemCount(hDlgCtrl); /* FIXME - * on Windows Vista we need to use RegLoadMUIString which is not available for older systems + * on Windows Vista we need to use RegLoadMUIString which is not available for older systems */ if (!GetRegValue(hKey, szName, L"Friendly Name", REG_SZ, szResult, sizeof(szResult))) if (!GetRegValue(hKey, szName, L"DescriptionW", REG_SZ, szResult, sizeof(szResult))) diff --git a/base/applications/dxdiag/sound.c b/base/applications/dxdiag/sound.c index ff5cc487dc3..d3540c505e0 100644 --- a/base/applications/dxdiag/sound.c +++ b/base/applications/dxdiag/sound.c @@ -167,7 +167,7 @@ SetDeviceDetails(HWND hwndDlg, LPCGUID classGUID, LPCWSTR lpcstrDescription) SendDlgItemMessageW(hwndDlg, IDC_STATIC_ADAPTER_PROVIDER, WM_SETTEXT, 0, (LPARAM)szText); /* FIXME - * we currently enumerate only the first adapter + * we currently enumerate only the first adapter */ hDlgCtrls[0] = GetDlgItem(hwndDlg, IDC_STATIC_DSOUND_DRIVER); hDlgCtrls[1] = GetDlgItem(hwndDlg, IDC_STATIC_DSOUND_VERSION); @@ -282,7 +282,7 @@ void InitializeDirectSoundPage(PDXDIAG_CONTEXT pContext) INT_PTR CALLBACK SoundPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) { - switch (message) + switch (message) { case WM_INITDIALOG: { diff --git a/base/applications/dxdiag/system.c b/base/applications/dxdiag/system.c index 7359d0ca30f..da51c2a3ee7 100644 --- a/base/applications/dxdiag/system.c +++ b/base/applications/dxdiag/system.c @@ -40,7 +40,7 @@ GetRegValue(HKEY hBaseKey, LPWSTR SubKey, LPWSTR ValueName, DWORD Type, LPWSTR R } -static +static BOOL GetDirectXVersion(WCHAR * szBuffer) { @@ -109,7 +109,7 @@ VOID GetSystemCPU(WCHAR *szBuffer) the program is not running in WOW64. */ fnIsWow64Process = (ISWOW64PROC)GetProcAddress( GetModuleHandleW(L"kernel32"), "IsWow64Process"); - + if (fnIsWow64Process != NULL) fnIsWow64Process(GetCurrentProcess(), &isWow64); diff --git a/base/applications/findstr/findstr.c b/base/applications/findstr/findstr.c index 0e726351bb2..bec50d53300 100644 --- a/base/applications/findstr/findstr.c +++ b/base/applications/findstr/findstr.c @@ -168,7 +168,7 @@ main (int argc, char **argv) case 'B': /* Matches pattern if at the beginning of a line */ at_start = 1; break; - + //case 'c': //case 'C': /* Literal? */ // literal_search = 1; @@ -178,7 +178,7 @@ main (int argc, char **argv) case 'E': /* matches pattern if at end of line */ at_end = 1; break; - + case 'i': case 'I': /* Ignore */ ignore_case = 1; @@ -187,22 +187,22 @@ main (int argc, char **argv) case 'm': case 'M': /* only filename */ only_fname = 1; - break; - + break; + case 'n': case 'N': /* Number */ number_output = 1; break; - + case 'r': case 'R': /* search strings as regular expressions */ reg_express = 1; - break; + break; case 's': case 'S': /* search files in child directory too*/ sub_dirs = 1; - break; + break; case 'v': case 'V': /* Not with */ @@ -212,8 +212,8 @@ main (int argc, char **argv) case 'x': case 'X': /* exact match */ exact_match = 1; - break; - + break; + default: usage (); exit (2); /* syntax error .. return error 2 */ diff --git a/base/applications/games/solitaire/ReadMe.txt b/base/applications/games/solitaire/ReadMe.txt index a6cb706ac94..c4f60d8b42d 100644 --- a/base/applications/games/solitaire/ReadMe.txt +++ b/base/applications/games/solitaire/ReadMe.txt @@ -1,7 +1,7 @@ Solitaire for ReactOS /***************************************** -A complete working example of the CardLib +A complete working example of the CardLib card-game library. Freeware diff --git a/base/applications/games/solitaire/solgame.cpp b/base/applications/games/solitaire/solgame.cpp index 19219b8f9f4..9d72c4b90ea 100644 --- a/base/applications/games/solitaire/solgame.cpp +++ b/base/applications/games/solitaire/solgame.cpp @@ -26,12 +26,12 @@ void NewGame(void) lScore = lScore - 52; else lScore = -52; - + if (dwOptions & OPTION_THREE_CARDS) dwWasteTreshold = 2; else dwWasteTreshold = 0; - + } else { @@ -262,7 +262,7 @@ bool CARDLIBPROC SuitStackDropProc(CardRegion &stackobj, CardStack &dragcards) { lScore = lScore + 10; } - + UpdateStatusBar(); } } diff --git a/base/applications/games/solitaire/solitaire.cpp b/base/applications/games/solitaire/solitaire.cpp index 529f6ba56e9..3fd6a256cd3 100644 --- a/base/applications/games/solitaire/solitaire.cpp +++ b/base/applications/games/solitaire/solitaire.cpp @@ -341,7 +341,7 @@ INT_PTR CALLBACK OptionsDlgProc(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lPar else EnableWindow(hCtrl, FALSE); return TRUE; - + case IDOK: dwOptions &= ~OPTION_THREE_CARDS; if (IsDlgButtonChecked(hDlg, IDC_OPT_DRAWTHREE) == BST_CHECKED) @@ -623,7 +623,7 @@ LRESULT CALLBACK WndProc (HWND hwnd, UINT iMsg, WPARAM wParam, LPARAM lParam) // For now, the Help dialog item is disabled because of lacking of HTML Help support EnableMenuItem(GetMenu(hwnd), IDM_HELP_CONTENTS, MF_BYCOMMAND | MF_GRAYED); - + hwndStatus = CreateStatusWindow(WS_CHILD | WS_VISIBLE | CCS_BOTTOM | SBARS_SIZEGRIP, _T("Ready"), hwnd, 0); //SendMessage(hwndStatus, SB_SIMPLE, (WPARAM)TRUE, 0); diff --git a/base/applications/games/spider/spigame.cpp b/base/applications/games/spider/spigame.cpp index c01dcd4f26e..73a4f6b3e3a 100644 --- a/base/applications/games/spider/spigame.cpp +++ b/base/applications/games/spider/spigame.cpp @@ -29,7 +29,7 @@ CardStack CreatePlayDeck() { CardStack newStack; int i, colors = 1, num = 0; - + switch (dwDifficulty) { case IDC_DIF_ONECOLOR: @@ -55,7 +55,7 @@ void NewGame(void) { int i, j; /* First four stack with five, all other with 4 */ - int covCards = 5; + int covCards = 5; CardStack fakeDeck, temp; SpiderWnd.EmptyStacks(); @@ -65,14 +65,14 @@ void NewGame(void) deck.Shuffle(); fakeDeck.NewDeck(); fakeDeck.Shuffle(); - + /* Reset progress value */ cardsFinished = 0; /* Deal to each stack */ for (i = 0; i < NUM_STACKS; i++) { - temp.Clear(); + temp.Clear(); if (i == NUM_SMALLER_STACKS) { covCards--; @@ -85,7 +85,7 @@ void NewGame(void) pStack[i]->SetCardStack(temp); } /* Deal five fake cards to the deck */ - pDeck->SetCardStack(fakeDeck.Pop(5)); + pDeck->SetCardStack(fakeDeck.Pop(5)); SpiderWnd.Redraw(); fGameStarted = false; @@ -103,7 +103,7 @@ bool stackLookingGood(const CardStack &mystack, int numChecks) if (mystack[i].Suit() != mystack[i + 1].Suit()) { return false; - } + } } return true; } @@ -172,8 +172,8 @@ bool CARDLIBPROC StackDragProc(CardRegion &stackobj, int numDragCards) stackobj.GetFaceDirection(&numfacedown); numcards = stackobj.NumCards(); - - /* Only cards facing up */ + + /* Only cards facing up */ if (numDragCards <= numcards - numfacedown) { const CardStack &mystack = stackobj.GetCardStack(); @@ -228,7 +228,7 @@ bool CARDLIBPROC StackDropProc(CardRegion &stackobj, CardStack &dragcards) { return false; } - + /* If stack is empty, everything can be dropped */ if (stackobj.NumCards() != 0) { @@ -245,12 +245,12 @@ bool CARDLIBPROC StackDropProc(CardRegion &stackobj, CardStack &dragcards) faceup = stackobj.NumCards() - facedown; if (faceup + dragcards.NumCards() >= NUM_ONECOLOR_CARDS) - { + { int i, max = NUM_ONECOLOR_CARDS - dragcards.NumCards() - 1; /* Dragged cards have been checked to be in order, check stack cards */ if (mystack[0].Suit() == dragcard.Suit() && - stackLookingGood(mystack, max)) + stackLookingGood(mystack, max)) { CardStack s = stackobj.GetCardStack(); CardStack f; diff --git a/base/applications/mplay32/mplay32.c b/base/applications/mplay32/mplay32.c index adb0babe581..8fafeaaaba0 100644 --- a/base/applications/mplay32/mplay32.c +++ b/base/applications/mplay32/mplay32.c @@ -1472,7 +1472,7 @@ _tWinMain(HINSTANCE hInst, HINSTANCE hPrevInst, LPTSTR lpCmdLine, INT nCmdShow) HANDLE hAccel; hInstance = hInst; - + switch (GetUserDefaultUILanguage()) { case MAKELANGID(LANG_HEBREW, SUBLANG_DEFAULT): diff --git a/base/applications/msconfig/freeldrpage.c b/base/applications/msconfig/freeldrpage.c index 41f4e11be73..77761890ea7 100644 --- a/base/applications/msconfig/freeldrpage.c +++ b/base/applications/msconfig/freeldrpage.c @@ -53,11 +53,11 @@ LoadBootIni(WCHAR *szDrive, HWND hDlg) hr = StringCbCatW(szBuffer, sizeof(szBuffer), L"boot.ini"); if (FAILED(hr)) return FALSE; - + file = _wfopen(szBuffer, L"rt"); if (!file) return FALSE; - } + } hDlgCtrl = GetDlgItem(hDlg, IDC_LIST_BOX); diff --git a/base/applications/msconfig/msconfig.c b/base/applications/msconfig/msconfig.c index 3cbe4c5d81b..f17afafdb6b 100644 --- a/base/applications/msconfig/msconfig.c +++ b/base/applications/msconfig/msconfig.c @@ -31,7 +31,7 @@ void MsConfig_OnTabWndSelChange(void); // http://www.catch22.net/software/winspy // Copyright (c) 2002 by J Brown // - + // // Copied from uxtheme.h // If you have this new header, then delete these and @@ -42,7 +42,7 @@ void MsConfig_OnTabWndSelChange(void); #define ETDT_USETABTEXTURE 0x00000004 #define ETDT_ENABLETAB (ETDT_ENABLE | ETDT_USETABTEXTURE) -// +// typedef HRESULT (WINAPI * ETDTProc) (HWND, DWORD); // @@ -57,7 +57,7 @@ BOOL EnableDialogTheme(HWND hwnd) if(hUXTheme) { - fnEnableThemeDialogTexture = + fnEnableThemeDialogTexture = (ETDTProc)GetProcAddress(hUXTheme, "EnableThemeDialogTexture"); if(fnEnableThemeDialogTexture) @@ -259,7 +259,7 @@ MsConfigWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) case WM_COMMAND: - if (LOWORD(wParam) == IDOK) + if (LOWORD(wParam) == IDOK) { //MsConfig_OnSaveChanges(); } @@ -327,9 +327,9 @@ int APIENTRY _tWinMain(HINSTANCE hInstance, InitCommonControlsEx(&InitControls); hInst = hInstance; - + DialogBox(hInst, (LPCTSTR)IDD_MSCONFIG_DIALOG, NULL, MsConfigWndProc); - + return 0; } diff --git a/base/applications/msconfig/toolspage.c b/base/applications/msconfig/toolspage.c index 8cd0ea8d48b..23ec011d0c0 100644 --- a/base/applications/msconfig/toolspage.c +++ b/base/applications/msconfig/toolspage.c @@ -105,7 +105,7 @@ ToolsPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) { if (SHGetSpecialFolderPath(NULL, szTemp, ListItems_Locations[ListView_GetSelectionMark(hToolsListCtrl)], FALSE)) Ptr = PathAddBackslash(szTemp); - + if (!Ptr) Ptr = szTemp; @@ -157,7 +157,7 @@ ToolsPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) { if (SHGetSpecialFolderPath(NULL, szTemp, ListItems_Locations[ListView_GetSelectionMark(hToolsListCtrl)], FALSE)) Ptr = PathAddBackslash(szTemp); - + if (!Ptr) Ptr = szTemp; diff --git a/base/applications/msconfig_new/comctl32ex/listview.c b/base/applications/msconfig_new/comctl32ex/listview.c index 9e5f533998e..d348a8eabd6 100644 --- a/base/applications/msconfig_new/comctl32ex/listview.c +++ b/base/applications/msconfig_new/comctl32ex/listview.c @@ -34,7 +34,7 @@ SortListView(LPARAM lItemParam1, ListView_GetItemText(pSort->hList, iItem1, pSort->nClickedColumn, strItem1, MAX_VALUE_NAME); ListView_GetItemText(pSort->hList, iItem2, pSort->nClickedColumn, strItem2, MAX_VALUE_NAME); - // StrCmpLogicalW helps in comparing numbers intelligently, 10 is greater that 2, other + // StrCmpLogicalW helps in comparing numbers intelligently, 10 is greater that 2, other // wise string comparison will always return 2 is greater that 10... return ( pSort->bSortAsc ? StrCmpLogicalW(strItem1, strItem2) : StrCmpLogicalW(strItem2, strItem1) ); } diff --git a/base/applications/msconfig_new/comctl32ex/treeview.c b/base/applications/msconfig_new/comctl32ex/treeview.c index 3d1681cacab..ed3a07cf7b9 100644 --- a/base/applications/msconfig_new/comctl32ex/treeview.c +++ b/base/applications/msconfig_new/comctl32ex/treeview.c @@ -170,7 +170,7 @@ HTREEITEM Tree_Item_Copy(HWND hTree, HTREEITEM hSourceItem, HTREEITEM hParent, H tvis.itemex.pszText = label; tvis.itemex.cchTextMax = MAX_VALUE_NAME; TreeView_GetItem(hTree, &tvis.itemex); - + // 2- Now, copy to destination. tvis.hParent = hParent; tvis.hInsertAfter = hInsertAfter; diff --git a/base/applications/msconfig_new/systempage.cpp b/base/applications/msconfig_new/systempage.cpp index 232a3788464..fb9483dc3fe 100644 --- a/base/applications/msconfig_new/systempage.cpp +++ b/base/applications/msconfig_new/systempage.cpp @@ -262,7 +262,7 @@ LoadIniFile(HWND hTree, LPCWSTR lpszIniFile) lpsz1 = szLine; while (*lpsz1 == L' ' || *lpsz1 == L'\r' || *lpsz1 == L'\n') ++lpsz1; - + /* Skip empty lines */ if (!*lpsz1) continue; @@ -808,7 +808,7 @@ CommonWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) MessageBox(hDlg, _T("Help not implemented yet!"), _T("Help"), MB_ICONINFORMATION | MB_OK); return TRUE; } - + case PSN_KILLACTIVE: // Is going to lose activation. { // Changes are always valid of course. @@ -868,7 +868,7 @@ INT_PTR CALLBACK SystemPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) { static LPCWSTR lpszIniFile = NULL; - + if (message == WM_INITDIALOG) lpszIniFile = (LPCWSTR)((LPPROPSHEETPAGE)lParam)->lParam; diff --git a/base/applications/msconfig_new/utils.c b/base/applications/msconfig_new/utils.c index 3715fcf0da3..fc797ffe96d 100644 --- a/base/applications/msconfig_new/utils.c +++ b/base/applications/msconfig_new/utils.c @@ -268,7 +268,7 @@ BOOL IsWindowsOS(VOID) { bIsWindowsOS = TRUE; } - + return bIsWindowsOS; } diff --git a/base/applications/mspaint/help/tools.html b/base/applications/mspaint/help/tools.html index fbb2441f04e..c65eb17fbe6 100644 --- a/base/applications/mspaint/help/tools.html +++ b/base/applications/mspaint/help/tools.html @@ -15,11 +15,11 @@ td { background-color:#f0f0f0; font-size:12px; padding:5px; border-width:1px; bo

Werkzeuge in Paint

-Paint für ReactOS stellt ihnen zum Bearbeiten ihrer Bilder zahlreiche Werkzeuge zur Verfügung. Um eines der +Paint für ReactOS stellt ihnen zum Bearbeiten ihrer Bilder zahlreiche Werkzeuge zur Verfügung. Um eines der -Werkzeuge auszuwählen, klicken Sie bitte auf das entsprechende Symbol im Werkzeugkasten, der sich üblicherweise +Werkzeuge auszuwählen, klicken Sie bitte auf das entsprechende Symbol im Werkzeugkasten, der sich üblicherweise -auf der linken Seite des Fensters befindet. Es folgt eine Auflistung der Ihnen zur Verfügung stehenden +auf der linken Seite des Fensters befindet. Es folgt eine Auflistung der Ihnen zur Verfügung stehenden Werkzeuge mit jeweils einer kurzen Beschreibung.

@@ -29,27 +29,27 @@ Werkzeuge mit jeweils einer kurzen Beschreibung. Beschreibung -Die freie Auswahl ermöglicht es Ihnen, einen beliebigen Bereich des Bildes auszuwählen. Drücken Sie +Die freie Auswahl ermöglicht es Ihnen, einen beliebigen Bereich des Bildes auszuwählen. Drücken Sie -dazu im Bild die linke Maustaste und umfahren Sie mit der gedrückten Maustaste den Bereich, den Sie auswählen +dazu im Bild die linke Maustaste und umfahren Sie mit der gedrückten Maustaste den Bereich, den Sie auswählen -möchten. Wenn Sie die Maustaste nun loslassen wird der Bereich automatisch in eine geschlossene Auswahl +möchten. Wenn Sie die Maustaste nun loslassen wird der Bereich automatisch in eine geschlossene Auswahl umgewandelt. -Die rechteckige Auswahl ermöglicht es Ihnen, im Bild einen beliebigen rechteckigen Bereich +Die rechteckige Auswahl ermöglicht es Ihnen, im Bild einen beliebigen rechteckigen Bereich -auszuwählen. Drücken Sie dazu im Bild die linke Maustaste und ziehen Sie die Maus zur diagonal +auszuwählen. Drücken Sie dazu im Bild die linke Maustaste und ziehen Sie die Maus zur diagonal -gegenüberliegenden Seite des gewünschten Rechtecks. Wenn Sie die Maustaste loslassen, erscheint sie soeben +gegenüberliegenden Seite des gewünschten Rechtecks. Wenn Sie die Maustaste loslassen, erscheint sie soeben erstellte Auswahl. -Der Radierer erlaubt es Ihnen, mit der Hintergrundfarbe zu Malen, um Teile des Bildes zu löschen. +Der Radierer erlaubt es Ihnen, mit der Hintergrundfarbe zu Malen, um Teile des Bildes zu löschen. -Möchten Sie das gesamte Bild löschen, verwenden Sie bitte den Menüeintrag Bild löschen im Menü +Möchten Sie das gesamte Bild löschen, verwenden Sie bitte den Menüeintrag Bild löschen im Menü Bild.* diff --git a/base/applications/mspaint/registry.cpp b/base/applications/mspaint/registry.cpp index 70361132c0a..1bc47e93a6c 100644 --- a/base/applications/mspaint/registry.cpp +++ b/base/applications/mspaint/registry.cpp @@ -62,7 +62,7 @@ void RegistrySettings::LoadPresets() ThumbYPos = 200; UnitSetting = 0; const WINDOWPLACEMENT DefaultWindowPlacement = { - sizeof(WINDOWPLACEMENT), + sizeof(WINDOWPLACEMENT), 0, SW_SHOWNORMAL, {0, 0}, diff --git a/base/applications/mspaint/winproc.cpp b/base/applications/mspaint/winproc.cpp index 928c21b9e59..686f2eec5d0 100644 --- a/base/applications/mspaint/winproc.cpp +++ b/base/applications/mspaint/winproc.cpp @@ -104,8 +104,8 @@ void CMainWindow::saveImage(BOOL overwrite) void CMainWindow::InsertSelectionFromHBITMAP(HBITMAP bitmap, HWND window) { - int width = GetDIBWidth(bitmap); - int height = GetDIBHeight(bitmap); + int width = GetDIBWidth(bitmap); + int height = GetDIBHeight(bitmap); int curWidth = imageModel.GetWidth(); int curHeight = imageModel.GetHeight(); @@ -129,7 +129,7 @@ void CMainWindow::InsertSelectionFromHBITMAP(HBITMAP bitmap, HWND window) shouldEnlarge = FALSE; break; case IDCANCEL: - return; + return; } } diff --git a/base/applications/network/ipconfig/ipconfig.c b/base/applications/network/ipconfig/ipconfig.c index 8f3e4b3e5db..d386f7d1eac 100644 --- a/base/applications/network/ipconfig/ipconfig.c +++ b/base/applications/network/ipconfig/ipconfig.c @@ -133,7 +133,7 @@ int LoadStringAndOem(HINSTANCE hInst, return 0; } - res = LoadString(hInst, uID, szTmp, byteSize); + res = LoadString(hInst, uID, szTmp, byteSize); CharToOem(szTmp, szNode); HeapFree(ProcessHeap, 0, szTmp); return res; @@ -300,7 +300,7 @@ LPTSTR GetConnectionType(LPTSTR lpClass) if (ConTypeTmp == NULL) return NULL; - + ConType = (LPTSTR)HeapAlloc(ProcessHeap, 0, dwDataSize); diff --git a/base/applications/network/net/net.h b/base/applications/network/net/net.h index 96f1d24b60d..5e88ddf6823 100644 --- a/base/applications/network/net/net.h +++ b/base/applications/network/net/net.h @@ -1,6 +1,6 @@ /* * COPYRIGHT: See COPYING in the top level directory - * PROJECT: ReactOS net command + * PROJECT: ReactOS net command * PROGRAMMERS: Magnus Olsen (greatlord@reactos.org) */ diff --git a/base/applications/network/nslookup/utility.c b/base/applications/network/nslookup/utility.c index 15090768aa7..2c9c9eb905d 100644 --- a/base/applications/network/nslookup/utility.c +++ b/base/applications/network/nslookup/utility.c @@ -839,7 +839,7 @@ PCHAR ClassIDtoClassName( USHORT ClassID ) case CLASS_ANY: return ClassAny; - + default: return "Unknown"; } diff --git a/base/applications/notepad/main.c b/base/applications/notepad/main.c index b31d0c0fcb3..3fed529fb3e 100644 --- a/base/applications/notepad/main.c +++ b/base/applications/notepad/main.c @@ -308,7 +308,7 @@ static VOID NOTEPAD_InitMenuPopup(HMENU menu, LPARAM index) } LRESULT CALLBACK EDIT_WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) -{ +{ switch (msg) { case WM_KEYDOWN: diff --git a/base/applications/rapps/appview.cpp b/base/applications/rapps/appview.cpp index aa908ffcf2c..c15c3ab1172 100644 --- a/base/applications/rapps/appview.cpp +++ b/base/applications/rapps/appview.cpp @@ -220,14 +220,14 @@ HWND CComboBox::Create(HWND hwndParent) NULL); SendMessageW(WM_SETFONT, (WPARAM)GetStockObject(DEFAULT_GUI_FONT), 0); - + for (int i = 0; i < (int)_countof(m_TypeStringID); i++) { ATL::CStringW szBuf; szBuf.LoadStringW(m_TypeStringID[i]); SendMessageW(CB_ADDSTRING, 0, (LPARAM)(LPCWSTR)szBuf); } - + SendMessageW(CB_SETCURSEL, m_DefaultSelectType, 0); // select the first item return m_hWnd; @@ -1639,7 +1639,7 @@ BOOL CApplicationView::ProcessWindowMessage(HWND hwnd, UINT message, WPARAM wPar return FALSE; } -BOOL CApplicationView::CreateToolbar() +BOOL CApplicationView::CreateToolbar() { m_Toolbar = new CMainToolbar(); m_Toolbar->m_VerticalAlignment = UiAlign_LeftTop; diff --git a/base/applications/rapps/asyncinet.cpp b/base/applications/rapps/asyncinet.cpp index 665d5dede52..08be4839c77 100644 --- a/base/applications/rapps/asyncinet.cpp +++ b/base/applications/rapps/asyncinet.cpp @@ -140,7 +140,7 @@ BOOL AsyncInetCancel(pASYNCINET AsyncInet) // mark as cancelled (this will send return TRUE; } } - + return FALSE; } @@ -172,7 +172,7 @@ BOOL AsyncInetAcquire(pASYNCINET AsyncInet) // try to increase refcnt by 1. if r bResult = TRUE; } // otherwise (AsyncInet->bCleanUp == TRUE) - // AsyncInetAcquire will return FALSE. + // AsyncInetAcquire will return FALSE. // In this case, any thread should no longer use this AsyncInet LeaveCriticalSection(&(AsyncInet->CriticalSection)); @@ -194,7 +194,7 @@ VOID AsyncInetRelease(pASYNCINET AsyncInet) // try to decrease refcnt by 1 { bCleanUp = TRUE; } - + LeaveCriticalSection(&(AsyncInet->CriticalSection)); if (bCleanUp) diff --git a/base/applications/rapps/available.cpp b/base/applications/rapps/available.cpp index 01f8fe5facf..e148a2df4ba 100644 --- a/base/applications/rapps/available.cpp +++ b/base/applications/rapps/available.cpp @@ -426,8 +426,8 @@ BOOL CAvailableApps::UpdateAppsDB() DownloadApplicationsDB(SettingsInfo.bUseSource ? SettingsInfo.szSourceURL : APPLICATION_DATABASE_URL, !SettingsInfo.bUseSource); - - if (!ExtractFilesFromCab(m_Strings.szCabName, + + if (!ExtractFilesFromCab(m_Strings.szCabName, m_Strings.szCabDir, m_Strings.szAppsPath)) { diff --git a/base/applications/rapps/cabinet.cpp b/base/applications/rapps/cabinet.cpp index 8b4d8a19be5..1d7bb691a19 100644 --- a/base/applications/rapps/cabinet.cpp +++ b/base/applications/rapps/cabinet.cpp @@ -2,7 +2,7 @@ * PROJECT: ReactOS Applications Manager * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later) * PURPOSE: Cabinet extraction using FDI API - * COPYRIGHT: Copyright 2018 Alexander Shaposhnikov (sanchaez@reactos.org) + * COPYRIGHT: Copyright 2018 Alexander Shaposhnikov (sanchaez@reactos.org) */ #include "rapps.h" #include @@ -12,7 +12,7 @@ /* * HACK: treat any input strings as Unicode (UTF-8) - * cabinet.dll lacks any sort of a Unicode API, but FCI/FDI + * cabinet.dll lacks any sort of a Unicode API, but FCI/FDI * provide an ability to use user-defined callbacks for any file or memory * operations. This flexibility and the magic power of C/C++ casting allows * us to treat input as we please. @@ -66,7 +66,7 @@ inline BOOL MultiByteToWide(const CStringA& szSource, NULL); if (!sz) return FALSE; - + // do the actual conversion sz = MultiByteToWideChar(CP_UTF8, 0, @@ -215,7 +215,7 @@ FNFDINOTIFY(fnNotify) WideToMultiByte(szNewFileName, szFilePathUTF8, CP_UTF8); // Open the file - iResult = fnFileOpen((LPSTR) szFilePathUTF8.GetString(), + iResult = fnFileOpen((LPSTR) szFilePathUTF8.GetString(), _O_WRONLY | _O_CREAT, 0); } @@ -254,14 +254,14 @@ FNFDINOTIFY(fnNotify) /* cabinet.dll FDI function pointers */ -typedef HFDI(*fnFDICreate)(PFNALLOC, - PFNFREE, - PFNOPEN, - PFNREAD, +typedef HFDI(*fnFDICreate)(PFNALLOC, + PFNFREE, + PFNOPEN, + PFNREAD, PFNWRITE, - PFNCLOSE, - PFNSEEK, - int, + PFNCLOSE, + PFNSEEK, + int, PERF); typedef BOOL(*fnFDICopy)(HFDI, @@ -274,12 +274,12 @@ typedef BOOL(*fnFDICopy)(HFDI, typedef BOOL(*fnFDIDestroy)(HFDI); -/* - * Extraction function +/* + * Extraction function * TODO: require only a full path to the cab as an argument */ -BOOL ExtractFilesFromCab(const ATL::CStringW& szCabName, - const ATL::CStringW& szCabDir, +BOOL ExtractFilesFromCab(const ATL::CStringW& szCabName, + const ATL::CStringW& szCabDir, const ATL::CStringW& szOutputDir) { HINSTANCE hCabinetDll; @@ -291,7 +291,7 @@ BOOL ExtractFilesFromCab(const ATL::CStringW& szCabName, fnFDIDestroy pfnFDIDestroy; BOOL bResult; - // Load cabinet.dll and extract needed functions + // Load cabinet.dll and extract needed functions hCabinetDll = LoadLibraryW(L"cabinet.dll"); if (!hCabinetDll) @@ -328,7 +328,7 @@ BOOL ExtractFilesFromCab(const ATL::CStringW& szCabName, // Create output dir bResult = CreateDirectoryW(szOutputDir, NULL); - + if (bResult || GetLastError() == ERROR_ALREADY_EXISTS) { // Convert wide strings to UTF-8 diff --git a/base/applications/rapps/gui.cpp b/base/applications/rapps/gui.cpp index ed0689aac2a..f0616c08aff 100644 --- a/base/applications/rapps/gui.cpp +++ b/base/applications/rapps/gui.cpp @@ -280,7 +280,7 @@ BOOL CMainWindow::RemoveSelectedAppFromRegistry() CInstalledApplicationInfo *InstalledApp = (CInstalledApplicationInfo *)m_ApplicationView->GetFocusedItemData(); if (!InstalledApp) return FALSE; - + LSTATUS Result = InstalledApp->RemoveFromRegistry(); if (Result != ERROR_SUCCESS) { @@ -488,7 +488,7 @@ BOOL CMainWindow::ProcessWindowMessage(HWND hwnd, UINT Msg, WPARAM wParam, LPARA if (wParam == SEARCH_TIMER_ID) { ::KillTimer(hwnd, SEARCH_TIMER_ID); - + UpdateApplicationsList(-1); } break; @@ -688,7 +688,7 @@ VOID CMainWindow::UpdateApplicationsList(INT EnumType) // set the display type of application-view. this will remove all the item in application-view too. m_ApplicationView->SetDisplayAppType(AppViewTypeInstalledApps); - // enum installed softwares + // enum installed softwares m_InstalledApps.Enum(EnumType, s_EnumInstalledAppProc, this); } else if (IsAvailableEnum(EnumType)) @@ -696,7 +696,7 @@ VOID CMainWindow::UpdateApplicationsList(INT EnumType) // set the display type of application-view. this will remove all the item in application-view too. m_ApplicationView->SetDisplayAppType(AppViewTypeAvailableApps); - // enum available softwares + // enum available softwares m_AvailableApps.Enum(EnumType, s_EnumAvailableAppProc, this); } m_ApplicationView->SetRedraw(TRUE); @@ -832,7 +832,7 @@ void CMainWindow::HandleTabOrder(int direction) m_TreeView->AppendTabOrderWindow(direction, TabOrderHwndList); m_ApplicationView->AppendTabOrderWindow(direction, TabOrderHwndList); - + if (TabOrderHwndList.GetSize() == 0) { // in case the list is empty diff --git a/base/applications/rapps/include/asyncinet.h b/base/applications/rapps/include/asyncinet.h index 02781fd76de..6b7bdce417d 100644 --- a/base/applications/rapps/include/asyncinet.h +++ b/base/applications/rapps/include/asyncinet.h @@ -12,7 +12,7 @@ enum ASYNC_EVENT ASYNCINET_CANCELLED, // wParam and lParam are not used. // when receiving this, AsyncInet will be free soon and should not used anymore - ASYNCINET_ERROR // wParam is not used. lParam specify the error code (if there is one). + ASYNCINET_ERROR // wParam is not used. lParam specify the error code (if there is one). // when receiving this, AsyncInet will be free soon and should not used anymore }; diff --git a/base/applications/rapps/include/available.h b/base/applications/rapps/include/available.h index 51e32c05230..c478a898b82 100644 --- a/base/applications/rapps/include/available.h +++ b/base/applications/rapps/include/available.h @@ -54,7 +54,7 @@ public: ATL::CSimpleArray m_LanguageLCIDs; ATL::CSimpleArray m_szScrnshotLocation; ATL::CStringW m_szIconLocation; - ATL::CStringW m_szPkgName; // software's package name. + ATL::CStringW m_szPkgName; // software's package name. ULONG m_SizeBytes; diff --git a/base/applications/rapps/installed.cpp b/base/applications/rapps/installed.cpp index 6561ab38ee9..eaec4429480 100644 --- a/base/applications/rapps/installed.cpp +++ b/base/applications/rapps/installed.cpp @@ -320,7 +320,6 @@ BOOL CInstalledApps::Enum(INT EnumType, APPENUMPROC lpEnumProc, PVOID param) szKeyName.ReleaseBuffer(); RegCloseKey(hKey); } - return TRUE; } diff --git a/base/applications/rapps/settingsdlg.cpp b/base/applications/rapps/settingsdlg.cpp index 50f69faf55e..8fda86e9ca4 100644 --- a/base/applications/rapps/settingsdlg.cpp +++ b/base/applications/rapps/settingsdlg.cpp @@ -54,13 +54,13 @@ BOOL IsUrlValid(const WCHAR * Url) URL_COMPONENTSW UrlComponmentInfo = { 0 }; UrlComponmentInfo.dwStructSize = sizeof(UrlComponmentInfo); UrlComponmentInfo.dwSchemeLength = 1; - + BOOL bSuccess = InternetCrackUrlW(Url, wcslen(Url), 0, &UrlComponmentInfo); if(!bSuccess) { return FALSE; } - + switch(UrlComponmentInfo.nScheme) { case INTERNET_SCHEME_HTTP: @@ -69,7 +69,7 @@ BOOL IsUrlValid(const WCHAR * Url) case INTERNET_SCHEME_FILE: // supported return TRUE; - + default: return FALSE; } @@ -104,9 +104,9 @@ namespace EnableWindow(GetDlgItem(hDlg, IDC_PROXY_SERVER), FALSE); EnableWindow(GetDlgItem(hDlg, IDC_NO_PROXY_FOR), FALSE); } - + CheckRadioButton(hDlg, IDC_SOURCE_DEFAULT, IDC_USE_SOURCE, Info->bUseSource ? IDC_USE_SOURCE : IDC_SOURCE_DEFAULT); - + EnableWindow(GetDlgItem(hDlg, IDC_SOURCE_URL), Info->bUseSource); SetWindowTextW(GetDlgItem(hDlg, IDC_SOURCE_URL), Info->szSourceURL); @@ -153,12 +153,12 @@ namespace NewSettingsInfo.bUseSource = FALSE; EnableWindow(GetDlgItem(hDlg, IDC_SOURCE_URL), NewSettingsInfo.bUseSource); break; - + case IDC_USE_SOURCE: NewSettingsInfo.bUseSource = TRUE; EnableWindow(GetDlgItem(hDlg, IDC_SOURCE_URL), NewSettingsInfo.bUseSource); break; - + case IDC_PROXY_DEFAULT: NewSettingsInfo.Proxy = 0; EnableWindow(GetDlgItem(hDlg, IDC_PROXY_SERVER), FALSE); @@ -241,13 +241,13 @@ namespace break; } } - - + + if(NewSettingsInfo.bUseSource && !IsUrlValid(szSource.GetString())) { ATL::CStringW szMsgText; szMsgText.LoadStringW(IDS_URL_INVALID); - + MessageBoxW(hDlg, szMsgText.GetString(), NULL, 0); SetFocus(GetDlgItem(hDlg, IDC_SOURCE_URL)); break; diff --git a/base/applications/rapps/winmain.cpp b/base/applications/rapps/winmain.cpp index c8604ca6c9e..894bbb43f9c 100644 --- a/base/applications/rapps/winmain.cpp +++ b/base/applications/rapps/winmain.cpp @@ -61,7 +61,7 @@ VOID InitializeGDIPlus(BOOL bInitialize) INT WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPWSTR lpCmdLine, INT nShowCmd) { BOOL bIsFirstLaunch; - + InitializeAtlModule(hInstance, TRUE); InitializeGDIPlus(TRUE); @@ -83,7 +83,7 @@ INT WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPWSTR lpCmdLi // parse cmd-line and perform the corresponding operation BOOL bSuccess = ParseCmdAndExecute(GetCommandLineW(), bIsFirstLaunch, SW_SHOWNORMAL); - + InitializeGDIPlus(FALSE); InitializeAtlModule(GetModuleHandle(NULL), FALSE); diff --git a/base/applications/regedit/childwnd.c b/base/applications/regedit/childwnd.c index a10f11ea96d..977d8cea9d7 100644 --- a/base/applications/regedit/childwnd.c +++ b/base/applications/regedit/childwnd.c @@ -262,7 +262,7 @@ UpdateAddress(HTREEITEM hItem, HKEY hRootKey, LPCWSTR pszPath) swprintf(fullPath, L"%s%s%s", rootName, keyPath[0]==L'\\'?L"":L"\\", keyPath); else fullPath = wcscpy(fullPath, rootName); - + SendMessageW(hStatusBar, SB_SETTEXTW, 0, (LPARAM)fullPath); SendMessageW(g_pChildWnd->hAddressBarWnd, WM_SETTEXT, 0, (LPARAM)fullPath); HeapFree(GetProcessHeap(), 0, fullPath); @@ -477,14 +477,14 @@ LRESULT CALLBACK ChildWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lPa case WM_NOTIFY: if (g_pChildWnd == NULL) break; - + if (((LPNMHDR)lParam)->idFrom == TREE_WINDOW) { if (!TreeWndNotifyProc(g_pChildWnd->hListWnd, wParam, lParam, &Result)) { goto def; } - + return Result; } else @@ -502,7 +502,7 @@ LRESULT CALLBACK ChildWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lPa { goto def; } - } + } break; case WM_CONTEXTMENU: diff --git a/base/applications/regedit/treeview.c b/base/applications/regedit/treeview.c index b7b45635b74..bcd37af8358 100644 --- a/base/applications/regedit/treeview.c +++ b/base/applications/regedit/treeview.c @@ -626,16 +626,16 @@ done: } BOOL TreeWndNotifyProc(HWND hWnd, WPARAM wParam, LPARAM lParam, BOOL *Result) -{ +{ UNREFERENCED_PARAMETER(wParam); *Result = TRUE; - + switch (((LPNMHDR)lParam)->code) { case TVN_ITEMEXPANDING: *Result = !OnTreeExpanding(g_pChildWnd->hTreeWnd, (NMTREEVIEW*)lParam); return TRUE; - case TVN_SELCHANGED: + case TVN_SELCHANGED: { NMTREEVIEW* pnmtv = (NMTREEVIEW*)lParam; /* Get the parent of the current item */ @@ -655,7 +655,7 @@ BOOL TreeWndNotifyProc(HWND hWnd, WPARAM wParam, LPARAM lParam, BOOL *Result) EnableMenuItem(hMenuFrame , ID_EDIT_DELETE, MF_BYCOMMAND | MF_GRAYED); EnableMenuItem(hMenuFrame , ID_EDIT_RENAME, MF_BYCOMMAND | MF_GRAYED); EnableMenuItem(hPopupMenus, ID_TREE_DELETE, MF_BYCOMMAND | MF_GRAYED); - EnableMenuItem(hPopupMenus, ID_TREE_RENAME, MF_BYCOMMAND | MF_GRAYED); + EnableMenuItem(hPopupMenus, ID_TREE_RENAME, MF_BYCOMMAND | MF_GRAYED); } else { @@ -686,7 +686,7 @@ BOOL TreeWndNotifyProc(HWND hWnd, WPARAM wParam, LPARAM lParam, BOOL *Result) return TRUE; } case TVN_ENDLABELEDIT: - { + { LPCWSTR keyPath; HKEY hRootKey; HKEY hKey = NULL; @@ -747,7 +747,7 @@ HWND CreateTreeView(HWND hwndParent, LPWSTR pHostName, HMENU id) 0, 0, rcClient.right, rcClient.bottom, hwndParent, id, hInst, NULL); if (!hwndTV) return NULL; - + /* Initialize the image list, and add items to the control. */ if (!InitTreeViewImageLists(hwndTV) || !InitTreeViewItems(hwndTV, pHostName)) { diff --git a/base/applications/sc/depend.c b/base/applications/sc/depend.c index 67035332cbd..2fee665d346 100644 --- a/base/applications/sc/depend.c +++ b/base/applications/sc/depend.c @@ -2,7 +2,7 @@ * PROJECT: ReactOS Services * LICENSE: GPL - See COPYING in the top level directory * FILE: base/applications/sc/depend.c - * PURPOSE: + * PURPOSE: * COPYRIGHT: Copyright 2016 Eric Kohl * */ diff --git a/base/applications/sc/name.c b/base/applications/sc/name.c index f662cde38fd..9839350d896 100644 --- a/base/applications/sc/name.c +++ b/base/applications/sc/name.c @@ -2,7 +2,7 @@ * PROJECT: ReactOS Services * LICENSE: GPL - See COPYING in the top level directory * FILE: base/applications/sc/name.c - * PURPOSE: + * PURPOSE: * COPYRIGHT: Copyright 2016 Eric Kohl * */ diff --git a/base/applications/screensavers/3dtext/3dtext.c b/base/applications/screensavers/3dtext/3dtext.c index a64e3252ecf..c1f908ca37a 100644 --- a/base/applications/screensavers/3dtext/3dtext.c +++ b/base/applications/screensavers/3dtext/3dtext.c @@ -181,7 +181,7 @@ GLvoid InitGL(GLsizei Width, GLsizei Height) } // Handles Window Resizing -GLvoid ReSizeGLScene(GLsizei Width, GLsizei Height) +GLvoid ReSizeGLScene(GLsizei Width, GLsizei Height) { // Is Window Too Small (Divide By Zero Error) if (Height == 0) diff --git a/base/applications/screensavers/logon/logon.c b/base/applications/screensavers/logon/logon.c index e83941dc93e..20e66f2fb70 100644 --- a/base/applications/screensavers/logon/logon.c +++ b/base/applications/screensavers/logon/logon.c @@ -84,8 +84,8 @@ ScreenSaverProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) } case WM_PAINT: { - BITMAP bm; /* Bitmap structure as seen in bmWidth & bmHeight */ - PAINTSTRUCT ps; + BITMAP bm; /* Bitmap structure as seen in bmWidth & bmHeight */ + PAINTSTRUCT ps; HDC hdc; HDC hdcMem; HBITMAP hbmOld; @@ -93,9 +93,9 @@ ScreenSaverProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) // Obtain window coordinates. GetClientRect (hWnd, &rect); - hdc = BeginPaint(hWnd, &ps); - hdcMem = CreateCompatibleDC(hdc); - hbmOld = SelectObject(hdcMem, bitmap); + hdc = BeginPaint(hWnd, &ps); + hdcMem = CreateCompatibleDC(hdc); + hbmOld = SelectObject(hdcMem, bitmap); GetObject(bitmap, sizeof(bm), &bm); @@ -118,19 +118,19 @@ ScreenSaverProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) else { BitBlt( - hdc, + hdc, RANDOM (0, rect.right - bm.bmWidth), RANDOM (0, rect.bottom - bm.bmHeight), - bm.bmWidth, - bm.bmHeight, - hdcMem, - 0, - 0, - SRCCOPY); + bm.bmWidth, + bm.bmHeight, + hdcMem, + 0, + 0, + SRCCOPY); } - SelectObject(hdcMem, hbmOld); - DeleteDC(hdcMem); + SelectObject(hdcMem, hbmOld); + DeleteDC(hdcMem); EndPaint(hWnd, &ps); break; diff --git a/base/applications/sdbinst/sdbinst.c b/base/applications/sdbinst/sdbinst.c index 01626080c72..f6ca0f616e0 100644 --- a/base/applications/sdbinst/sdbinst.c +++ b/base/applications/sdbinst/sdbinst.c @@ -122,7 +122,7 @@ AddUninstallKey( goto end; } } - + // Full path to sdbinst.exe hres = StringCchCatW(sdbinstPath, MAX_PATH, L"System32\\sdbinst.exe"); if (FAILED(hres)) @@ -172,7 +172,7 @@ AddUninstallKey( goto end; } - // Uninstall full string + // Uninstall full string hres = StringCchPrintfW(uninstString, MAX_PATH, L"%ls -u \"%ls\"", sdbinstPath, sdbInstalledPath); if (FAILED(hres)) { @@ -244,7 +244,7 @@ ProcessLayers( TAGID prevTagLayer = 0; TAGID tagLayer = SdbFindFirstTag(pdb, tagDb, TAG_LAYER); - + // Add all layers to registry (AppCompatFlags) while (tagLayer && (tagLayer != prevTagLayer)) { @@ -430,7 +430,7 @@ SdbInstall( } // Get database GUID - if (!GetSdbGuid(pdb, tagDb, &dbGuid)) + if (!GetSdbGuid(pdb, tagDb, &dbGuid)) { wprintf(L"GetSdbGuid error\n"); goto end; @@ -452,7 +452,7 @@ SdbInstall( wprintf(L"Can't get tag name\n"); goto end; } - + LPWSTR dbName = SdbGetStringTagPtr(pdb, tagDbName); wprintf(L"Database name %ls\n", dbName); @@ -709,7 +709,7 @@ SdbUninstallByGuid( } res = SdbUninstall(dbPath); - + end: if (hKey) { @@ -732,7 +732,7 @@ SdbUninstallByName( LSTATUS status; HKEY hKey = NULL; HKEY subKey = NULL; - DWORD index = 0; + DWORD index = 0; WCHAR keyName[MAX_PATH]; DWORD keyNameLen = ARRAYSIZE(keyName); DWORD keyValSize; @@ -790,7 +790,7 @@ SdbUninstallByName( ++index; keyNameLen = ARRAYSIZE(keyName); - status = RegEnumKeyExW(hKey, index, keyName, &keyNameLen, NULL, NULL, NULL, NULL); + status = RegEnumKeyExW(hKey, index, keyName, &keyNameLen, NULL, NULL, NULL, NULL); } RegCloseKey(hKey); @@ -831,7 +831,7 @@ int _tmain(int argc, LPWSTR argv[]) ShowHelp(); } - for (int i = 1; i < argc; ++i) + for (int i = 1; i < argc; ++i) { if (argv[i][0] != L'-') { diff --git a/base/applications/shutdown/gui.c b/base/applications/shutdown/gui.c index 0c1a0e9c257..57bc60e5dbc 100644 --- a/base/applications/shutdown/gui.c +++ b/base/applications/shutdown/gui.c @@ -34,7 +34,7 @@ INT_PTR CALLBACK ShutdownGuiProc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lpar default: return FALSE; } - + return TRUE; } diff --git a/base/applications/shutdown/shutdown.c b/base/applications/shutdown/shutdown.c index f4c403d1ae7..382de2a7cc3 100644 --- a/base/applications/shutdown/shutdown.c +++ b/base/applications/shutdown/shutdown.c @@ -122,7 +122,7 @@ ParseArguments(struct CommandLineOptions* pOpts, int argc, WCHAR *argv[]) if (index+1 >= argc) return ERROR_INVALID_DATA; pOpts->shutdown_delay = _wtoi(argv[index+1]); - if (pOpts->shutdown_delay > 0) + if (pOpts->shutdown_delay > 0) pOpts->force = TRUE; index++; break; @@ -232,7 +232,7 @@ int wmain(int argc, WCHAR *argv[]) /* * If the user wants to hibernate the computer. Assume - * that the user wants to wake the computer up from + * that the user wants to wake the computer up from * hibernation and it should not force it on the system. */ if (opts.hibernate) @@ -240,13 +240,13 @@ int wmain(int argc, WCHAR *argv[]) if (IsPwrHibernateAllowed()) { EnablePrivilege(SE_SHUTDOWN_NAME, TRUE); - + /* The shutdown utility cannot hibernate remote systems */ if (opts.remote_system != NULL) { return EXIT_FAILURE; } - + if (!SetSuspendState(TRUE, FALSE, FALSE)) { ConResPuts(StdErr, IDS_ERROR_HIBERNATE); @@ -350,7 +350,7 @@ int wmain(int argc, WCHAR *argv[]) ConResPuts(StdErr, IDS_ERROR_RESTART); else ConResPuts(StdErr, IDS_ERROR_SHUTDOWN); - + DisplayError(GetLastError()); return EXIT_FAILURE; } diff --git a/base/applications/sndrec32/audio_membuffer.cpp b/base/applications/sndrec32/audio_membuffer.cpp index 67d0e6790b3..ccdfc7f6685 100644 --- a/base/applications/sndrec32/audio_membuffer.cpp +++ b/base/applications/sndrec32/audio_membuffer.cpp @@ -12,7 +12,7 @@ _AUDIO_NAMESPACE_START_ /* Protected Functions */ -void +void audio_membuffer::alloc_mem_(unsigned int bytes) { /* Some checking */ @@ -79,7 +79,7 @@ audio_membuffer::resize_mem_(unsigned int new_size) buffer_resized(new_size); } -void +void audio_membuffer::truncate_(void) { /* If `buf_size' is already = to the `bytes_received' of audio data, @@ -113,7 +113,7 @@ audio_membuffer::clear(void) bytes_received = 0; } -void +void audio_membuffer::reset(void) { /* Frees memory and reset to initial state */ @@ -122,37 +122,37 @@ audio_membuffer::reset(void) alloc_mem_(init_size); } -void +void audio_membuffer::alloc_bytes(unsigned int bytes) { alloc_mem_(bytes); } -void +void audio_membuffer::alloc_seconds(unsigned int secs) { alloc_mem_(aud_info.byte_rate() * secs); } -void +void audio_membuffer::alloc_seconds(float secs) { alloc_mem_((unsigned int)((float)aud_info.byte_rate() * secs)); } -void +void audio_membuffer::resize_bytes(unsigned int bytes) { resize_mem_(bytes); } -void +void audio_membuffer::resize_seconds(unsigned int secs) { resize_mem_(aud_info.byte_rate() * secs); } -void +void audio_membuffer::resize_seconds(float secs) { resize_mem_((unsigned int)((float)aud_info.byte_rate() * secs)); @@ -160,7 +160,7 @@ audio_membuffer::resize_seconds(float secs) /* Inherited Functions */ -void +void audio_membuffer::audio_receive(unsigned char *data, unsigned int size) { /* If there isn't a buffer, allocs memory for it of size*2, and copies audio data arrival */ @@ -196,7 +196,7 @@ audio_membuffer::audio_receive(unsigned char *data, unsigned int size) audio_arrival(aud_info.samples_in_bytes(size)); } -unsigned int +unsigned int audio_membuffer::read(BYTE *out_buf, unsigned int bytes) { /* Some checking */ diff --git a/base/applications/sndrec32/audio_resampler_acm.cpp b/base/applications/sndrec32/audio_resampler_acm.cpp index ddca7db15a8..d92c2753b24 100644 --- a/base/applications/sndrec32/audio_resampler_acm.cpp +++ b/base/applications/sndrec32/audio_resampler_acm.cpp @@ -25,7 +25,7 @@ audio_resampler_acm::init_(void) wformat_src.cbSize = sizeof(WAVEFORMATEX); wformat_dst.cbSize = sizeof(WAVEFORMATEX); - /* Setting WAVEFORMATEX structure parameters + /* Setting WAVEFORMATEX structure parameters according to `audio_format' in/out classes */ wformat_src.wFormatTag = WAVE_FORMAT_PCM; @@ -189,7 +189,7 @@ audio_resampler_acm::close(void) /* ACM sream successfully closed */ } -void +void audio_resampler_acm::audio_receive(unsigned char *data, unsigned int size) { MMRESULT err; diff --git a/base/applications/sndrec32/audio_wavein.cpp b/base/applications/sndrec32/audio_wavein.cpp index 839f6738185..99f0fa8a8fb 100644 --- a/base/applications/sndrec32/audio_wavein.cpp +++ b/base/applications/sndrec32/audio_wavein.cpp @@ -50,7 +50,7 @@ audio_wavein::alloc_buffers_mem_(unsigned int buffs, float secs) mb_size = tot_size; } -void +void audio_wavein::free_buffers_mem_(void) { /* Frees memory */ @@ -65,7 +65,7 @@ audio_wavein::free_buffers_mem_(void) wave_headers = 0; } -void +void audio_wavein::init_headers_(void) { /* If there is no memory for memory or headers, simply return */ @@ -85,7 +85,7 @@ audio_wavein::init_headers_(void) } } -void +void audio_wavein::prep_headers_(void) { MMRESULT err; @@ -108,7 +108,7 @@ audio_wavein::prep_headers_(void) MessageBox(0, TEXT("waveInPrepareHeader Error."), 0, 0); } -void +void audio_wavein::unprep_headers_(void) { MMRESULT err; @@ -131,7 +131,7 @@ audio_wavein::unprep_headers_(void) MessageBox(0, TEXT("waveInUnPrepareHeader Error."), 0, 0); } -void +void audio_wavein::add_buffers_to_driver_(void) { MMRESULT err; @@ -155,7 +155,7 @@ audio_wavein::add_buffers_to_driver_(void) } void -audio_wavein::close(void) +audio_wavein::close(void) { /* If wavein object is already in the status NOTREADY, nothing to do */ if (status == WAVEIN_NOTREADY) @@ -340,7 +340,7 @@ audio_wavein::stop_recording(void) status = WAVEIN_STOP; } -DWORD WINAPI +DWORD WINAPI audio_wavein::recording_procedure(LPVOID arg) { MSG msg; diff --git a/base/applications/sndrec32/audio_wavein.hpp b/base/applications/sndrec32/audio_wavein.hpp index 44832d8651e..b31477fc8c6 100644 --- a/base/applications/sndrec32/audio_wavein.hpp +++ b/base/applications/sndrec32/audio_wavein.hpp @@ -123,7 +123,7 @@ class audio_wavein return; /* Set seconds length for each buffer */ - buf_secs = bsecs; + buf_secs = bsecs; } unsigned int total_buffers(void) const @@ -181,7 +181,7 @@ class audio_wavein svalue = (unsigned int)abs(*((short *)(main_buffer + aud_info.bytes_in_samples(nsamp)))); else if (aud_info.bits() == 8) svalue = (unsigned int)((ptrdiff_t) *(main_buffer + aud_info.bytes_in_samples(nsamp))); - else + else svalue = 0; return svalue; diff --git a/base/applications/sndrec32/audio_waveout.cpp b/base/applications/sndrec32/audio_waveout.cpp index 0814e85d4cd..dfbf5f7f52d 100644 --- a/base/applications/sndrec32/audio_waveout.cpp +++ b/base/applications/sndrec32/audio_waveout.cpp @@ -22,7 +22,7 @@ audio_waveout::init_(void) status = WAVEOUT_NOTREADY; } -void +void audio_waveout::alloc_buffers_mem_(unsigned int buffs, float secs) { unsigned int onebuf_size = 0, tot_size = 0; @@ -35,7 +35,7 @@ audio_waveout::alloc_buffers_mem_(unsigned int buffs, float secs) delete[] wave_headers; /* Calcs size of the buffers */ - onebuf_size = (unsigned int)((float)aud_info.byte_rate() * secs); + onebuf_size = (unsigned int)((float)aud_info.byte_rate() * secs); tot_size = onebuf_size * buffs; /* Allocs memory for the audio buffers */ main_buffer = new BYTE[tot_size]; @@ -48,7 +48,7 @@ audio_waveout::alloc_buffers_mem_(unsigned int buffs, float secs) mb_size = tot_size; } -void +void audio_waveout::init_headers_(void) { /* If there is no memory for memory or headers, simply return */ @@ -80,7 +80,7 @@ audio_waveout::init_headers_(void) } } -void +void audio_waveout::prep_headers_(void) { MMRESULT err; @@ -105,7 +105,7 @@ audio_waveout::prep_headers_(void) } } -void +void audio_waveout::unprep_headers_(void) { MMRESULT err; @@ -130,7 +130,7 @@ audio_waveout::unprep_headers_(void) } } -void +void audio_waveout::free_buffers_mem_(void) { /* Frees memory */ @@ -144,7 +144,7 @@ audio_waveout::free_buffers_mem_(void) wave_headers = 0; } -void +void audio_waveout::open(void) { MMRESULT err; @@ -214,7 +214,7 @@ audio_waveout::open(void) status = WAVEOUT_READY; } -void +void audio_waveout::play(void) { MMRESULT err; @@ -268,7 +268,7 @@ audio_waveout::play(void) } } -void +void audio_waveout::pause(void) { MMRESULT err; @@ -288,7 +288,7 @@ audio_waveout::pause(void) } } -void +void audio_waveout::stop(void) { MMRESULT err; @@ -344,7 +344,7 @@ audio_waveout::close(void) free_buffers_mem_(); } -DWORD WINAPI +DWORD WINAPI audio_waveout::playing_procedure(LPVOID arg) { MSG msg; diff --git a/base/applications/sndrec32/audio_waveout.hpp b/base/applications/sndrec32/audio_waveout.hpp index cf3fd06b402..f95c10969c1 100644 --- a/base/applications/sndrec32/audio_waveout.hpp +++ b/base/applications/sndrec32/audio_waveout.hpp @@ -117,7 +117,7 @@ class audio_waveout return (unsigned int)65535; else if (aud_info.bits() == 8) return (unsigned int)255; - else + else return 0; } @@ -134,7 +134,7 @@ class audio_waveout svalue = (unsigned int)abs(*((short *)(main_buffer + aud_info.bytes_in_samples(nsamp)))); else if (aud_info.bits() == 8) svalue = (unsigned int)((ptrdiff_t) *(main_buffer + aud_info.bytes_in_samples(nsamp))); - else + else svalue = 0; return svalue; diff --git a/base/applications/sndvol32/misc.c b/base/applications/sndvol32/misc.c index 86bbbe67927..c11a9a439c5 100644 --- a/base/applications/sndvol32/misc.c +++ b/base/applications/sndvol32/misc.c @@ -209,7 +209,7 @@ LoadXYCoordWnd(IN PPREFERENCES_CONTEXT PrefContext) /* Cache the Y coordinate point */ PrefContext->MixerWindow->WndPosY = dwData; - + RegCloseKey(hKey); return TRUE; } @@ -222,7 +222,7 @@ SaveXYCoordWnd(IN HWND hWnd, LONG lResult; TCHAR DeviceMixerSettings[256]; WINDOWPLACEMENT wp; - + /* Get the placement coordinate data from the window */ wp.length = sizeof(WINDOWPLACEMENT); GetWindowPlacement(hWnd, &wp); diff --git a/base/applications/sndvol32/sndvol32.c b/base/applications/sndvol32/sndvol32.c index e39fceb46b5..426f5a9cb25 100644 --- a/base/applications/sndvol32/sndvol32.c +++ b/base/applications/sndvol32/sndvol32.c @@ -340,7 +340,7 @@ UpdatePrefDlgControls(PPREFERENCES_CONTEXT Context, } } -static +static VOID WriteLineSettings(PPREFERENCES_CONTEXT Context, HWND hwndDlg) { @@ -576,11 +576,11 @@ DlgPreferencesProc(HWND hwndDlg, IDCANCEL); break; } - + case WM_SYSCOLORCHANGE: { HWND hwndControls; - + /* Forward WM_SYSCOLORCHANGE */ hwndControls = GetDlgItem(hwndDlg, IDC_CONTROLS); SendMessage(hwndControls, WM_SYSCOLORCHANGE, 0, 0); @@ -1342,7 +1342,7 @@ CreateApplicationWindow( hWnd = CreateWindowEx(WS_EX_WINDOWEDGE | WS_EX_CONTROLPARENT, SZ_APP_CLASS, lpAppTitle, - WS_DLGFRAME | WS_CAPTION | WS_MINIMIZEBOX | WS_SYSMENU | WS_CLIPCHILDREN | WS_CLIPSIBLINGS | WS_VISIBLE, + WS_DLGFRAME | WS_CAPTION | WS_MINIMIZEBOX | WS_SYSMENU | WS_CLIPCHILDREN | WS_CLIPSIBLINGS | WS_VISIBLE, 0, 0, 300, 315, NULL, LoadMenu(hAppInstance, diff --git a/base/applications/taskmgr/applpage.c b/base/applications/taskmgr/applpage.c index 81ae85be379..cf4c063f434 100644 --- a/base/applications/taskmgr/applpage.c +++ b/base/applications/taskmgr/applpage.c @@ -486,7 +486,7 @@ void AddOrUpdateHwnd(HWND hWnd, WCHAR *szTitle, HICON hIcon, BOOL bHung) } /* Select first item if any */ - if ((ListView_GetNextItem(hApplicationPageListCtrl, -1, LVNI_FOCUSED | LVNI_SELECTED) == -1) && + if ((ListView_GetNextItem(hApplicationPageListCtrl, -1, LVNI_FOCUSED | LVNI_SELECTED) == -1) && (ListView_GetItemCount(hApplicationPageListCtrl) > 0) && !bApplicationPageSelectionMade) { ListView_SetItemState(hApplicationPageListCtrl, 0, LVIS_FOCUSED | LVIS_SELECTED, LVIS_FOCUSED | LVIS_SELECTED); diff --git a/base/applications/taskmgr/procpage.c b/base/applications/taskmgr/procpage.c index 28e14a9eb54..692c1bd66e5 100644 --- a/base/applications/taskmgr/procpage.c +++ b/base/applications/taskmgr/procpage.c @@ -478,7 +478,7 @@ void UpdateProcesses() SendMessage(hProcessPageListCtrl, WM_SETREDRAW, TRUE, 0); /* Select first item if any */ - if ((ListView_GetNextItem(hProcessPageListCtrl, -1, LVNI_FOCUSED | LVNI_SELECTED) == -1) && + if ((ListView_GetNextItem(hProcessPageListCtrl, -1, LVNI_FOCUSED | LVNI_SELECTED) == -1) && (ListView_GetItemCount(hProcessPageListCtrl) > 0) && !bProcessPageSelectionMade) { ListView_SetItemState(hProcessPageListCtrl, 0, LVIS_FOCUSED | LVIS_SELECTED, LVIS_FOCUSED | LVIS_SELECTED); @@ -492,7 +492,7 @@ void UpdateProcesses() */ } -BOOL ProcessRunning(ULONG ProcessId) +BOOL ProcessRunning(ULONG ProcessId) { HANDLE hProcess; DWORD exitCode; diff --git a/base/applications/taskmgr/taskmgr.c b/base/applications/taskmgr/taskmgr.c index 113d3c24332..1708c12b734 100644 --- a/base/applications/taskmgr/taskmgr.c +++ b/base/applications/taskmgr/taskmgr.c @@ -56,7 +56,7 @@ TASKMANAGER_SETTINGS TaskManagerSettings; // http://www.catch22.net/software/winspy // Copyright (c) 2002 by J Brown // - + // // Copied from uxtheme.h // If you have this new header, then delete these and @@ -67,7 +67,7 @@ TASKMANAGER_SETTINGS TaskManagerSettings; #define ETDT_USETABTEXTURE 0x00000004 #define ETDT_ENABLETAB (ETDT_ENABLE | ETDT_USETABTEXTURE) -// +// typedef HRESULT (WINAPI * ETDTProc) (HWND, DWORD); // @@ -82,7 +82,7 @@ BOOL EnableDialogTheme(HWND hwnd) if(hUXTheme) { - fnEnableThemeDialogTexture = + fnEnableThemeDialogTexture = (ETDTProc)GetProcAddress(hUXTheme, "EnableThemeDialogTexture"); if(fnEnableThemeDialogTexture) diff --git a/base/applications/utilman/umandlg/umandlg.c b/base/applications/utilman/umandlg/umandlg.c index f2c7e2e06e8..3d301f229b4 100644 --- a/base/applications/utilman/umandlg/umandlg.c +++ b/base/applications/utilman/umandlg/umandlg.c @@ -145,7 +145,7 @@ BOOL DlgInitHandler(IN HWND hDlg) /* Refresh the list */ ListBoxRefreshContents(); - + /* Create a timer, we'll use it to control the state of our items in the listbox */ Globals.iTimer = SetTimer(hDlg, 0, 400, NULL); diff --git a/base/applications/wordpad/wordpad.c b/base/applications/wordpad/wordpad.c index 6e87e3268d4..1c0b820308a 100644 --- a/base/applications/wordpad/wordpad.c +++ b/base/applications/wordpad/wordpad.c @@ -2662,7 +2662,7 @@ int CALLBACK WinMain(HINSTANCE hInstance, HINSTANCE hOldInstance, LPSTR szCmdPar 'T','A','B','L','E','\0'}; InitCommonControlsEx(&classes); - + switch (GetUserDefaultUILanguage()) { case MAKELANGID(LANG_HEBREW, SUBLANG_DEFAULT): diff --git a/base/services/audiosrv/audiosrv.txt b/base/services/audiosrv/audiosrv.txt index 37c9d24d24b..6305f84aa8a 100644 --- a/base/services/audiosrv/audiosrv.txt +++ b/base/services/audiosrv/audiosrv.txt @@ -16,23 +16,23 @@ Global\AudioDeviceList This file appears to contain a list of devices that WinMM accesses and subsequently passes to wdmaud.drv -It is not necessary to duplicate the exact structure of this mapped +It is not necessary to duplicate the exact structure of this mapped file, since it appears to only be used internally by Windows components. -The ROS Audio Service (AudioSrv) is intended to be able to run -alongside the Windows Audio Service on XP/Vista, so it should be +The ROS Audio Service (AudioSrv) is intended to be able to run +alongside the Windows Audio Service on XP/Vista, so it should be possible to test in a "known working environment" ;) It will create a mutex, to: 1) Allow synchronization when accessing the device list 2) Provide a simple method of identifying if AudioSrv is running -(It might be worth using an event to notify WinMM when things are +(It might be worth using an event to notify WinMM when things are happening?) -The intention is to make AudioSrv receive PnP notifications for -relevant audio devices, and also let AudioSrv in Windows do this. Then -it should be possible to create a small application that imitates +The intention is to make AudioSrv receive PnP notifications for +relevant audio devices, and also let AudioSrv in Windows do this. Then +it should be possible to create a small application that imitates WinMM's actions :) diff --git a/base/services/audiosrv/pnp_list_manager.c b/base/services/audiosrv/pnp_list_manager.c index 46d09eb0376..0854d69eb4a 100644 --- a/base/services/audiosrv/pnp_list_manager.c +++ b/base/services/audiosrv/pnp_list_manager.c @@ -73,9 +73,9 @@ AppendAudioDeviceToList(PnP_AudioDevice* device) if (audio_device_list->size + device_info_size > audio_device_list->max_size) { /*printf("max_size would be exceeded! Failing...\n");*/ - + UnlockAudioDeviceList(); - + return FALSE; } diff --git a/base/services/dhcpcsvc/CMakeLists.txt b/base/services/dhcpcsvc/CMakeLists.txt index 604d21564b5..add998f0f5a 100644 --- a/base/services/dhcpcsvc/CMakeLists.txt +++ b/base/services/dhcpcsvc/CMakeLists.txt @@ -3,7 +3,7 @@ add_definitions(-Dtzset=_tzset) include_directories(include) spec2def(dhcpcsvc.dll dhcpcsvc.spec ADD_IMPORTLIB) -list(APPEND SOURCE +list(APPEND SOURCE dhcp/adapter.c dhcp/alloc.c dhcp/api.c diff --git a/base/services/dhcpcsvc/dhcp/adapter.c b/base/services/dhcpcsvc/dhcp/adapter.c index 65f620360b8..ef839dc1b7d 100644 --- a/base/services/dhcpcsvc/dhcp/adapter.c +++ b/base/services/dhcpcsvc/dhcp/adapter.c @@ -172,7 +172,7 @@ BOOL PrepareAdapterForService( PDHCP_ADAPTER Adapter ) { { /* DHCP enabled by default */ DhcpEnabled = 1; - } + } if( !DhcpEnabled ) { /* Non-automatic case */ @@ -222,7 +222,7 @@ IsReconnectHackNeeded(PDHCP_ADAPTER Adapter, const MIB_IFROW* IfEntry) if (Adapter->DhclientInfo.client->state != S_BOUND && Adapter->DhclientInfo.client->state != S_STATIC) return FALSE; - + ApiUnlock(); Orig = AdapterInfo = HeapAlloc(GetProcessHeap(), 0, sizeof(IP_ADAPTER_INFO)); @@ -397,7 +397,7 @@ DWORD WINAPI AdapterDiscoveryThread(LPVOID Context) { socket( AF_INET, SOCK_DGRAM, IPPROTO_UDP ); if (DhcpSocket != INVALID_SOCKET) { - + /* Allow broadcast on this socket */ Broadcast = 1; setsockopt(DhcpSocket, @@ -405,7 +405,7 @@ DWORD WINAPI AdapterDiscoveryThread(LPVOID Context) { SO_BROADCAST, (const char *)&Broadcast, sizeof(Broadcast)); - + Adapter->ListenAddr.sin_family = AF_INET; Adapter->ListenAddr.sin_port = htons(LOCAL_PORT); Adapter->BindStatus = diff --git a/base/services/dhcpcsvc/dhcp/api.c b/base/services/dhcpcsvc/dhcp/api.c index 28d19cacba7..0a2141275ac 100644 --- a/base/services/dhcpcsvc/dhcp/api.c +++ b/base/services/dhcpcsvc/dhcp/api.c @@ -185,7 +185,7 @@ DWORD DSStaticRefreshParams( PipeSendFunc Send, HANDLE CommPipe, COMM_DHCP_REQ * DeleteIpForwardEntry( &Adapter->RouterMib ); Adapter->RouterMib.dwForwardNextHop = 0; } - + Adapter->DhclientState.state = S_STATIC; proto = find_protocol_by_adapter( &Adapter->DhclientInfo ); if (proto) diff --git a/base/services/dhcpcsvc/dhcpcsvc.c b/base/services/dhcpcsvc/dhcpcsvc.c index 819af629a79..c9c9025ebc6 100644 --- a/base/services/dhcpcsvc/dhcpcsvc.c +++ b/base/services/dhcpcsvc/dhcpcsvc.c @@ -51,7 +51,7 @@ DhcpCApiInitialize(LPDWORD Version) } /* Change the pipe into message mode */ - PipeMode = PIPE_READMODE_MESSAGE; + PipeMode = PIPE_READMODE_MESSAGE; if (!SetNamedPipeHandleState(PipeHandle, &PipeMode, NULL, NULL)) { /* Mode change failed */ diff --git a/base/services/dnsrslvr/cache.c b/base/services/dnsrslvr/cache.c index c3be82ccde5..9504d303208 100644 --- a/base/services/dnsrslvr/cache.c +++ b/base/services/dnsrslvr/cache.c @@ -49,7 +49,7 @@ DnsIntCacheFree(VOID) DeleteCriticalSection(&DnsCache.Lock); DnsCacheInitialized = FALSE; } - + VOID DnsIntCacheRemoveEntryItem(PRESOLVER_CACHE_ENTRY CacheEntry) { @@ -57,7 +57,7 @@ DnsIntCacheRemoveEntryItem(PRESOLVER_CACHE_ENTRY CacheEntry) /* Remove the entry from the list */ RemoveEntryList(&CacheEntry->CacheLink); - + /* Free record */ DnsRecordListFree(CacheEntry->Record, DnsFreeRecordList); diff --git a/base/services/rpcss/CMakeLists.txt b/base/services/rpcss/CMakeLists.txt index a0dd14487df..347356773c3 100644 --- a/base/services/rpcss/CMakeLists.txt +++ b/base/services/rpcss/CMakeLists.txt @@ -2,7 +2,7 @@ add_rpc_files(server ${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine/epm.idl ${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine/irot.idl) - + list(APPEND SOURCE epmp.c diff --git a/base/services/shsvcs/thmserver.c b/base/services/shsvcs/thmserver.c index a374079f9f8..de5bc8befd0 100644 --- a/base/services/shsvcs/thmserver.c +++ b/base/services/shsvcs/thmserver.c @@ -6,9 +6,9 @@ * PROGRAMMER: Giannis Adamopoulos */ -/* - * NOTE: - * ThemeWaitForServiceReady and ThemeWatchForStart are called from msgina +/* + * NOTE: + * ThemeWaitForServiceReady and ThemeWatchForStart are called from msgina * so all the functions in this file run in the context of winlogon */ @@ -32,7 +32,7 @@ BOOL WINAPI ThemeWatchForStart(VOID); /* FUNCTIONS *****************************************************************/ -static +static HANDLE GetThemeServiceProcessHandle(VOID) { @@ -162,7 +162,7 @@ ThemeWaitForServiceReady(DWORD dwTimeout) break; } - if (GetTickCount() - start_time > dwTimeout) + if (GetTickCount() - start_time > dwTimeout) { break; } diff --git a/base/services/svchost/security.cxx b/base/services/svchost/security.cxx index 451d6c2929a..ca895cd7ffb 100644 --- a/base/services/svchost/security.cxx +++ b/base/services/svchost/security.cxx @@ -69,7 +69,7 @@ DwInitializeSdFromThreadToken ( /* Allocate an SD large enough to hold the SIDs for the above */ dwAlignLength = ALIGN_UP(dwUserLength, ULONG); pSd = (PISECURITY_DESCRIPTOR)MemAlloc(0, - dwAlignLength + + dwAlignLength + dwGroupLength + sizeof(*pSd)); if (pSd == NULL) return ERROR_OUTOFMEMORY; diff --git a/base/services/tcpsvcs/echo.c b/base/services/tcpsvcs/echo.c index 262ffcfddb5..7f273c6622b 100644 --- a/base/services/tcpsvcs/echo.c +++ b/base/services/tcpsvcs/echo.c @@ -20,7 +20,7 @@ EchoIncomingPackets(SOCKET sock) INT readBytes; INT retVal; - do + do { readBytes = recv(sock, readBuffer, RECV_BUF, 0); if (readBytes > 0) diff --git a/base/services/tcpsvcs/qotd.c b/base/services/tcpsvcs/qotd.c index 55c31969479..904c4f039e6 100644 --- a/base/services/tcpsvcs/qotd.c +++ b/base/services/tcpsvcs/qotd.c @@ -59,7 +59,7 @@ RetrieveQuote(SOCKET sock) { DWORD dwSize = GetFileSize(hFile, NULL); lpQuotes = (LPSTR)HeapAlloc(GetProcessHeap(), 0, dwSize + 1); - if (!lpQuotes) + if (!lpQuotes) { CloseHandle(hFile); return FALSE; diff --git a/base/services/umpnpmgr/rpcserver.c b/base/services/umpnpmgr/rpcserver.c index 70597946e70..95f69db2470 100644 --- a/base/services/umpnpmgr/rpcserver.c +++ b/base/services/umpnpmgr/rpcserver.c @@ -3229,7 +3229,7 @@ PNP_GetDeviceStatus( 0); if (ret != CR_SUCCESS) ulCapabilities = 0; - + if (ulCapabilities & CM_DEVCAP_REMOVABLE) *pulStatus |= DN_REMOVABLE; diff --git a/base/services/wlansvc/rpcserver.c b/base/services/wlansvc/rpcserver.c index 010b4b47f63..d730a58cde1 100644 --- a/base/services/wlansvc/rpcserver.c +++ b/base/services/wlansvc/rpcserver.c @@ -19,7 +19,7 @@ DWORD WINAPI RpcThreadRoutine(LPVOID lpParameter) RPC_STATUS Status; InitializeListHead(&WlanSvcHandleListHead); - + Status = RpcServerUseProtseqEpW(L"ncalrpc", 20, L"wlansvc", NULL); if (Status != RPC_S_OK) { @@ -81,13 +81,13 @@ DWORD _RpcOpenHandle( if (dwClientVersion > 2) dwClientVersion = 2; - + if (dwClientVersion < 1) dwClientVersion = 1; - + lpWlanSvcHandle->dwClientVersion = dwClientVersion; *pdwNegotiatedVersion = dwClientVersion; - + InsertTailList(&WlanSvcHandleListHead, &lpWlanSvcHandle->WlanSvcHandleListEntry); *phClientHandle = lpWlanSvcHandle; @@ -264,7 +264,7 @@ DWORD _RpcScan( { return ERROR_INVALID_HANDLE; } - + /* DWORD dwBytesReturned; HANDLE hDevice; diff --git a/base/services/wuauserv/wuauserv.c b/base/services/wuauserv/wuauserv.c index 6ebc0809ec1..5ef0d287778 100644 --- a/base/services/wuauserv/wuauserv.c +++ b/base/services/wuauserv/wuauserv.c @@ -94,7 +94,7 @@ ServiceMain(DWORD argc, LPTSTR *argv) UNREFERENCED_PARAMETER(argv); DPRINT("WU ServiceMain() called\n"); - + ServiceStatusHandle = RegisterServiceCtrlHandlerExW(ServiceName, ServiceControlHandler, NULL); diff --git a/base/setup/usetup/lang/eu-ES.h b/base/setup/usetup/lang/eu-ES.h index 4777c606c2c..14ab64b8bc7 100644 --- a/base/setup/usetup/lang/eu-ES.h +++ b/base/setup/usetup/lang/eu-ES.h @@ -535,7 +535,7 @@ static MUI_ENTRY euESRepairPageEntries[] = { 6, 12, - "Zuzentzaile funtzioak ez daude artean ezarrita.", + "Zuzentzaile funtzioak ez daude artean ezarrita.", TEXT_STYLE_NORMAL, TEXT_ID_STATIC }, diff --git a/base/setup/usetup/usetup.c b/base/setup/usetup/usetup.c index 16a520cbd84..4668dde86d0 100644 --- a/base/setup/usetup/usetup.c +++ b/base/setup/usetup/usetup.c @@ -3970,7 +3970,7 @@ BootLoaderPage(PINPUT_RECORD Ir) CONSOLE_NormalTextXY(8, Line, 60, 1); Line = 15; - + CONSOLE_InvertTextXY(8, Line, 60, 1); } else if ((Ir->Event.KeyEvent.uChar.AsciiChar == 0x00) && @@ -4099,7 +4099,7 @@ BootLoaderFloppyPage(PINPUT_RECORD Ir) * Calls InstallVBRToPartition() if VBR installation is chosen. * Otherwise both InstallVBRToPartition() and InstallMbrBootCodeToDisk() * are called if both MBR and VBR installation is chosen. - * + * * RETURNS * Number of the next page. */ diff --git a/base/shell/cmd/batch.h b/base/shell/cmd/batch.h index 982965c794a..82f59ad5fc4 100644 --- a/base/shell/cmd/batch.h +++ b/base/shell/cmd/batch.h @@ -29,7 +29,7 @@ typedef struct _BATCH_CONTEXT char *mem; /* batchfile content in memory */ DWORD memsize; /* size of batchfile */ DWORD mempos; /* current position to read from */ - BOOL memfree; /* true if it need to be freed when exitbatch is called */ + BOOL memfree; /* true if it need to be freed when exitbatch is called */ TCHAR BatchFilePath[MAX_PATH]; LPTSTR params; LPTSTR raw_params; /* Holds the raw params given by the input */ diff --git a/base/shell/cmd/ctty.c b/base/shell/cmd/ctty.c index c095ab373e0..d282900cfc2 100644 --- a/base/shell/cmd/ctty.c +++ b/base/shell/cmd/ctty.c @@ -74,7 +74,7 @@ CheckTerminalDeviceType(IN LPCTSTR pszName) } else if ( _wcsnicmp(DeviceName, DosLPTDevice, 3) == 0 || - _wcsnicmp(DeviceName, DosCOMDevice, 3) == 0 || + _wcsnicmp(DeviceName, DosCOMDevice, 3) == 0 || _wcsnicmp(DeviceName, DosPRNDevice, 3) == 0 || _wcsnicmp(DeviceName, DosAUXDevice, 3) == 0 || _wcsnicmp(DeviceName, DosNULDevice, 3) == 0 ) diff --git a/base/shell/cmd/readme2.txt b/base/shell/cmd/readme2.txt index 2de2a692ddc..f9a20b57c94 100644 --- a/base/shell/cmd/readme2.txt +++ b/base/shell/cmd/readme2.txt @@ -1,32 +1,32 @@ General Overview of How Things Work ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -First it comes into _main in cmd.c(1811). The command line params are taking in and if it is unicode it uses CommandLineToArgvW. -This can cause a problem on older machines and that is why we have our own custom _CommandLineToArgvW to help this along. -We pull in the launch directory as the initial dir and set that in _tchdir. We make a handle to the default console out using CreateFile. +First it comes into _main in cmd.c(1811). The command line params are taking in and if it is unicode it uses CommandLineToArgvW. +This can cause a problem on older machines and that is why we have our own custom _CommandLineToArgvW to help this along. +We pull in the launch directory as the initial dir and set that in _tchdir. We make a handle to the default console out using CreateFile. -Then we call Initialize(). Here we need to load ntdll.dll if it isn't loaded (windows 9x machines). -We also setup some global vars like default io handles and nErrorLevel and set %prompt% to $P$G. +Then we call Initialize(). Here we need to load ntdll.dll if it isn't loaded (windows 9x machines). +We also setup some global vars like default io handles and nErrorLevel and set %prompt% to $P$G. This is where all command lines switches given to cmd on startup are done. -From here main calls ProcessInput(). This is where cmd loops for getting input and doing the commands. -First it checks to see if there is a batch file(note: there is a global struct "bc" which is NULL when not processing a batch file) -and if there is it will pull a new line from that file. If not, then it will wait for input. -Currently there is some stuff for set /a in there, which might stay there or see if we can find a better spot. +From here main calls ProcessInput(). This is where cmd loops for getting input and doing the commands. +First it checks to see if there is a batch file(note: there is a global struct "bc" which is NULL when not processing a batch file) +and if there is it will pull a new line from that file. If not, then it will wait for input. +Currently there is some stuff for set /a in there, which might stay there or see if we can find a better spot. -Once there is input taken in from the command line it is sent into ParseCommandLine(). -In here we fist check for aliases and convert if need be. -Then we look for redirections using GetRedirection() which will remove any redirection symbols. -and pass back info about where to redirect. -from this info it will do some switching around with the handles for where things go and send them as need be. -personally i dont like this code and i tried to change it before but failed. +Once there is input taken in from the command line it is sent into ParseCommandLine(). +In here we fist check for aliases and convert if need be. +Then we look for redirections using GetRedirection() which will remove any redirection symbols. +and pass back info about where to redirect. +from this info it will do some switching around with the handles for where things go and send them as need be. +personally i dont like this code and i tried to change it before but failed. it is confusing to me and i dont understand why a lot of it is there but apparently it is needed. -It sends the new string without any redirection info into DoCommand(). In this function we just look to see what should be done. -There is one of 2 things that could happen. -1) we fnd the matching command and send it off to that commands little section. +It sends the new string without any redirection info into DoCommand(). In this function we just look to see what should be done. +There is one of 2 things that could happen. +1) we fnd the matching command and send it off to that commands little section. 2) we dont find it so we send it to Execute() and see if it is a file that we can do something. -Execute will try to launch the file using createprocess and falls back on shellexecute. +Execute will try to launch the file using createprocess and falls back on shellexecute. It calls a function called SearchForExecutable() to find the full path name and looks in all the correct locations like PATH, current folder, windows folder. If it cant find it, just fails and prints out a message. diff --git a/base/shell/cmd/ren.txt b/base/shell/cmd/ren.txt index ed2bfa2d166..a32fb92061f 100644 --- a/base/shell/cmd/ren.txt +++ b/base/shell/cmd/ren.txt @@ -1,6 +1,6 @@ Made by Vicmarcal 23/11/08 -THIS FILE HELPS TO EXPLAIN HOW REN IS NOW IMPLEMENTED. +THIS FILE HELPS TO EXPLAIN HOW REN IS NOW IMPLEMENTED. **************************************************************** (Please change or add latest modifications) **************************************************************** @@ -14,7 +14,7 @@ ren c:\ie\hello.txt c:\ie\hi.txt rename command will change the name of hello.txt->hi.txt. We have to be sure that both paths(c:\ie\ ) be the same.Since rename cant move files within Directories (MSDN). WAY #2:Semi Path Way: -ren c:\ie\hello.txt hi.txt +ren c:\ie\hello.txt hi.txt This is a special feature,since this does the same as Way #1 but without telling the Destiny path.So this feature must be implemented also. @@ -35,7 +35,7 @@ So it changes the name of hello.txt in the current directory. Explaining code: -srcPattern: here is stored Source Argument (C:\ie\hello.txt) +srcPattern: here is stored Source Argument (C:\ie\hello.txt) srcPath: here is stored Source Path(C:\ie) srcFILE: here is stored FILE name(hello.txt) @@ -43,7 +43,7 @@ dstPattern: here is stored Destiny Argument (C:\ie\hi.txt) dstPath: here is stored Destiny Path(C:\i) dstFILE: here is stored FILE re-name(hi.txt) -1)We begin retrieving arguments from command line and fulfilling dstPattern and srcPattern +1)We begin retrieving arguments from command line and fulfilling dstPattern and srcPattern 2)If srcPattern contains "\" then: diff --git a/base/shell/explorer/notifyiconscust.cpp b/base/shell/explorer/notifyiconscust.cpp index b7adccb35ab..18e2d665da0 100644 --- a/base/shell/explorer/notifyiconscust.cpp +++ b/base/shell/explorer/notifyiconscust.cpp @@ -25,7 +25,7 @@ INT_PTR CALLBACK CustomizeNotifyIconsProc(HWND hwnd, UINT Message, WPARAM wParam switch(Message) { case WM_INITDIALOG: - + return TRUE; case WM_COMMAND: switch(LOWORD(wParam)) diff --git a/base/shell/explorer/precomp.h b/base/shell/explorer/precomp.h index 1db8538dce8..86c5b80a284 100644 --- a/base/shell/explorer/precomp.h +++ b/base/shell/explorer/precomp.h @@ -68,7 +68,7 @@ extern BOOL bExplorerIsShell; * explorer.c */ -static inline +static inline LONG SetWindowStyle(IN HWND hWnd, IN LONG dwStyleMask, @@ -312,14 +312,14 @@ CreateStartMenu(IN ITrayWindow *Tray, /* * startmnucust.cpp */ -VOID +VOID ShowCustomizeClassic(HINSTANCE, HWND); /* * startmnusite.cpp */ -HRESULT +HRESULT CStartMenuSite_CreateInstance(IN OUT ITrayWindow *Tray, const IID & riid, PVOID * ppv); /* diff --git a/base/shell/explorer/resource.h b/base/shell/explorer/resource.h index 2e748252fdc..5265eb15618 100644 --- a/base/shell/explorer/resource.h +++ b/base/shell/explorer/resource.h @@ -134,7 +134,7 @@ /* Customize Notifications Dialog */ #define IDC_TASKBARPROP_NOTIREST 1402 -#define IDC_NOTIFICATION_LIST 1005 +#define IDC_NOTIFICATION_LIST 1005 #define IDC_NOTIFICATION_BEHAVIOUR 1006 /* Customize classic start menu dialog */ diff --git a/base/shell/explorer/settings.cpp b/base/shell/explorer/settings.cpp index f47e165d7df..c47993d1d7a 100644 --- a/base/shell/explorer/settings.cpp +++ b/base/shell/explorer/settings.cpp @@ -43,7 +43,7 @@ BOOL TaskbarSettings::Load() cbSize = sizeof(dwValue); dwRet = SHGetValueW(hkExplorer, L"Advanced", L"TaskbarSizeMove", NULL, &dwValue, &cbSize); bLock = (dwRet == ERROR_SUCCESS) ? (dwValue == 0) : TRUE; - + dwRet = SHGetValueW(hkExplorer, L"Advanced", L"ShowSeconds", NULL, &dwValue, &cbSize); bShowSeconds = (dwRet == ERROR_SUCCESS) ? (dwValue != 0) : FALSE; diff --git a/base/shell/explorer/startctxmnu.cpp b/base/shell/explorer/startctxmnu.cpp index 4c3d7caf172..a404cb4ba1f 100644 --- a/base/shell/explorer/startctxmnu.cpp +++ b/base/shell/explorer/startctxmnu.cpp @@ -212,7 +212,7 @@ public: return S_OK; } - virtual HRESULT STDMETHODCALLTYPE + virtual HRESULT STDMETHODCALLTYPE GetCommandString(UINT_PTR idCmd, UINT uType, UINT *pwReserved, diff --git a/base/shell/explorer/syspager.cpp b/base/shell/explorer/syspager.cpp index a71d3cf280a..b28e742cef4 100644 --- a/base/shell/explorer/syspager.cpp +++ b/base/shell/explorer/syspager.cpp @@ -369,7 +369,7 @@ bool CIconWatcher::AddIconToWatcher(_In_ CONST NOTIFYICONDATA *iconData) bool CIconWatcher::RemoveIconFromWatcher(_In_ CONST NOTIFYICONDATA *iconData) { EnterCriticalSection(&m_ListLock); - + IconWatcherData *Icon; Icon = GetListEntry(iconData, NULL, true); @@ -717,7 +717,7 @@ BOOL CNotifyToolbar::AddButton(_In_ CONST NOTIFYICONDATA *iconData) InternalIconData * notifyItem; WCHAR text[] = L""; - TRACE("Adding icon %d from hWnd %08x flags%s%s state%s%s", + TRACE("Adding icon %d from hWnd %08x flags%s%s state%s%s", iconData->uID, iconData->hWnd, (iconData->uFlags & NIF_ICON) ? " ICON" : "", (iconData->uFlags & NIF_STATE) ? " STATE" : "", @@ -1243,7 +1243,7 @@ void CNotifyToolbar::Initialize(HWND hWndParent, CBalloonQueue * queue) SetWindowTheme(m_hWnd, L"TrayNotify", NULL); - m_ImageList = ImageList_Create(GetSystemMetrics(SM_CXSMICON), GetSystemMetrics(SM_CYSMICON), ILC_COLOR32 | ILC_MASK, 0, 1000); + m_ImageList = ImageList_Create(GetSystemMetrics(SM_CXSMICON), GetSystemMetrics(SM_CYSMICON), ILC_COLOR32 | ILC_MASK, 0, 1000); SetImageList(m_ImageList); TBMETRICS tbm = {sizeof(tbm)}; @@ -1292,7 +1292,7 @@ LRESULT CSysPagerWnd::OnCreate(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bH HWND hWndTop = GetAncestor(m_hWnd, GA_ROOT); m_Balloons.Create(hWndTop, TTS_NOPREFIX | TTS_BALLOON | TTS_CLOSE); - + TOOLINFOW ti = { 0 }; ti.cbSize = TTTOOLINFOW_V1_SIZE; ti.uFlags = TTF_TRACK | TTF_IDISHWND; @@ -1380,7 +1380,7 @@ BOOL CSysPagerWnd::NotifyIcon(DWORD dwMessage, _In_ CONST NOTIFYICONDATA *iconDa void CSysPagerWnd::GetSize(IN BOOL IsHorizontal, IN PSIZE size) { /* Get the ideal height or width */ -#if 0 +#if 0 /* Unfortunately this doens't work correctly in ros */ Toolbar.GetIdealSize(!IsHorizontal, size); diff --git a/base/shell/explorer/taskband.cpp b/base/shell/explorer/taskband.cpp index d1c6ecd73c0..7d8d2d213ce 100644 --- a/base/shell/explorer/taskband.cpp +++ b/base/shell/explorer/taskband.cpp @@ -86,7 +86,7 @@ public: virtual HRESULT STDMETHODCALLTYPE ResizeBorderDW( LPCRECT prcBorder, IUnknown *punkToolbarSite, - BOOL fReserved) + BOOL fReserved) { /* No need to implement this method */ return E_NOTIMPL; @@ -174,7 +174,7 @@ public: } /*****************************************************************************/ - + virtual HRESULT STDMETHODCALLTYPE SetClient( IN IUnknown *punkClient) { diff --git a/base/shell/explorer/trayclock.cpp b/base/shell/explorer/trayclock.cpp index cc289ddc0e2..5286aad774e 100644 --- a/base/shell/explorer/trayclock.cpp +++ b/base/shell/explorer/trayclock.cpp @@ -195,7 +195,7 @@ LRESULT CTrayClockWnd::OnThemeChanged() } else { - /* We don't need to set a font here, our parent will use + /* We don't need to set a font here, our parent will use * WM_SETFONT to set the right one when themes are not enabled. */ textColor = RGB(0, 0, 0); } diff --git a/base/shell/explorer/trayprop.cpp b/base/shell/explorer/trayprop.cpp index 00ac0b37677..52ceb863ced 100644 --- a/base/shell/explorer/trayprop.cpp +++ b/base/shell/explorer/trayprop.cpp @@ -46,7 +46,7 @@ static void SetBitmap(HWND hwnd, HBITMAP* hbmp, UINT uImageId) class CTaskBarSettingsPage : public CPropertyPageImpl { -private: +private: HBITMAP m_hbmpTaskbar; HBITMAP m_hbmpTray; HWND m_hwndTaskbar; @@ -85,7 +85,7 @@ private: uImageId = IDB_TASKBARPROP_NOLOCK_NOGROUP_QL; else if (!bLock && bGroup && bShowQL) uImageId = IDB_TASKBARPROP_NOLOCK_GROUP_QL; - else + else ASSERT(FALSE); SetBitmap(hwndTaskbarBitmap, &m_hbmpTaskbar, uImageId); @@ -107,7 +107,7 @@ private: uImageId = IDB_SYSTRAYPROP_SHOW_CLOCK; else if (!bHideInactive && !bShowClock) uImageId = IDB_SYSTRAYPROP_SHOW_NOCLOCK; - else + else ASSERT(FALSE); SetBitmap(hwndTrayBitmap, &m_hbmpTray, uImageId); @@ -129,7 +129,7 @@ public: m_hwndTaskbar(hwnd) { } - + ~CTaskBarSettingsPage() { if (m_hbmpTaskbar) @@ -188,7 +188,7 @@ public: class CStartMenuSettingsPage : public CPropertyPageImpl { -private: +private: HBITMAP m_hbmpStartBitmap; void UpdateDialog() @@ -253,7 +253,7 @@ public: // fix me: start menu style (classic/modern) should be read somewhere from the registry. CheckDlgButton(IDC_TASKBARPROP_STARTMENUCLASSIC, BST_CHECKED); // HACK: This has to be read from registry!!!!!!! UpdateDialog(); - + return TRUE; } @@ -295,9 +295,9 @@ DisplayTrayProperties(IN HWND hwndOwner, IN HWND hwndTaskbar) CTaskBarSettingsPage tbSettingsPage(hwndTaskbar); CStartMenuSettingsPage smSettingsPage; CStringW caption; - + caption.LoadStringW(IDS_TASKBAR_STARTMENU_PROP_CAPTION); - + hpsp[0] = tbSettingsPage.Create(); hpsp[1] = smSettingsPage.Create(); diff --git a/base/shell/rshell/CQuickLaunchBand.cpp b/base/shell/rshell/CQuickLaunchBand.cpp index c4a25224d59..f5ae43ef7a5 100644 --- a/base/shell/rshell/CQuickLaunchBand.cpp +++ b/base/shell/rshell/CQuickLaunchBand.cpp @@ -47,7 +47,7 @@ const GUID CLSID_QuickLaunchBand = { 0x260cb95d, 0x4544, 0x44f6, { 0xa0, 0x79, 0 if (SUCCEEDED(hr)) { CATID catid = CATID_DeskBand; - hr = pcr->RegisterClassImplCategories(CLSID_QuickLaunchBand, 1, &catid); + hr = pcr->RegisterClassImplCategories(CLSID_QuickLaunchBand, 1, &catid); } return hr; } @@ -59,7 +59,7 @@ const GUID CLSID_QuickLaunchBand = { 0x260cb95d, 0x4544, 0x44f6, { 0xa0, 0x79, 0 if (SUCCEEDED(hr)) { CATID catid = CATID_DeskBand; - hr = pcr->UnRegisterClassImplCategories(CLSID_QuickLaunchBand, 1, &catid); + hr = pcr->UnRegisterClassImplCategories(CLSID_QuickLaunchBand, 1, &catid); } return hr; } @@ -82,16 +82,16 @@ const GUID CLSID_QuickLaunchBand = { 0x260cb95d, 0x4544, 0x44f6, { 0xa0, 0x79, 0 LPITEMIDLIST PidlBrowse(HWND hwnd, int nCSIDL) { CComHeapPtr pidlRoot; - + WCHAR path[MAX_PATH]; if (nCSIDL) { SHGetSpecialFolderLocation(hwnd, nCSIDL, &pidlRoot); - } + } BROWSEINFO bi = { hwnd, pidlRoot, path, L"Choose a folder", 0, NULL, 0, 0 }; - LPITEMIDLIST pidlSelected = SHBrowseForFolder(&bi); + LPITEMIDLIST pidlSelected = SHBrowseForFolder(&bi); return pidlSelected; } @@ -132,24 +132,24 @@ const GUID CLSID_QuickLaunchBand = { 0x260cb95d, 0x4544, 0x44f6, { 0xa0, 0x79, 0 if (pidl == NULL) return E_FAIL; pISFB->InitializeSFB(pISF, pidl); - + return hr; } // IObjectWithSite STDMETHODIMP CQuickLaunchBand::SetSite(IUnknown *pUnkSite) - { + { // Internal CISFBand Calls CComPtr pIOWS; HRESULT hr = m_punkISFB->QueryInterface(IID_PPV_ARG(IObjectWithSite, &pIOWS)); if (FAILED(hr)) - return hr; + return hr; return pIOWS->SetSite(pUnkSite); } STDMETHODIMP CQuickLaunchBand::GetSite(IN REFIID riid, OUT VOID **ppvSite) - { + { CComPtr pIOWS; HRESULT hr = m_punkISFB->QueryInterface(IID_PPV_ARG(IObjectWithSite, &pIOWS)); if (FAILED(hr)) @@ -165,7 +165,7 @@ const GUID CLSID_QuickLaunchBand = { 0x260cb95d, 0x4544, 0x44f6, { 0xa0, 0x79, 0 // Internal CISFBand Calls CComPtr pIDB; HRESULT hr = m_punkISFB->QueryInterface(IID_PPV_ARG(IDeskBand, &pIDB)); - if (FAILED(hr)) + if (FAILED(hr)) return hr; return pIDB->GetWindow(phwnd); @@ -183,53 +183,53 @@ const GUID CLSID_QuickLaunchBand = { 0x260cb95d, 0x4544, 0x44f6, { 0xa0, 0x79, 0 } STDMETHODIMP CQuickLaunchBand::ShowDW(IN BOOL bShow) - { + { // Internal CISFBand Calls CComPtr pIDB; HRESULT hr = m_punkISFB->QueryInterface(IID_PPV_ARG(IDeskBand, &pIDB)); if (FAILED(hr)) return hr; - return pIDB->ShowDW(bShow); + return pIDB->ShowDW(bShow); } STDMETHODIMP CQuickLaunchBand::CloseDW(IN DWORD dwReserved) - { + { // Internal CISFBand Calls CComPtr pIDB; HRESULT hr = m_punkISFB->QueryInterface(IID_PPV_ARG(IDeskBand, &pIDB)); - if (FAILED(hr)) + if (FAILED(hr)) return hr; return pIDB->CloseDW(dwReserved); } - STDMETHODIMP CQuickLaunchBand::ResizeBorderDW(LPCRECT prcBorder, IUnknown *punkToolbarSite, BOOL fReserved) - { + STDMETHODIMP CQuickLaunchBand::ResizeBorderDW(LPCRECT prcBorder, IUnknown *punkToolbarSite, BOOL fReserved) + { // Internal CISFBand Calls CComPtr pIDB; HRESULT hr = m_punkISFB->QueryInterface(IID_PPV_ARG(IDeskBand, &pIDB)); - if (FAILED(hr)) + if (FAILED(hr)) return hr; return pIDB->ResizeBorderDW(prcBorder, punkToolbarSite, fReserved); } STDMETHODIMP CQuickLaunchBand::GetBandInfo(IN DWORD dwBandID, IN DWORD dwViewMode, IN OUT DESKBANDINFO *pdbi) - { + { // Internal CISFBand Calls CComPtr pIDB; HRESULT hr = m_punkISFB->QueryInterface(IID_PPV_ARG(IDeskBand, &pIDB)); - if (FAILED(hr)) + if (FAILED(hr)) return hr; return pIDB->GetBandInfo(dwBandID, dwViewMode, pdbi); - } - + } + /*****************************************************************************/ // IPersistStream STDMETHODIMP CQuickLaunchBand::GetClassID(OUT CLSID *pClassID) - { + { // Internal CISFBand Calls CComPtr pIPS; HRESULT hr = m_punkISFB->QueryInterface(IID_PPV_ARG(IPersistStream, &pIPS)); @@ -240,7 +240,7 @@ const GUID CLSID_QuickLaunchBand = { 0x260cb95d, 0x4544, 0x44f6, { 0xa0, 0x79, 0 } STDMETHODIMP CQuickLaunchBand::IsDirty() - { + { // Internal CISFBand Calls CComPtr pIPS; HRESULT hr = m_punkISFB->QueryInterface(IID_PPV_ARG(IPersistStream, &pIPS)); @@ -261,7 +261,7 @@ const GUID CLSID_QuickLaunchBand = { 0x260cb95d, 0x4544, 0x44f6, { 0xa0, 0x79, 0 } STDMETHODIMP CQuickLaunchBand::Save(IN IStream *pStm, IN BOOL fClearDirty) - { + { // Internal CISFBand Calls CComPtr pIPS; HRESULT hr = m_punkISFB->QueryInterface(IID_PPV_ARG(IPersistStream, &pIPS)); @@ -280,7 +280,7 @@ const GUID CLSID_QuickLaunchBand = { 0x260cb95d, 0x4544, 0x44f6, { 0xa0, 0x79, 0 return pIPS->GetSizeMax(pcbSize); } - + /*****************************************************************************/ // IWinEventHandler @@ -290,50 +290,50 @@ const GUID CLSID_QuickLaunchBand = { 0x260cb95d, 0x4544, 0x44f6, { 0xa0, 0x79, 0 } STDMETHODIMP CQuickLaunchBand::OnWinEvent(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam, LRESULT *theResult) - { + { // Internal CISFBand Calls CComPtr pWEH; HRESULT hr = m_punkISFB->QueryInterface(IID_PPV_ARG(IWinEventHandler, &pWEH)); - if (FAILED(hr)) + if (FAILED(hr)) return hr; return pWEH->OnWinEvent(hWnd, uMsg, wParam, lParam, theResult); } STDMETHODIMP CQuickLaunchBand::IsWindowOwner(HWND hWnd) - { + { // Internal CISFBand Calls CComPtr pWEH; HRESULT hr = m_punkISFB->QueryInterface(IID_PPV_ARG(IWinEventHandler, &pWEH)); - if (FAILED(hr)) + if (FAILED(hr)) return hr; return pWEH->IsWindowOwner(hWnd); } - + /*****************************************************************************/ // *** IOleCommandTarget methods *** STDMETHODIMP CQuickLaunchBand::QueryStatus(const GUID *pguidCmdGroup, ULONG cCmds, OLECMD prgCmds [], OLECMDTEXT *pCmdText) - { + { // Internal CISFBand Calls CComPtr pOCT; HRESULT hr = m_punkISFB->QueryInterface(IID_PPV_ARG(IOleCommandTarget, &pOCT)); - if (FAILED(hr)) + if (FAILED(hr)) return hr; return pOCT->QueryStatus(pguidCmdGroup, cCmds, prgCmds, pCmdText); } STDMETHODIMP CQuickLaunchBand::Exec(const GUID *pguidCmdGroup, DWORD nCmdID, DWORD nCmdexecopt, VARIANT *pvaIn, VARIANT *pvaOut) - { + { // Internal CISFBand Calls CComPtr pOCT; HRESULT hr = m_punkISFB->QueryInterface(IID_PPV_ARG(IOleCommandTarget, &pOCT)); - if (FAILED(hr)) + if (FAILED(hr)) return hr; return pOCT->Exec(pguidCmdGroup, nCmdID, nCmdexecopt, pvaIn, pvaOut); - } + } /*****************************************************************************/ // *** IContextMenu *** @@ -342,7 +342,7 @@ const GUID CLSID_QuickLaunchBand = { 0x260cb95d, 0x4544, 0x44f6, { 0xa0, 0x79, 0 // Internal CISFBand Calls CComPtr pICM; HRESULT hr = m_punkISFB->QueryInterface(IID_PPV_ARG(IContextMenu, &pICM)); - if (FAILED(hr)) + if (FAILED(hr)) return hr; return pICM->GetCommandString(idCmd, uFlags, pwReserved, pszName, cchMax); @@ -353,7 +353,7 @@ const GUID CLSID_QuickLaunchBand = { 0x260cb95d, 0x4544, 0x44f6, { 0xa0, 0x79, 0 // Internal CISFBand Calls CComPtr pICM; HRESULT hr = m_punkISFB->QueryInterface(IID_PPV_ARG(IContextMenu, &pICM)); - if (FAILED(hr)) + if (FAILED(hr)) return hr; return pICM->InvokeCommand(pici); diff --git a/base/shell/rshell/CQuickLaunchBand.h b/base/shell/rshell/CQuickLaunchBand.h index 2889e6ef1f5..168a455bfa1 100644 --- a/base/shell/rshell/CQuickLaunchBand.h +++ b/base/shell/rshell/CQuickLaunchBand.h @@ -18,14 +18,14 @@ class CQuickLaunchBand : public CComCoClass, public CComObjectRootEx, public IObjectWithSite, - public IDeskBand, + public IDeskBand, public IPersistStream, public IWinEventHandler, public IOleCommandTarget, public IContextMenu { HWND m_hWndBro; - CComPtr m_punkISFB; + CComPtr m_punkISFB; public: @@ -46,36 +46,36 @@ class CQuickLaunchBand : virtual STDMETHODIMP SetSite( IN IUnknown *pUnkSite ); - + // IDeskBand virtual STDMETHODIMP GetWindow( OUT HWND *phwnd - ); + ); virtual STDMETHODIMP ContextSensitiveHelp( IN BOOL fEnterMode - ); + ); virtual STDMETHODIMP ShowDW( IN BOOL bShow - ); + ); virtual STDMETHODIMP CloseDW( IN DWORD dwReserved - ); + ); virtual STDMETHODIMP ResizeBorderDW( LPCRECT prcBorder, IUnknown *punkToolbarSite, BOOL fReserved - ); + ); virtual STDMETHODIMP GetBandInfo( IN DWORD dwBandID, IN DWORD dwViewMode, IN OUT DESKBANDINFO *pdbi - ); + ); // IPersistStream @@ -98,17 +98,17 @@ class CQuickLaunchBand : IN BOOL fClearDirty ); -// IWinEventHandler +// IWinEventHandler virtual STDMETHODIMP ContainsWindow( IN HWND hWnd ); virtual STDMETHODIMP OnWinEvent( - HWND hWnd, - UINT uMsg, - WPARAM wParam, - LPARAM lParam, + HWND hWnd, + UINT uMsg, + WPARAM wParam, + LPARAM lParam, LRESULT *theResult ); @@ -169,5 +169,5 @@ class CQuickLaunchBand : COM_INTERFACE_ENTRY_IID(IID_IWinEventHandler, IWinEventHandler) COM_INTERFACE_ENTRY_IID(IID_IOleCommandTarget, IOleCommandTarget) COM_INTERFACE_ENTRY_IID(IID_IContextMenu, IContextMenu) - END_COM_MAP() + END_COM_MAP() }; \ No newline at end of file diff --git a/base/shell/rshell/misc.cpp b/base/shell/rshell/misc.cpp index ce1eb7a98b6..d17619bf076 100644 --- a/base/shell/rshell/misc.cpp +++ b/base/shell/rshell/misc.cpp @@ -232,7 +232,7 @@ public: if (IsEqualCLSID(m_Clsid, CLSID_StartMenu)) return RSHELL_CStartMenu_CreateInstance(riid, ppvObject); - + if (IsEqualCLSID(m_Clsid, CLSID_MenuDeskBar)) return RSHELL_CMenuDeskBar_CreateInstance(riid, ppvObject); diff --git a/base/system/diskpart/list.c b/base/system/diskpart/list.c index 1557a398bb1..5b3d6438969 100644 --- a/base/system/diskpart/list.c +++ b/base/system/diskpart/list.c @@ -43,7 +43,7 @@ ListDisk(VOID) { DiskEntry = CONTAINING_RECORD(Entry, DISKENTRY, ListEntry); - DiskSize = DiskEntry->SectorCount.QuadPart * + DiskSize = DiskEntry->SectorCount.QuadPart * (ULONGLONG)DiskEntry->BytesPerSector; if (DiskSize >= 10737418240) /* 10 GB */ diff --git a/base/system/smss/smsessn.c b/base/system/smss/smsessn.c index 077fa9e56c9..8b3aed81e78 100644 --- a/base/system/smss/smsessn.c +++ b/base/system/smss/smsessn.c @@ -55,7 +55,7 @@ SmpCheckDuplicateMuSessionId(IN ULONG MuSessionId) FoundDuplicate = TRUE; break; } - + /* Keep going */ NextEntry = NextEntry->Flink; } diff --git a/base/system/userinit/livecd.c b/base/system/userinit/livecd.c index 216579f427b..637715a7f5b 100644 --- a/base/system/userinit/livecd.c +++ b/base/system/userinit/livecd.c @@ -95,9 +95,9 @@ InitLogo(PIMGINFO pImgInfo, HWND hwndDlg) Cleanup: if (hMask != NULL) DeleteObject(hMask); - if (hLogo != NULL) DeleteObject(hLogo); + if (hLogo != NULL) DeleteObject(hLogo); if (hDCMask != NULL) DeleteDC(hDCMask); - if (hDCLogo != NULL) DeleteDC(hDCLogo); + if (hDCLogo != NULL) DeleteDC(hDCLogo); if (hDC != NULL) ReleaseDC(hwndDlg, hDC); } diff --git a/base/system/winlogon/sas.c b/base/system/winlogon/sas.c index 02e9844a74c..b77054caba6 100644 --- a/base/system/winlogon/sas.c +++ b/base/system/winlogon/sas.c @@ -1047,9 +1047,9 @@ HandleShutdown( BOOLEAN Old; // SwitchDesktop(Session->WinlogonDesktop); - + /* If the system is rebooting, show the appropriate string */ - if (wlxAction == WLX_SAS_ACTION_SHUTDOWN_REBOOT) + if (wlxAction == WLX_SAS_ACTION_SHUTDOWN_REBOOT) DisplayStatusMessage(Session, Session->WinlogonDesktop, IDS_REACTOSISRESTARTING); else DisplayStatusMessage(Session, Session->WinlogonDesktop, IDS_REACTOSISSHUTTINGDOWN); diff --git a/base/system/winlogon/winlogon.h b/base/system/winlogon/winlogon.h index 20231e35515..07f803a20d8 100644 --- a/base/system/winlogon/winlogon.h +++ b/base/system/winlogon/winlogon.h @@ -133,7 +133,7 @@ typedef struct _GINAINSTANCE * about the Winlogon states is a little too simple. * * The real picture should look more like this: - * + * * STATE_INIT * Initial state. Required for session initialization. After initialization, * the state will automatically change to STATE_LOGGED_OFF. diff --git a/boot/armllb/boot.s b/boot/armllb/boot.s index 899013f4dc9..1209f52a445 100644 --- a/boot/armllb/boot.s +++ b/boot/armllb/boot.s @@ -12,7 +12,7 @@ NESTED_ENTRY _start PROLOG_END _start - + #ifdef _BEAGLE_ // This is only used for TI BootROM on Beagle/Emulator for now /* * On Beagle, the boot is directly from TI BootROM that reads NAND flash. @@ -53,7 +53,7 @@ .byte 2 // ARM .byte 2 // Kernel .byte 0 // No compression - .ascii "ReactOS ARM Low-Level Bootloader" + .ascii "ReactOS ARM Low-Level Bootloader" #endif /* Load C entrypoint and setup LLB stack */ diff --git a/boot/armllb/crtsupp.c b/boot/armllb/crtsupp.c index f535a1777c0..933d4b3ee66 100644 --- a/boot/armllb/crtsupp.c +++ b/boot/armllb/crtsupp.c @@ -50,7 +50,7 @@ DbgPrint(const char *fmt, ...) va_start(args, fmt); i = vsprintf(Buffer, fmt, args); va_end(args); - + for (j = 0; j < i; j++) LlbSerialPutChar(Buffer[j]); return 0; } diff --git a/boot/armllb/envir.c b/boot/armllb/envir.c index 0b1c451c11b..6d5db3a2f37 100644 --- a/boot/armllb/envir.c +++ b/boot/armllb/envir.c @@ -16,13 +16,13 @@ ULONG LlbEnvRamDiskSize = 0; ULONG LlbEnvHwRevision; CHAR LlbEnvCmdLine[256]; CHAR LlbValueData[32]; - + VOID NTAPI LlbEnvParseArguments(IN PATAG Arguments) { PATAG Atag; - + /* Parse the ATAGs */ Atag = Arguments; while (Atag->Hdr.Size) @@ -31,59 +31,59 @@ LlbEnvParseArguments(IN PATAG Arguments) switch (Atag->Hdr.Tag) { case ATAG_CORE: - + /* Save page size */ LlbEnvHwPageSize = Atag->u.Core.PageSize; break; - + case ATAG_REVISION: /* Save page size */ LlbEnvHwRevision = Atag->u.Revision.Rev; break; - + case ATAG_MEM: - + /* Save RAM start and size */ if (!LlbEnvHwMemStart) LlbEnvHwMemStart = Atag->u.Mem.Start; LlbEnvHwMemSize += Atag->u.Mem.Size; break; - + case ATAG_INITRD2: - + /* Save RAMDISK start and size */ LlbEnvRamDiskStart = Atag->u.InitRd2.Start; LlbEnvRamDiskSize = Atag->u.InitRd2.Size; - + #ifdef _BEAGLE_ /* Make sure it's 16MB-aligned */ - LlbEnvRamDiskSize = (LlbEnvRamDiskSize + (16 * 1024 * 1024) - 1) + LlbEnvRamDiskSize = (LlbEnvRamDiskSize + (16 * 1024 * 1024) - 1) &~ ((16 * 1024 * 1024) - 1); - + /* The RAMDISK actually starts 16MB later */ LlbEnvRamDiskStart += 16 * 1024 * 1024; LlbEnvRamDiskSize -= 16 * 1024 * 1024; #endif break; - + case ATAG_CMDLINE: - + /* Save command line */ strncpy(LlbEnvCmdLine, Atag->u.CmdLine.CmdLine, Atag->Hdr.Size * sizeof(ULONG)); break; - + /* Nothing left to handle */ case ATAG_NONE: default: break; } - + /* Next tag */ Atag = (PATAG)((PULONG)Atag + Atag->Hdr.Size); } - + /* For debugging */ DbgPrint("[BOOTROM] Board Revision: %lx PageSize: %dKB RAM: %dMB CMDLINE: %s\n" "[RAMDISK] Base: %lx Size: %dMB\n", @@ -115,7 +115,7 @@ LlbEnvGetRamDiskInformation(IN PULONG Base, *Size = 0; return FALSE; } - + /* Return ramdisk information */ *Base = LlbEnvRamDiskStart; *Size = LlbEnvRamDiskSize; @@ -128,7 +128,7 @@ LlbEnvRead(IN PCHAR ValueName) { PCHAR ValuePointer; ULONG Length = 0; - + /* Search for the value name */ ValuePointer = strstr(LlbEnvCmdLine, ValueName); if (ValuePointer) @@ -145,11 +145,11 @@ LlbEnvRead(IN PCHAR ValueName) /* Stop before the string ends */ Length = strlen(ValuePointer); } - + /* Copy it */ strncpy(LlbValueData, ValuePointer, Length); } - + /* Terminate the data */ LlbValueData[Length] = ANSI_NULL; diff --git a/boot/armllb/fw.c b/boot/armllb/fw.c index 8831d95a655..13c97acfb0f 100644 --- a/boot/armllb/fw.c +++ b/boot/armllb/fw.c @@ -72,7 +72,7 @@ LlbFwVideoGetDisplaySize(OUT PULONG Width, /* Query static settings */ *Width = LlbHwGetScreenWidth() / 8; *Height = LlbHwGetScreenHeight() / 16; - + /* Depth is always 16 bpp */ *Depth = 16; } @@ -92,7 +92,7 @@ LlbFwVideoPutChar(IN INT c, { ULONG Color, BackColor; PUSHORT Buffer; - + /* Convert EGA index to color used by hardware */ Color = LlbHwVideoCreateColor(ColorPalette[Attr & 0xF][0], ColorPalette[Attr & 0xF][1], @@ -100,10 +100,10 @@ LlbFwVideoPutChar(IN INT c, BackColor = LlbHwVideoCreateColor(ColorPalette[Attr >> 4][0], ColorPalette[Attr >> 4][1], ColorPalette[Attr >> 4][2]); - + /* Compute buffer address */ Buffer = (PUSHORT)LlbHwGetFrameBuffer() + (LlbHwGetScreenWidth() * (Y * 16)) + (X * 8); - + /* Draw it */ LlbVideoDrawChar(c, Buffer, Color, BackColor); } diff --git a/boot/armllb/hw/keyboard.c b/boot/armllb/hw/keyboard.c index 06d2c6706dd..18c07a66a91 100644 --- a/boot/armllb/hw/keyboard.c +++ b/boot/armllb/hw/keyboard.c @@ -100,7 +100,7 @@ CHAR LlbHwScanCodeToAsciiTable[58][2] = { 0,0 } , { ' ',' ' } , }; - + /* EXTENDED KEY TABLE *********************************************************/ UCHAR LlbHwExtendedScanCodeTable[128] = @@ -143,14 +143,14 @@ UCHAR LlbHwExtendedScanCodeTable[128] = /* FUNCTIONS ******************************************************************/ USHORT LlbKbdLastScanCode; - + UCHAR NTAPI LlbKbdTranslateScanCode(IN USHORT ScanCode, IN PUCHAR KeyCode) { ULONG LastScanCode; - + /* Check for extended scan codes */ if ((ScanCode == 0xE0) || (ScanCode == 0xE1)) { @@ -166,7 +166,7 @@ LlbKbdTranslateScanCode(IN USHORT ScanCode, LlbKbdLastScanCode = 0; return 0; } - + /* Only act on the break, not the make */ if (ScanCode > 0x80) return 0; @@ -183,10 +183,10 @@ LlbKbdTranslateScanCode(IN USHORT ScanCode, { /* E0 extended codes */ case 0xE0: - + /* Skip bogus codes */ if ((ScanCode == 0x2A) || (ScanCode == 0x36)) return 0; - + /* Lookup the code for it */ if (!LlbHwExtendedScanCodeTable[ScanCode]) return 0; *KeyCode = LlbHwExtendedScanCodeTable[ScanCode]; @@ -194,7 +194,7 @@ LlbKbdTranslateScanCode(IN USHORT ScanCode, /* E1 extended codes */ case 0xE1: - + /* Only recognize one (the SYSREQ/PAUSE sequence) */ if (ScanCode != 0x1D) return 0; LlbKbdLastScanCode = 0x100; @@ -202,7 +202,7 @@ LlbKbdTranslateScanCode(IN USHORT ScanCode, /* PAUSE sequence */ case 0x100: - + /* Make sure it's the one */ if (ScanCode != 0x45) return 0; *KeyCode = E1_PAUSE; @@ -219,22 +219,22 @@ LlbKbdTranslateScanCode(IN USHORT ScanCode, /* Translation success */ return 1; } - + CHAR NTAPI LlbKeyboardGetChar(VOID) { UCHAR ScanCode, KeyCode; - + do { /* Read the scan code and convert it to a virtual key code */ ScanCode = LlbHwKbdRead(); } while (!LlbKbdTranslateScanCode(ScanCode, &KeyCode)); - + /* Is this ASCII? */ if (KeyCode > 96) return ScanCode; - + /* Return the ASCII character */ return LlbHwScanCodeToAsciiTable[KeyCode][0]; } diff --git a/boot/armllb/hw/matrix.c b/boot/armllb/hw/matrix.c index c1275c2e719..e151cd7acb7 100644 --- a/boot/armllb/hw/matrix.c +++ b/boot/armllb/hw/matrix.c @@ -23,18 +23,18 @@ UCHAR KeyMatrix[8][8] = }; /* FUNCTIONS ******************************************************************/ - + CHAR NTAPI LlbKeypadGetChar(VOID) { UCHAR ScanCode; UCHAR Col, Row; - + ScanCode = LlbHwKbdRead(); Col = ScanCode >> 4; Row = ScanCode & 0xF; - + /* Return the ASCII character */ return KeyMatrix[Col][Row]; } diff --git a/boot/armllb/hw/omap3-beagle/hwinfo.c b/boot/armllb/hw/omap3-beagle/hwinfo.c index 8a7d5b54187..be5cef95f40 100644 --- a/boot/armllb/hw/omap3-beagle/hwinfo.c +++ b/boot/armllb/hw/omap3-beagle/hwinfo.c @@ -34,7 +34,7 @@ NTAPI LlbHwGetSerialUart(VOID) { return 3; -} +} VOID NTAPI @@ -70,7 +70,7 @@ LlbHwGetScreenHeight(VOID) { return 720; } - + PVOID NTAPI LlbHwGetFrameBuffer(VOID) @@ -102,28 +102,28 @@ LlbHwBuildMemoryMap(IN PBIOS_MEMORY_MAP MemoryMap) { PBIOS_MEMORY_MAP MapEntry; ULONG Base, Size, FsBase, FsSize; - + /* Parse hardware memory map */ MapEntry = LlbHwOmap3MemoryMap; while (MapEntry->Length) { /* Add this entry */ LlbAllocateMemoryEntry(MapEntry->Type, MapEntry->BaseAddress, MapEntry->Length); - + /* Move to the next one */ MapEntry++; } - + /* Query memory and RAMDISK information */ LlbEnvGetMemoryInformation(&Base, &Size); LlbEnvGetRamDiskInformation(&FsBase, &FsSize); - + /* Add-in the size of the ramdisk */ Base = FsBase + FsSize; - + /* Subtract size of ramdisk and anything else before it */ Size -= Base; - + /* Allocate an entry for it */ LlbAllocateMemoryEntry(BiosMemoryUsable, Base, Size); } diff --git a/boot/armllb/hw/omap3-beagle/hwuart.c b/boot/armllb/hw/omap3-beagle/hwuart.c index 7f8669cf05a..83efc809296 100644 --- a/boot/armllb/hw/omap3-beagle/hwuart.c +++ b/boot/armllb/hw/omap3-beagle/hwuart.c @@ -41,13 +41,13 @@ LlbHwGetUartBase(IN ULONG Port) } else if (Port == 2) { - return 0x4806C000; + return 0x4806C000; } else if (Port == 3) { - return 0x49020000; + return 0x49020000; } - + return 0; } diff --git a/boot/armllb/hw/omap3-zoom2/hwinfo.c b/boot/armllb/hw/omap3-zoom2/hwinfo.c index f88a746308d..30543aa4db9 100644 --- a/boot/armllb/hw/omap3-zoom2/hwinfo.c +++ b/boot/armllb/hw/omap3-zoom2/hwinfo.c @@ -38,14 +38,14 @@ NTAPI LlbHwGetSerialUart(VOID) { return 0; -} +} ULONG LlbHwRtcRead(VOID) { /* Issue the GET_TIME request on the RTC control register */ LlbHwOmap3TwlWrite1(0x4B, 0x29, 0x41); - + /* Read the BCD registers and convert them */ LlbTime.Second = BCD_INT(LlbHwOmap3TwlRead1(0x4B, 0x1C)); LlbTime.Minute = BCD_INT(LlbHwOmap3TwlRead1(0x4B, 0x1D)); diff --git a/boot/armllb/hw/omap3-zoom2/hwinit.c b/boot/armllb/hw/omap3-zoom2/hwinit.c index 37749a68879..4b98f8eb462 100644 --- a/boot/armllb/hw/omap3-zoom2/hwinit.c +++ b/boot/armllb/hw/omap3-zoom2/hwinit.c @@ -61,18 +61,18 @@ LlbHwBuildMemoryMap(IN PBIOS_MEMORY_MAP MemoryMap) { PBIOS_MEMORY_MAP MapEntry; ULONG Base, Size, FsBase, FsSize; - + /* Parse hardware memory map */ MapEntry = LlbHwOmap3MemoryMap; while (MapEntry->Length) { /* Add this entry */ LlbAllocateMemoryEntry(MapEntry->Type, MapEntry->BaseAddress, MapEntry->Length); - + /* Move to the next one */ MapEntry++; } - + /* Query memory and RAMDISK information */ LlbEnvGetMemoryInformation(&Base, &Size); LlbEnvGetRamDiskInformation(&FsBase, &FsSize); @@ -80,10 +80,10 @@ LlbHwBuildMemoryMap(IN PBIOS_MEMORY_MAP MemoryMap) #ifdef _BEAGLE_ /* Add-in the size of the ramdisk */ Base = FsBase + FsSize; - + /* Subtract size of ramdisk and anything else before it */ Size -= Base; - + /* Allocate an entry for it */ LlbAllocateMemoryEntry(BiosMemoryUsable, Base, Size); #endif @@ -95,10 +95,10 @@ LlbHwInitialize(VOID) { /* Setup the UART (NS16550) */ LlbHwOmap3UartInitialize(); - + /* Setup the NEC WVGA LCD Panel and the Display Controller */ LlbHwOmap3LcdInitialize(); - + /* Setup the keyboard */ LlbHwOmap3SynKpdInitialize(); } diff --git a/boot/armllb/hw/omap3-zoom2/hwlcd.c b/boot/armllb/hw/omap3-zoom2/hwlcd.c index 4b7dae217aa..6dcd3a8e441 100644 --- a/boot/armllb/hw/omap3-zoom2/hwlcd.c +++ b/boot/armllb/hw/omap3-zoom2/hwlcd.c @@ -34,7 +34,7 @@ LlbHwOmap3LcdInitialize(VOID) /* Now turn on the functional and interface clocks in the CORE domain */ WRITE_REGISTER_ULONG(0x48004a00, 0x03fffe29); /* Functional clocks */ WRITE_REGISTER_ULONG(0x48004a10, 0x3ffffffb); /* Interface clocks */ - + /* The HS I2C interface is now on, configure it */ WRITE_REGISTER_USHORT(0x48070024, 0x0); /* Disable I2c */ WRITE_REGISTER_USHORT(0x48070030, 0x17); /* Configure clock divider */ @@ -44,7 +44,7 @@ LlbHwOmap3LcdInitialize(VOID) WRITE_REGISTER_USHORT(0x4807000c, 0x636f); /* Select wakeup bits */ WRITE_REGISTER_USHORT(0x48070014, 0x4343); /* Disable DMA */ WRITE_REGISTER_USHORT(0x48070024, 0x8000); /* Enable I2C */ - + /* * Set the VPLL2 to cover all device groups instead of just P3. * This essentially enables the VRRTC to power up the LCD panel. @@ -59,7 +59,7 @@ LlbHwOmap3LcdInitialize(VOID) /* Set GPIO pin 7 signal on the TWL4030 ON. This powers the LCD backlight */ LlbHwOmap3TwlWrite1(0x49, 0xA4, 0x80); - + /* Now go on the McSPI interface and program it on for the channel */ WRITE_REGISTER_ULONG(0x48098010, 0x15); WRITE_REGISTER_ULONG(0x48098020, 0x1); @@ -77,7 +77,7 @@ LlbHwOmap3LcdInitialize(VOID) /* Reset the Display Controller (DISPC) */ WRITE_REGISTER_ULONG(0x48050410, 0x00000005); // DISPC_SYSCONFIG - + /* Set the frame buffer address */ WRITE_REGISTER_ULONG(0x48050480, 0x800A0000); // DISPC_GFX_BA0 @@ -102,7 +102,7 @@ LlbHwGetScreenWidth(VOID) { return 800; } - + ULONG NTAPI LlbHwGetScreenHeight(VOID) diff --git a/boot/armllb/hw/omap3-zoom2/hwsynkp.c b/boot/armllb/hw/omap3-zoom2/hwsynkp.c index 9f0104af4e9..43b2f0ab02a 100644 --- a/boot/armllb/hw/omap3-zoom2/hwsynkp.c +++ b/boot/armllb/hw/omap3-zoom2/hwsynkp.c @@ -19,13 +19,13 @@ LlbHwOmap3SynKpdInitialize(VOID) /* Set GPIO pin 8 signal on the TWL4030 ON. This powers the keypad backlight */ LlbHwOmap3TwlWrite1(0x49, 0xA4, 0xC0); - + /* Set PENDDIS and COR on the the keypad interrupt controller */ LlbHwOmap3TwlWrite1(0x4A, 0xE9, 0x06); /* Only falling edge detection for key pressed */ LlbHwOmap3TwlWrite1(0x4A, 0xE8, 0x01); - + /* Unmask key-pressed events */ LlbHwOmap3TwlWrite1(0x4A, 0xE4, 0x0E); @@ -46,10 +46,10 @@ LlbHwKbdReady(VOID) Value = LlbHwOmap3TwlRead1(0x4A, 0xE3); if (!Value) return FALSE; - + LastState ^= 1; if (!LastState) return FALSE; - + /* Return whether or not an interrupt is pending */ return TRUE; } @@ -59,7 +59,7 @@ NTAPI LlbHwKbdRead(VOID) { UCHAR ActiveCol = 0, ActiveRow = 0, col, coldata, row; - + for (col = 0; col < 8; col++) { coldata = LlbHwOmap3TwlRead1(0x4A, 0xDB + col); @@ -76,7 +76,7 @@ LlbHwKbdRead(VOID) } } } - + return ((ActiveCol << 4) | ActiveRow); } diff --git a/boot/armllb/hw/omap3-zoom2/hwtwl40x.c b/boot/armllb/hw/omap3-zoom2/hwtwl40x.c index 8dbc0c4679f..8a28b0a58f7 100644 --- a/boot/armllb/hw/omap3-zoom2/hwtwl40x.c +++ b/boot/armllb/hw/omap3-zoom2/hwtwl40x.c @@ -16,7 +16,7 @@ LlbHwOmap3TwlRead1(IN UCHAR ChipAddress, IN UCHAR RegisterAddress) { volatile int i = 1000; - + /* Select the register */ LlbHwOmap3TwlWrite(ChipAddress, RegisterAddress, 0, NULL); @@ -43,7 +43,7 @@ LlbHwOmap3TwlWrite(IN UCHAR ChipAddress, /* Enable master transmit mode */ WRITE_REGISTER_USHORT(0x48070024, 0x8601); WRITE_REGISTER_USHORT(0x4807001c, RegisterAddress); - + /* Loop each byte */ for (j = 0; j < Length; j++) { diff --git a/boot/armllb/hw/omap3-zoom2/hwuart.c b/boot/armllb/hw/omap3-zoom2/hwuart.c index 52143dd1f4e..8ba0d268922 100644 --- a/boot/armllb/hw/omap3-zoom2/hwuart.c +++ b/boot/armllb/hw/omap3-zoom2/hwuart.c @@ -55,7 +55,7 @@ LlbHwGetUartBase(IN ULONG Port) { return 0x10000000; } - + return 0; } diff --git a/boot/armllb/hw/serial.c b/boot/armllb/hw/serial.c index 7bb09cf744d..b6730a9913d 100644 --- a/boot/armllb/hw/serial.c +++ b/boot/armllb/hw/serial.c @@ -14,10 +14,10 @@ LlbSerialPutChar(IN CHAR c) { /* Properly support new-lines */ if (c == '\n') LlbSerialPutChar('\r'); - + /* Wait for ready */ while (!LlbHwUartTxReady()); - + /* Send character */ LlbHwUartSendChar(c); } diff --git a/boot/armllb/hw/time.c b/boot/armllb/hw/time.c index ed78ea4607b..a3df7794559 100644 --- a/boot/armllb/hw/time.c +++ b/boot/armllb/hw/time.c @@ -48,7 +48,7 @@ LlbConvertRtcTime(IN ULONG RtcTime, /* Get the year, based on days since 1970 */ Year = 1970 + Days / 365; - + /* Account for leap years which changed the number of days/year */ Days -= (Year - 1970) * 365 + LEAPS_THRU_END_OF(Year - 1) - LEAPS_THRU_END_OF(1970 - 1); if (Days < 0) @@ -64,8 +64,8 @@ LlbConvertRtcTime(IN ULONG RtcTime, /* How many days in this month? */ DaysLeft = Days - LlbDayOfMonth(Month, Year); if (DaysLeft < 0) break; - - /* How many days left total? */ + + /* How many days left total? */ Days = DaysLeft; } diff --git a/boot/armllb/hw/versatile/hwclcd.c b/boot/armllb/hw/versatile/hwclcd.c index 3131880338f..e633e43fe3a 100644 --- a/boot/armllb/hw/versatile/hwclcd.c +++ b/boot/armllb/hw/versatile/hwclcd.c @@ -31,11 +31,11 @@ LlbHwVersaClcdInitialize(VOID) /* Set framebuffer address */ WRITE_REGISTER_ULONG(PL110_LCDUPBASE, (ULONG)LlbHwGetFrameBuffer()); WRITE_REGISTER_ULONG(PL110_LCDLPBASE, (ULONG)LlbHwGetFrameBuffer()); - + /* Initialize timings to 720x400 */ WRITE_REGISTER_ULONG(PL110_LCDTIMING0, LCDTIMING0_PPL(LlbHwGetScreenWidth())); WRITE_REGISTER_ULONG(PL110_LCDTIMING1, LCDTIMING1_LPP(LlbHwGetScreenHeight())); - + /* Enable the TFT/LCD Display */ WRITE_REGISTER_ULONG(PL110_LCDCONTROL, LCDCONTROL_LCDEN | @@ -50,7 +50,7 @@ LlbHwGetScreenWidth(VOID) { return 720; } - + ULONG NTAPI LlbHwGetScreenHeight(VOID) diff --git a/boot/armllb/hw/versatile/hwinfo.c b/boot/armllb/hw/versatile/hwinfo.c index c1dd350f884..1bcdf1d9066 100644 --- a/boot/armllb/hw/versatile/hwinfo.c +++ b/boot/armllb/hw/versatile/hwinfo.c @@ -74,28 +74,28 @@ LlbHwBuildMemoryMap(IN PBIOS_MEMORY_MAP MemoryMap) { PBIOS_MEMORY_MAP MapEntry; ULONG Base, Size, FsBase, FsSize; - + /* Parse hardware memory map */ MapEntry = LlbHwVersaMemoryMap; while (MapEntry->Length) { /* Add this entry */ LlbAllocateMemoryEntry(MapEntry->Type, MapEntry->BaseAddress, MapEntry->Length); - + /* Move to the next one */ MapEntry++; } - + /* Query memory and RAMDISK information */ LlbEnvGetMemoryInformation(&Base, &Size); LlbEnvGetRamDiskInformation(&FsBase, &FsSize); - + /* Add-in the size of the ramdisk */ Base = FsBase + FsSize; - + /* Subtract size of ramdisk and anything else before it */ Size -= Base; - + /* Allocate an entry for it */ LlbAllocateMemoryEntry(BiosMemoryUsable, Base, Size); } diff --git a/boot/armllb/hw/versatile/hwinit.c b/boot/armllb/hw/versatile/hwinit.c index 20e38512dce..1c2831c9542 100644 --- a/boot/armllb/hw/versatile/hwinit.c +++ b/boot/armllb/hw/versatile/hwinit.c @@ -14,10 +14,10 @@ LlbHwInitialize(VOID) { /* Setup the CLCD (PL110) */ LlbHwVersaClcdInitialize(); - + /* Setup the UART (PL011) */ LlbHwVersaUartInitialize(); - + /* Setup the KMI (PL050) */ LlbHwVersaKmiInitialize(); } @@ -32,20 +32,20 @@ LlbHwLoadOsLoaderFromRam(VOID) ULONG Base, RootFs, Size; PCHAR Offset; CHAR CommandLine[64]; - + /* On versatile we load the RAMDISK with initrd */ LlbEnvGetRamDiskInformation(&RootFs, &Size); - + /* The OS Loader is at 0x20000, always */ Base = 0x20000; - + /* Read image offset */ Offset = LlbEnvRead("rdoffset"); - + /* Set parameters for the OS loader */ sprintf(CommandLine, "rdbase=0x%x rdsize=0x%x rdoffset=%s", RootFs, Size, Offset); LlbSetCommandLine(CommandLine); - + /* Return the OS loader base address */ return (POSLOADER_INIT)Base; } diff --git a/boot/armllb/hw/versatile/hwkmi.c b/boot/armllb/hw/versatile/hwkmi.c index 8e08023f551..93469cdf63a 100644 --- a/boot/armllb/hw/versatile/hwkmi.c +++ b/boot/armllb/hw/versatile/hwkmi.c @@ -64,13 +64,13 @@ NTAPI LlbHwVersaKmiSendAndWait(IN ULONG Value) { volatile int i = 1000; - + /* Send the value */ LlbHwKbdSend(Value); - + /* Wait a bit */ while (--i); - + /* Now make sure we received an ACK */ if (LlbHwKbdRead() != PS2_I_ACK) DbgPrint("PS/2 FAILURE!\n"); } @@ -80,7 +80,7 @@ NTAPI LlbHwVersaKmiInitialize(VOID) { UCHAR Divisor; - + /* Setup divisor and enable KMI */ Divisor = (LlbHwGetPClk() / 8000000) - 1; WRITE_REGISTER_UCHAR(PL050_KMICLKDIV, Divisor); @@ -104,13 +104,13 @@ LlbHwKbdSend(IN ULONG Value) { ULONG Status; - /* Wait for ready signal */ + /* Wait for ready signal */ do { /* Read TX buffer state */ Status = READ_REGISTER_UCHAR(PL050_KMISTAT); } while (!(Status & KMISTAT_TXEMPTY)); - + /* Send value */ WRITE_REGISTER_UCHAR(PL050_KMIDATA, Value); } diff --git a/boot/armllb/hw/versatile/hwuart.c b/boot/armllb/hw/versatile/hwuart.c index a3ae386957c..580855491b6 100644 --- a/boot/armllb/hw/versatile/hwuart.c +++ b/boot/armllb/hw/versatile/hwuart.c @@ -53,26 +53,26 @@ LlbHwVersaUartInitialize(VOID) /* Query peripheral rate, hardcore baudrate */ ClockRate = LlbHwGetPClk(); Baudrate = 115200; - + /* Calculate baudrate clock divider and remainder */ Divider = ClockRate / (16 * Baudrate); Remainder = ClockRate % (16 * Baudrate); - + /* Calculate the fractional part */ Fraction = (8 * Remainder / Baudrate) >> 1; Fraction += (8 * Remainder / Baudrate) & 1; - + /* Disable interrupts */ WRITE_REGISTER_ULONG(UART_PL011_CR, 0); - + /* Set the baud rate to 115200 bps */ WRITE_REGISTER_ULONG(UART_PL011_IBRD, Divider); WRITE_REGISTER_ULONG(UART_PL011_FBRD, Fraction); - + /* Set 8 bits for data, 1 stop bit, no parity, FIFO enabled */ WRITE_REGISTER_ULONG(UART_PL011_LCRH, UART_PL011_LCRH_WLEN_8 | UART_PL011_LCRH_FEN); - + /* Clear and enable FIFO */ WRITE_REGISTER_ULONG(UART_PL011_CR, UART_PL011_CR_UARTEN | @@ -106,9 +106,9 @@ LlbHwGetUartBase(IN ULONG Port) } else if (Port == 1) { - return 0x101F2000; + return 0x101F2000; } - + return 0; } diff --git a/boot/armllb/hw/video.c b/boot/armllb/hw/video.c index 2ee37eb9527..5430e144ea9 100644 --- a/boot/armllb/hw/video.c +++ b/boot/armllb/hw/video.c @@ -299,7 +299,7 @@ LlbVideoDrawChar(IN UCHAR c, Buffer[x] = (Line & 1) ? Color : BackColor; Line >>= 1; } - + /* Next line */ Buffer += ScreenWidth; } @@ -312,11 +312,11 @@ LlbVideoClearScreen(IN BOOLEAN OsLoader) ULONG ScreenSize, p; ULONG BackColor; PUSHORT VideoBuffer; - + /* Get frame buffer and reset cursor position */ VideoBuffer = LlbHwGetFrameBuffer(); ScreenCursor = 0; - + /* Backcolor on this machine */ if (OsLoader) { @@ -333,10 +333,10 @@ LlbVideoClearScreen(IN BOOLEAN OsLoader) #endif BackColor = (BackColor << 16) | BackColor; } - + /* Screen size on this machine */ ScreenSize = LlbHwGetScreenWidth() * LlbHwGetScreenHeight(); - + /* Clear the screen with the given color */ for (p = 0; p < ScreenSize * 2; p += 4) { @@ -349,14 +349,14 @@ NTAPI LlbVideoPutChar(IN UCHAR c) { ULONG cx, cy, CharsPerLine, BackColor, ScreenWidth; - + /* Backcolor on this machine */ #ifdef BLUE_SCREEN BackColor = LlbHwVideoCreateColor(14, 0, 82); #else BackColor = LlbHwVideoCreateColor(0, 0, 0); #endif - + /* Amount of characters in a line */ ScreenWidth = LlbHwGetScreenWidth(); CharsPerLine = ScreenWidth / 8; @@ -366,7 +366,7 @@ LlbVideoPutChar(IN UCHAR c) { /* Move a line down */ ScreenCursor += CharsPerLine - (ScreenCursor % CharsPerLine); - + /* FIXME: Scrolling */ } else diff --git a/boot/armllb/inc/fw.h b/boot/armllb/inc/fw.h index 7bc86dd9b71..e22f46decf8 100644 --- a/boot/armllb/inc/fw.h +++ b/boot/armllb/inc/fw.h @@ -69,7 +69,7 @@ VOID LlbFwVideoClearScreen( IN UCHAR Attr ); - + VOID LlbFwVideoPutChar( IN INT c, diff --git a/boot/armllb/inc/hw.h b/boot/armllb/inc/hw.h index 53eb6da1709..0175f614356 100644 --- a/boot/armllb/inc/hw.h +++ b/boot/armllb/inc/hw.h @@ -17,7 +17,7 @@ NTAPI LlbHwGetScreenWidth( VOID ); - + ULONG NTAPI LlbHwGetScreenHeight( @@ -55,7 +55,7 @@ NTAPI LlbHwGetTmr0Base( VOID ); - + ULONG NTAPI LlbHwGetUartBase( @@ -67,7 +67,7 @@ NTAPI LlbHwGetSerialUart( VOID ); - + VOID NTAPI LlbHwUartSendChar( diff --git a/boot/armllb/inc/video.h b/boot/armllb/inc/video.h index c38ce4278f0..2100893a704 100644 --- a/boot/armllb/inc/video.h +++ b/boot/armllb/inc/video.h @@ -26,5 +26,5 @@ LlbVideoDrawChar( IN USHORT Color, IN USHORT BackColor ); - + /* EOF */ diff --git a/boot/armllb/main.c b/boot/armllb/main.c index 83c562252d4..8a1ba469170 100644 --- a/boot/armllb/main.c +++ b/boot/armllb/main.c @@ -21,13 +21,13 @@ LlbStartup(IN ULONG Reserved, /* Either QEMU or U-Boot itself should send this information */ LlbEnvParseArguments(Arguments); - + /* Clean up the screen */ LlbVideoClearScreen(FALSE); /* Print header */ printf("\nReactOS ARM Low-Level Boot Loader [" __DATE__ " "__TIME__ "]\n"); - + /* Boot the OS Loader */ LlbBoot(); while (TRUE); diff --git a/boot/armllb/os/loader.c b/boot/armllb/os/loader.c index addf9dc1ab5..1acc660f301 100644 --- a/boot/armllb/os/loader.c +++ b/boot/armllb/os/loader.c @@ -11,7 +11,7 @@ BIOS_MEMORY_MAP MemoryMap[32]; ARM_BOARD_CONFIGURATION_BLOCK ArmBlock; POSLOADER_INIT LoaderInit; - + VOID NTAPI LlbAllocateMemoryEntry(IN BIOS_MEMORY_TYPE Type, @@ -19,16 +19,16 @@ LlbAllocateMemoryEntry(IN BIOS_MEMORY_TYPE Type, IN ULONG Length) { PBIOS_MEMORY_MAP Entry; - + /* Get the next memory entry */ Entry = MemoryMap; while (Entry->Length) Entry++; - + /* Fill it out */ Entry->Length = Length; Entry->BaseAddress = BaseAddress; Entry->Type = Type; - + /* Block count */ ArmBlock.MemoryMapEntryCount++; } @@ -48,27 +48,27 @@ LlbBuildArmBlock(VOID) /* Write version number */ ArmBlock.MajorVersion = ARM_BOARD_CONFIGURATION_MAJOR_VERSION; ArmBlock.MinorVersion = ARM_BOARD_CONFIGURATION_MINOR_VERSION; - + /* Get arch type */ ArmBlock.BoardType = LlbHwGetBoardType(); - + /* Get peripheral clock rate */ ArmBlock.ClockRate = LlbHwGetPClk(); - + /* Get timer and serial port base addresses */ ArmBlock.TimerRegisterBase = LlbHwGetTmr0Base(); ArmBlock.UartRegisterBase = LlbHwGetUartBase(LlbHwGetSerialUart()); - + /* Debug */ DbgPrint("Machine Identifier: %lx\nPCLK: %d\nTIMER 0: %p\nSERIAL UART: %p\n", ArmBlock.BoardType, ArmBlock.ClockRate, ArmBlock.TimerRegisterBase, ArmBlock.UartRegisterBase); - + /* Now load the memory map */ ArmBlock.MemoryMap = MemoryMap; - + /* Write firmware callbacks */ ArmBlock.ConsPutChar = LlbFwPutChar; ArmBlock.ConsKbHit = LlbFwKbHit; @@ -101,24 +101,24 @@ LlbHwLoadOsLoaderFromRam(VOID) ULONG Base, RootFs, Size; PCHAR Offset; CHAR CommandLine[64]; - + /* On versatile we load the RAMDISK with initrd */ LlbEnvGetRamDiskInformation(&RootFs, &Size); DbgPrint("Root fs: %lx, size: %lx\n", RootFs, Size); - + /* The OS Loader is at 0x20000, always */ Base = 0x20000; - + /* Read image offset */ Offset = LlbEnvRead("rdoffset"); - + /* Set parameters for the OS loader */ snprintf(CommandLine, sizeof(CommandLine), "rdbase=0x%lx rdsize=0x%lx rdoffset=%s", RootFs, Size, Offset); LlbSetCommandLine(CommandLine); - + /* Return the OS loader base address */ return (POSLOADER_INIT)Base; } @@ -128,7 +128,7 @@ NTAPI LlbLoadOsLoader(VOID) { PCHAR BootDevice; - + /* Read the current boot device */ BootDevice = LlbEnvRead("boot-device"); printf("Loading OS Loader from: %s...\n", BootDevice); @@ -150,7 +150,7 @@ LlbLoadOsLoader(VOID) { //todo } - + LoaderInit = (PVOID)0x80000000; #ifdef _ZOOM2_ // need something better than this... LoaderInit = (PVOID)0x81070000; @@ -164,10 +164,10 @@ LlbBoot(VOID) { /* Setup the ARM block */ LlbBuildArmBlock(); - + /* Build the memory map */ LlbBuildMemoryMap(); - + /* Load the OS loader */ LlbLoadOsLoader(); diff --git a/boot/bootdata/bootcdregtest/testboot.bat.sample b/boot/bootdata/bootcdregtest/testboot.bat.sample index 8cef6e53d69..c49eb3a3016 100644 --- a/boot/bootdata/bootcdregtest/testboot.bat.sample +++ b/boot/bootdata/bootcdregtest/testboot.bat.sample @@ -1,5 +1,5 @@ @echo off -ECHO +ECHO ECHO Installing Programs... ECHO @@ -12,10 +12,10 @@ REM start /WAIT dbgprint.exe SYSREG_CHECKPOINT:ABIWORD_INSTALL_COMPLETE REM ECHO REM ECHO Installing OpenOffice REM ECHO -REM START /WAIT openoffice.msi /Q +REM START /WAIT openoffice.msi /Q REM start /WAIT dbgprint.exe SYSREG_CHECKPOINT:OPENOFFICE_INSTALL_COMPLETE -ECHO +ECHO ECHO Informing Sysreg that we are done ECHO START dbgprint.exe SYSREG_CHECKPOINT:THIRDBOOT_COMPLETE diff --git a/boot/bootdata/bootcdregtest/unattend.inf b/boot/bootdata/bootcdregtest/unattend.inf index e325e570bdb..c96371bbed5 100644 --- a/boot/bootdata/bootcdregtest/unattend.inf +++ b/boot/bootdata/bootcdregtest/unattend.inf @@ -12,9 +12,9 @@ DestinationPartitionNumber = 1 InstallationDirectory=ReactOS ; MBRInstallType=0 skips MBR installation -; MBRInstallType=1 install MBR on floppy +; MBRInstallType=1 install MBR on floppy ; MBRInstallType=2 install MBR on hdd -MBRInstallType=2 +MBRInstallType=2 FullName="MyName" ;OrgName="MyOrg" diff --git a/boot/bootdata/hivesft.inf b/boot/bootdata/hivesft.inf index 84d918e3dfa..8506712db0b 100644 --- a/boot/bootdata/hivesft.inf +++ b/boot/bootdata/hivesft.inf @@ -543,7 +543,7 @@ HKLM,"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Print\Printers\Dummy Printer HKLM,"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Print\Printers\Dummy Printer On LPT1","Printer Driver",,"Dummy Printer Driver" HKLM,"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Print\Printers\Dummy Printer On LPT1","Status",0x00010001,0 -; Image File Execution Options (NtGlobalFlag with FLG_SHOW_LDR_SNAPS set for loadlib.exe) +; Image File Execution Options (NtGlobalFlag with FLG_SHOW_LDR_SNAPS set for loadlib.exe) HKLM,"Software\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\loadlib.exe","GlobalFlag",0x00000000,"0x02000000" ;HKLM,"Software\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\loaddll.exe","GlobalFlag",0x00010001,0x00000002 ;HKLM,"Software\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\soffice.exe","GlobalFlag",0x00010001,0x00000002 diff --git a/boot/environ/app/bootmgr/bootmgr.c b/boot/environ/app/bootmgr/bootmgr.c index 458e1437f8e..1e874cd3a8c 100644 --- a/boot/environ/app/bootmgr/bootmgr.c +++ b/boot/environ/app/bootmgr/bootmgr.c @@ -320,7 +320,7 @@ BmFwInitializeBootDirectoryPath ( /* Try to open the boot device */ Status = BlpDeviceOpen(BlpBootDevice, BL_DEVICE_READ_ACCESS, - 0, + 0, &DeviceHandle); if (!NT_SUCCESS(Status)) { @@ -2007,7 +2007,7 @@ Quickie: return Status; } -NTSTATUS +NTSTATUS BmLaunchRecoverySequence ( _In_ PBL_LOADED_APPLICATION_ENTRY BootEntry, _In_ ULONG LaunchCode @@ -2095,7 +2095,7 @@ BmLaunchRecoverySequence ( Quickie: /* Did we have a sequence of entries? */ if (Sequence) - { + { /* Loop through each one */ for (RecoveryIndex = 0; RecoveryIndex < Count; RecoveryIndex++) { @@ -2118,7 +2118,7 @@ Quickie: /* Free it */ BlMmFreeHeap(RecoverySequence); } - + /* Return back to caller */ return Status; } @@ -2840,7 +2840,7 @@ BmMain ( /* Copy the library parameters and add the re-initialization flag */ RtlCopyMemory(&LibraryParameters, - &BlpLibraryParameters, + &BlpLibraryParameters, sizeof(LibraryParameters)); LibraryParameters.LibraryFlags |= (BL_LIBRARY_FLAG_REINITIALIZE_ALL | BL_LIBRARY_FLAG_REINITIALIZE); diff --git a/boot/environ/app/bootmgr/efiemu.c b/boot/environ/app/bootmgr/efiemu.c index d9fc91b7c39..3a4f40c91e8 100644 --- a/boot/environ/app/bootmgr/efiemu.c +++ b/boot/environ/app/bootmgr/efiemu.c @@ -29,7 +29,7 @@ BOOT_APPLICATION_PARAMETER_BLOCK_SCRATCH EfiInitScratch; /*++ * @name AhCreateLoadOptionsList * - * The AhCreateLoadOptionsList routine + * The AhCreateLoadOptionsList routine * * @param CommandLine * UEFI Image Handle for the current loaded application. @@ -68,7 +68,7 @@ AhCreateLoadOptionsList ( /*++ * @name EfiInitpAppendPathString * - * The EfiInitpAppendPathString routine + * The EfiInitpAppendPathString routine * * @param DestinationPath * UEFI Image Handle for the current loaded application. @@ -177,7 +177,7 @@ EfiInitpAppendPathString ( /*++ * @name EfiInitpConvertEfiDevicePath * - * The EfiInitpConvertEfiDevicePath routine + * The EfiInitpConvertEfiDevicePath routine * * @param DevicePath * UEFI Image Handle for the current loaded application. @@ -294,7 +294,7 @@ Quickie: /*++ * @name EfiInitpGetDeviceNode * - * The EfiInitpGetDeviceNode routine + * The EfiInitpGetDeviceNode routine * * @param DevicePath * UEFI Image Handle for the current loaded application. @@ -332,7 +332,7 @@ EfiInitpGetDeviceNode ( /*++ * @name EfiInitTranslateDevicePath * - * The EfiInitTranslateDevicePath routine + * The EfiInitTranslateDevicePath routine * * @param DevicePath * UEFI Image Handle for the current loaded application. @@ -455,7 +455,7 @@ EfiInitTranslateDevicePath ( /* Copy the signature GUID */ RtlCopyMemory(&DeviceEntry->Partition.Gpt.PartitionGuid, - DiskPath->Signature, + DiskPath->Signature, sizeof(GUID)); DeviceEntry->Flags |= 4u; @@ -491,7 +491,7 @@ EfiInitTranslateDevicePath ( /*++ * @name EfiInitpConvertEfiDevicePath * - * The EfiInitpConvertEfiDevicePath routine + * The EfiInitpConvertEfiDevicePath routine * * @param DevicePath * UEFI Image Handle for the current loaded application. @@ -560,7 +560,7 @@ Quickie: /*++ * @name EfiInitpCreateApplicationEntry * - * The EfiInitpCreateApplicationEntry routine + * The EfiInitpCreateApplicationEntry routine * * @param SystemTable * UEFI Image Handle for the current loaded application. diff --git a/boot/environ/app/rosload/rosload.c b/boot/environ/app/rosload/rosload.c index ccbdae9e816..472aa9677c4 100644 --- a/boot/environ/app/rosload/rosload.c +++ b/boot/environ/app/rosload/rosload.c @@ -206,7 +206,7 @@ OslpRemoveInternalApplicationOptions ( Status = STATUS_SUCCESS; /* Remove attempts to disable integrity checks or ELAM driver load */ - BlRemoveBootOption(BlpApplicationEntry.BcdData, + BlRemoveBootOption(BlpApplicationEntry.BcdData, BcdLibraryBoolean_DisableIntegrityChecks); BlRemoveBootOption(BlpApplicationEntry.BcdData, BcdOSLoaderBoolean_DisableElamDrivers); diff --git a/boot/environ/app/rosload/roslogo.c b/boot/environ/app/rosload/roslogo.c index eb432eb2f07..a5a2c01b583 100644 --- a/boot/environ/app/rosload/roslogo.c +++ b/boot/environ/app/rosload/roslogo.c @@ -17,9695 +17,9695 @@ extern EFI_BOOT_SERVICES* EfiBS; extern EFI_SYSTEM_TABLE* EfiST; UCHAR g_Logo[] = { - 0x42, 0x4D, 0x82, 0x5D, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8A, 0x00, 0x00, 0x00, 0x7C, 0x00, - 0x00, 0x00, 0xD7, 0x00, 0x00, 0x00, 0xEF, 0x00, 0x00, 0x00, 0x01, 0x00, 0x18, 0x00, 0x00, 0x00, - 0x00, 0x00, 0xF8, 0x5C, 0x02, 0x00, 0x13, 0x0B, 0x00, 0x00, 0x13, 0x0B, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x00, 0x00, 0xFF, 0x00, 0x00, 0xFF, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x42, 0x47, 0x52, 0x73, 0x80, 0xC2, 0xF5, 0x28, 0x60, 0xB8, - 0x1E, 0x15, 0x20, 0x85, 0xEB, 0x01, 0x40, 0x33, 0x33, 0x13, 0x80, 0x66, 0x66, 0x26, 0x40, 0x66, - 0x66, 0x06, 0xA0, 0x99, 0x99, 0x09, 0x3C, 0x0A, 0xD7, 0x03, 0x24, 0x5C, 0x8F, 0x32, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x63, 0x5F, 0x5A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x20, 0x1E, 0x1B, 0x87, 0x74, 0x59, 0xC4, 0xB7, 0xA2, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x23, 0x21, - 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, - 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0xA9, - 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x20, 0x1E, 0x1B, 0x87, 0x74, 0x59, 0xA9, 0xA4, 0x9A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, - 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x50, 0x31, 0x87, 0x74, - 0x59, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x4F, 0x3B, 0x20, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4F, 0x3B, 0x20, 0x87, 0x74, 0x59, 0xC4, 0xB7, - 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x87, 0x74, 0x59, - 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x2F, 0x2F, 0x2E, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, 0x1D, 0x97, 0x8A, 0x75, - 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, - 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x87, 0x74, 0x59, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0xA9, 0xA4, 0x9A, - 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, - 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x87, 0x74, 0x59, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xA9, 0xA4, 0x9A, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x5F, 0x5A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xA9, 0xA4, - 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x20, 0x1E, - 0x1B, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x87, 0x74, 0x59, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xC4, 0xB7, 0xA2, 0x20, 0x1E, 0x1B, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x87, - 0x74, 0x59, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, - 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x87, 0x74, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, - 0x21, 0x1D, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xA9, 0xA4, 0x9A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x63, 0x5F, 0x5A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, - 0xC9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xA9, 0xA4, 0x9A, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, - 0x5A, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, 0x1D, - 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x20, 0x1E, 0x1B, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xA9, 0xA4, 0x9A, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xC4, 0xB7, 0xA2, 0x63, - 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, - 0x1D, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x2F, 0x2F, 0x2E, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x4F, 0x3B, 0x20, 0x20, 0x1E, 0x1B, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, - 0x5A, 0xA9, 0xA4, 0x9A, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0xC4, 0xB7, 0xA2, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0xD5, 0xC9, 0xB1, 0x87, 0x74, 0x59, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0x97, 0x8A, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, - 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, - 0x1B, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xC4, 0xB7, 0xA2, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, - 0xC9, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x87, 0x74, 0x59, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, - 0xDA, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x50, 0x31, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, - 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, 0x1D, 0x97, - 0x8A, 0x75, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x4F, 0x3B, - 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x97, 0x8A, 0x75, 0xD5, - 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x4F, 0x3B, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x2F, 0x2F, 0x2E, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x66, 0x50, 0x31, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xA9, - 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x63, 0x5F, 0x5A, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x5F, 0x5A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xA9, 0xA4, 0x9A, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x5F, 0x5A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, - 0xE2, 0xDB, 0xCC, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x50, 0x31, 0xD5, 0xC9, - 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x4F, 0x3B, 0x20, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xC4, 0xB7, 0xA2, - 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x4F, 0x3B, 0x20, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x20, 0x1E, 0x1B, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x66, 0x50, 0x31, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xD5, 0xC9, - 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xCD, 0xCC, 0xC9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, 0x1D, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, - 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x2F, 0x2F, 0x2E, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xA9, 0xA4, 0x9A, 0x20, - 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0xA9, 0xA4, 0x9A, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0xD5, 0xC9, 0xB1, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x5F, 0x5A, 0xD5, 0xC9, 0xB1, 0xD5, - 0xC9, 0xB1, 0x97, 0x8A, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x97, 0x8A, 0x75, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x66, - 0x50, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xE8, 0xE3, 0xDA, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x63, 0x5F, 0x5A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xC4, 0xB7, 0xA2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x63, 0x5F, 0x5A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0xA9, 0xA4, 0x9A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x20, 0x1E, 0x1B, 0xA9, 0xA4, 0x9A, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x97, 0x8A, 0x75, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x66, 0x50, 0x31, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4F, 0x3B, - 0x20, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x97, 0x8A, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, - 0x2F, 0x2E, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x2F, 0x2F, 0x2E, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, - 0x2E, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x87, 0x74, 0x59, - 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0xC4, 0xB7, - 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x87, 0x74, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, - 0xC9, 0xB1, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xA9, - 0xA4, 0x9A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x63, 0x5F, 0x5A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xA9, 0xA4, 0x9A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x63, 0x5F, 0x5A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xC4, 0xB7, 0xA2, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x23, 0x21, 0x1D, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x66, 0x50, - 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x50, 0x31, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, - 0xC9, 0xB1, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xE8, 0xE3, - 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC4, - 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x87, 0x74, 0x59, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x87, 0x74, 0x59, 0xD5, 0xC9, 0xB1, - 0xD5, 0xC9, 0xB1, 0x97, 0x8A, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x97, 0x8A, 0x75, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x87, 0x74, 0x59, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, - 0xC9, 0xB1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, - 0xA4, 0x9A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x2F, 0x2F, 0x2E, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xD5, 0xC9, 0xB1, 0xD5, - 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, - 0x2E, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x20, 0x1E, 0x1B, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4F, 0x3B, 0x20, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0xA9, 0xA4, 0x9A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0xA9, 0xA4, 0x9A, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x4F, 0x3B, 0x20, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x97, 0x8A, 0x75, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, - 0xB7, 0xA2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, - 0xE3, 0xDA, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x87, - 0x74, 0x59, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x87, 0x74, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x87, 0x74, 0x59, 0xD5, - 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x87, 0x74, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x50, 0x31, 0xD5, 0xC9, - 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x97, 0x8A, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xC4, 0xB7, 0xA2, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x97, 0x8A, 0x75, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0x4F, 0x3B, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x4F, 0x3B, 0x20, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x97, 0x8A, 0x75, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x66, 0x50, 0x31, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x4F, - 0x3B, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x20, 0x1E, - 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, - 0xC9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC4, - 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0xD5, - 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x23, 0x21, 0x1D, 0x97, 0x8A, 0x75, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x5F, 0x5A, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC4, - 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x63, 0x5F, 0x5A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x4F, 0x3B, 0x20, 0x97, 0x8A, 0x75, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x23, 0x21, 0x1D, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x23, 0x21, 0x1D, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xA9, 0xA4, 0x9A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x63, 0x5F, - 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x87, 0x74, 0x59, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xCD, 0xCC, 0xC9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x63, 0x5F, 0x5A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xD5, - 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xD5, - 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x4F, 0x3B, 0x20, 0x87, 0x74, 0x59, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, - 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xA9, 0xA4, - 0x9A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x20, 0x1E, 0x1B, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, - 0x21, 0x1D, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x2F, 0x2F, 0x2E, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, - 0x2E, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x5F, 0x5A, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, 0x1D, 0x97, 0x8A, 0x75, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0x87, 0x74, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x63, 0x5F, 0x5A, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC4, - 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0xD5, - 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x50, 0x31, 0xD5, 0xC9, 0xB1, - 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, - 0xC9, 0xB1, 0x97, 0x8A, 0x75, 0x4F, 0x3B, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, - 0x9A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xCD, 0xCC, 0xC9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xA9, 0xA4, 0x9A, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0x4F, 0x3B, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x4F, 0x3B, 0x20, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xA9, 0xA4, 0x9A, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, - 0x50, 0x31, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0x97, 0x8A, 0x75, 0x4F, 0x3B, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0x87, 0x74, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x87, 0x74, 0x59, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x97, 0x8A, 0x75, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x5F, 0x5A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC4, 0xB7, 0xA2, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x87, - 0x74, 0x59, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x87, 0x74, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x5F, 0x5A, 0xD5, - 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x87, 0x74, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0xD5, 0xC9, 0xB1, 0x87, 0x74, 0x59, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xC4, 0xB7, 0xA2, - 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, - 0x1B, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, - 0xC9, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, - 0x2F, 0x2E, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x63, 0x5F, - 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4F, 0x3B, 0x20, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0xC4, 0xB7, 0xA2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0xA9, 0xA4, 0x9A, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x66, 0x50, 0x31, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x5F, 0x5A, 0xD5, - 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x4F, 0x3B, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xCD, 0xCC, 0xC9, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, - 0x5A, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, - 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x2F, 0x2F, 0x2E, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x97, 0x8A, 0x75, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xC4, 0xB7, 0xA2, 0x63, - 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, - 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x4F, 0x3B, 0x20, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, 0x1D, 0xD5, 0xC9, 0xB1, 0xD5, - 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0xA9, 0xA4, 0x9A, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x87, 0x74, 0x59, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x97, 0x8A, - 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x2F, 0x2F, - 0x2E, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x5F, 0x5A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x87, 0x74, 0x59, 0xD5, 0xC9, 0xB1, - 0xD5, 0xC9, 0xB1, 0xA9, 0xA4, 0x9A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x97, 0x8A, 0x75, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x97, 0x8A, 0x75, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC4, 0xB7, 0xA2, 0xD5, - 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x5F, 0x5A, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x2F, 0x2F, 0x2E, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xCD, 0xCC, 0xC9, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0x97, 0x8A, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x20, 0x1E, 0x1B, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x20, 0x1E, 0x1B, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x66, 0x50, - 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x50, 0x31, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, - 0xC9, 0xB1, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x23, 0x21, 0x1D, 0x87, 0x74, 0x59, 0xA9, 0xA4, 0x9A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, - 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, 0x1D, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, - 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE2, 0xDB, 0xCC, 0xA9, - 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x20, - 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x87, 0x74, 0x59, - 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0xC4, 0xB7, - 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x87, 0x74, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xD5, 0xC9, 0xB1, 0xD5, - 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0xC4, 0xB7, 0xA2, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x20, 0x1E, 0x1B, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0xA9, 0xA4, 0x9A, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x23, 0x21, 0x1D, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, 0x1D, 0xD5, 0xC9, - 0xB1, 0xD5, 0xC9, 0xB1, 0xA9, 0xA4, 0x9A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, - 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x23, 0x21, 0x1D, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x23, - 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, 0x1D, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0xD5, 0xC9, 0xB1, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x97, 0x8A, 0x75, 0xD5, - 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x66, 0x50, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x87, 0x74, 0x59, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x97, 0x8A, 0x75, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xD5, 0xC9, - 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x66, 0x50, 0x31, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x50, 0x31, 0xC4, 0xB7, 0xA2, - 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x4F, 0x3B, 0x20, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x66, 0x50, 0x31, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, - 0xB1, 0xD5, 0xC9, 0xB1, 0x66, 0x50, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, - 0x1D, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, - 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x97, 0x8A, 0x75, 0x4F, 0x3B, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4F, 0x3B, 0x20, 0xA9, - 0xA4, 0x9A, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x4F, 0x3B, - 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC4, - 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x97, 0x8A, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x97, 0x8A, 0x75, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x2F, 0x2F, 0x2E, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x23, 0x21, 0x1D, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x4F, 0x3B, 0x20, 0x20, 0x1E, 0x1B, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x4F, 0x3B, 0x20, 0x87, 0x74, - 0x59, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0xC4, 0xB7, 0xA2, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x66, 0x50, 0x31, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x4F, 0x3B, 0x20, 0xA9, 0xA4, 0x9A, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, - 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x87, - 0x74, 0x59, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, - 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x87, 0x74, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x63, 0x5F, 0x5A, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x97, 0x8A, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, - 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x87, 0x74, 0x59, - 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, - 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x87, 0x74, 0x59, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x50, 0x31, - 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, - 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x87, 0x74, 0x59, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4F, 0x3B, 0x20, 0x87, 0x74, - 0x59, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x4F, 0x3B, 0x20, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x5F, 0x5A, 0x97, 0x8A, - 0x75, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xA9, 0xA4, 0x9A, 0x87, 0x74, 0x59, - 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, - 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, - 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, - 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, - 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, - 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, - 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x23, 0x21, - 0x1D, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, - 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, - 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x23, 0x21, - 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, - 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, - 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, - 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, - 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, - 0x1B, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, - 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, - 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, - 0xA2, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, - 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x23, 0x21, 0x1D, 0x23, 0x21, 0x1D, 0x20, 0x1E, - 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, - 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, - 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, - 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, - 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, - 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, - 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, - 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, - 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, - 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, - 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x23, 0x21, 0x1D, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, - 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, - 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, - 0x9A, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, - 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, - 0x1D, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, - 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x23, 0x21, 0x1D, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, - 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, - 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, - 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, - 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, - 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, - 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, - 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x87, - 0x74, 0x59, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, - 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0x97, - 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, - 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, - 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, - 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, - 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, - 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, - 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, - 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, - 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, - 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, - 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, - 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, - 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, - 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, - 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, - 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, - 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, - 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, - 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, - 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, - 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, - 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, - 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, - 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, - 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, - 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, - 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, - 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x63, - 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x2F, 0x2F, - 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, - 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x20, 0x1E, - 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x87, 0x74, - 0x59, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, - 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, - 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, - 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x63, 0x5F, - 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, - 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, - 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, - 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, - 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, - 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, - 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x00, 0x00, - 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, - 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, - 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, - 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, - 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, - 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x2F, 0x2F, 0x2E, 0x66, 0x50, 0x31, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, - 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, - 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, - 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, - 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, - 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, - 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, - 0xC9, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE8, - 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, - 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, - 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x2F, 0x2F, 0x2E, 0x4F, 0x3B, 0x20, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, - 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, - 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x23, - 0x21, 0x1D, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, - 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, - 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, - 0xA2, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, - 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, - 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x2F, 0x2F, 0x2E, - 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, - 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, - 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x23, 0x21, - 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, - 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x63, - 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, - 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xC4, - 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, - 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, - 0xF4, 0xE8, 0xE3, 0xDA, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, - 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, - 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, - 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x2F, - 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, - 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, - 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, - 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, - 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, - 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, - 0xDA, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, - 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, - 0xE2, 0xDB, 0xCC, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xCD, - 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x87, 0x74, - 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, - 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, - 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, - 0x9A, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE2, - 0xDB, 0xCC, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x63, - 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x63, 0x5F, - 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, - 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, - 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, - 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0x87, 0x74, 0x59, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xA9, - 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, - 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, - 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, - 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xCD, - 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, - 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, - 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x87, 0x74, 0x59, 0xCD, 0xCC, 0xC9, 0xE2, - 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x4F, 0x3B, 0x20, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, - 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, - 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, - 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, - 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, - 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, - 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x63, 0x5F, - 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, - 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, - 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, - 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, - 0xDA, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, - 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, - 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, - 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, - 0x9A, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x87, 0x74, - 0x59, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x97, - 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, - 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, - 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, - 0x00, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, - 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, - 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, - 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, - 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, - 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, - 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, - 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, - 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, - 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, - 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, - 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, - 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, - 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, - 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, - 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, - 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x2F, - 0x2F, 0x2E, 0x87, 0x74, 0x59, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, - 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, - 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, - 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, - 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, - 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, - 0xF4, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, - 0x87, 0x74, 0x59, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xD5, - 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, - 0xB1, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, - 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, - 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, - 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, - 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, - 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, - 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, - 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, - 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, - 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, - 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xF6, - 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, - 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, - 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, - 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, - 0x9A, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, - 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, - 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, - 0x87, 0x74, 0x59, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xCD, - 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, - 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xCD, 0xCC, 0xC9, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, - 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, - 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, - 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, - 0x9A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, - 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, - 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x00, - 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, - 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, - 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, - 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xC4, 0xB7, - 0xA2, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xD5, - 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, - 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, - 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x87, - 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xE2, 0xDB, - 0xCC, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, - 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x97, 0x8A, 0x75, - 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, - 0xCC, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xA9, 0xA4, 0x9A, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, - 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, - 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, - 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, - 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x20, - 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x23, - 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, - 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, - 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, - 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE2, 0xDB, 0xCC, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, - 0xC9, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, - 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, - 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x2F, 0x2F, - 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, - 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, - 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, - 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, - 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, - 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, - 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, - 0xE2, 0xDB, 0xCC, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, - 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, - 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, - 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, - 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, - 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, - 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, - 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, - 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, - 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, - 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, - 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xD5, - 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, - 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, - 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, - 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, - 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, - 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, - 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xCD, - 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, - 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, - 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, - 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, - 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0x97, - 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, - 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x63, - 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, - 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, - 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, - 0x1E, 0x1B, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, - 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, - 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, - 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, - 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, - 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, - 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xA9, - 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, - 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, - 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, - 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, - 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, - 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x23, 0x21, 0x1D, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, - 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, - 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, - 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, - 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, - 0xA4, 0x9A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, - 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, - 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, - 0x8A, 0x75, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, - 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, - 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, - 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, - 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, - 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xCD, - 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0x87, 0x74, 0x59, 0x63, 0x5F, - 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, - 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, - 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, 0x1D, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, - 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, - 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, - 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, - 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, - 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, - 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xA9, 0xA4, 0x9A, - 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, - 0xC9, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, - 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, - 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x2F, 0x2F, - 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, - 0xA4, 0x9A, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, - 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, - 0x75, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, - 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, - 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, - 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, - 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, - 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, - 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, - 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, - 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, - 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, - 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, - 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, - 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, - 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, - 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, - 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, - 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, - 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, - 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, - 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xE8, 0xE3, - 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, - 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, - 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, - 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, - 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, - 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, - 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, - 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, - 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, - 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xD5, - 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, - 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, - 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, - 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, - 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, - 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, - 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, - 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x20, - 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, - 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, - 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, - 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, - 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, - 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, - 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, - 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, - 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, - 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, - 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, - 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, - 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, - 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, - 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, - 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, - 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, - 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, - 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, - 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, - 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, - 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, - 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, - 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, - 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, - 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, - 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, - 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, - 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, - 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, - 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, - 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, - 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, - 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, - 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xE8, - 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xE2, 0xDB, - 0xCC, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, - 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, - 0xB1, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xC4, 0xB7, 0xA2, 0x87, 0x74, 0x59, - 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, - 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, - 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, - 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x23, - 0x21, 0x1D, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, - 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, - 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, - 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, - 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, - 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, - 0x5A, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, - 0xA9, 0xA4, 0x9A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, - 0xCC, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, - 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, - 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, - 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, - 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, - 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, - 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, - 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, - 0xC9, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, - 0xE8, 0xE3, 0xDA, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, - 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x23, - 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, - 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, - 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, - 0xCC, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xE2, - 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0x97, 0x8A, - 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, - 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x20, 0x1E, - 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, - 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, - 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x20, - 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, - 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, - 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, - 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, - 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, - 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, - 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, - 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, - 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, - 0x9A, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, - 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, - 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, - 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE2, 0xDB, 0xCC, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x97, 0x8A, 0x75, 0x63, 0x5F, - 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xD5, - 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, - 0xF4, 0xE8, 0xE3, 0xDA, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, - 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, - 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, - 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, - 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, - 0xA2, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xA9, - 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, - 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, - 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, - 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xC4, - 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, - 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, - 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, - 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, - 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, - 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, - 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xE2, - 0xDB, 0xCC, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xE2, 0xDB, 0xCC, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, - 0xCC, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, - 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, - 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, - 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, - 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, - 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, - 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, - 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xCD, - 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, - 0x5A, 0x87, 0x74, 0x59, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, - 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, - 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0x97, 0x8A, 0x75, 0x63, - 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x87, 0x74, - 0x59, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, - 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, - 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, - 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, - 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, - 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, - 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0xA9, 0xA4, 0x9A, 0x97, - 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, - 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x63, - 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, - 0xA2, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, - 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x66, 0x50, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, - 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, - 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xCD, - 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, - 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, - 0xDA, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, - 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, - 0xE3, 0xDA, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, - 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xCD, - 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, - 0x5A, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, - 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x20, 0x1E, - 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, - 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, - 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, - 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, - 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, - 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xE2, 0xDB, 0xCC, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, - 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x87, - 0x74, 0x59, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, - 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, - 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, - 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, - 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, - 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, - 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, - 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE2, 0xDB, 0xCC, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0xA9, 0xA4, 0x9A, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, - 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, - 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, - 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, - 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, - 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xC4, 0xB7, 0xA2, - 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xC4, - 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, - 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, - 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x66, 0x50, 0x31, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, - 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, - 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, - 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, - 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, - 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, - 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x97, - 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, - 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, - 0xC9, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, - 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, - 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, - 0x87, 0x74, 0x59, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, - 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, - 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, - 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, - 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, - 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, - 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x63, - 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, - 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, - 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, - 0x9A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, - 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, - 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE2, 0xDB, 0xCC, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, - 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, - 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, - 0x66, 0x50, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, - 0x2E, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, - 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, - 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, - 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, - 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, - 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, - 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, - 0xA2, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, - 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, - 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x87, 0x74, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, - 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, - 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, - 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, - 0x21, 0x1D, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, - 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, - 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, - 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, - 0xE3, 0xDA, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, - 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xCD, - 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0x87, 0x74, 0x59, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, - 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, - 0xA9, 0xA4, 0x9A, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, - 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, - 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, - 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, - 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, - 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, - 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x97, 0x8A, 0x75, - 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, - 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, - 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0xA9, - 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, - 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, - 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x87, 0x74, 0x59, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, - 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, - 0x2E, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, - 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, - 0xA2, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x63, 0x5F, - 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, - 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, - 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, - 0xC9, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, - 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, - 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, - 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, - 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x20, 0x1E, - 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, - 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, - 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, - 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, - 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, - 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, - 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xE8, 0xE3, 0xDA, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, - 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x4F, 0x3B, - 0x20, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, - 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, - 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, - 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x63, - 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, - 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, - 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xA9, 0xA4, - 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xF6, 0xF5, 0xF4, 0xD5, 0xC9, 0xB1, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, - 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x87, 0x74, 0x59, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, - 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, - 0x2E, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xCD, - 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, - 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, - 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, - 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x63, - 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, - 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, - 0xF4, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, - 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, - 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, - 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xD5, - 0xC9, 0xB1, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, - 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, - 0x75, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, - 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, - 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, - 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, - 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xE2, - 0xDB, 0xCC, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, - 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, - 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, - 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, - 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, - 0xCC, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, - 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, - 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, - 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x4F, 0x3B, 0x20, 0x2F, 0x2F, 0x2E, 0x97, - 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, - 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, - 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, - 0x5A, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x87, - 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x63, 0x5F, - 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, - 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, - 0xCC, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, - 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, - 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, - 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, - 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, - 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, - 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, - 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, - 0xE8, 0xE3, 0xDA, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xCD, - 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, - 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, - 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xCD, - 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, - 0x63, 0x5F, 0x5A, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, - 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, - 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, - 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, - 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, - 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, - 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x87, - 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, - 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, - 0x75, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, - 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, - 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, - 0xC9, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, - 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, - 0xC9, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, - 0x5A, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, - 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, - 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, - 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, - 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, - 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, - 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, - 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, - 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, - 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, - 0xCC, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, - 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, - 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xC4, - 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0x4F, 0x3B, 0x20, 0x23, - 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, - 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x66, 0x50, 0x31, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, - 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, - 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, - 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, - 0xB1, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, - 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, - 0x5A, 0x97, 0x8A, 0x75, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, - 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, - 0xDA, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, - 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, - 0x1B, 0x00, 0x00, 0x00, 0x66, 0x50, 0x31, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, - 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, - 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, - 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, - 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, - 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, - 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, - 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, - 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, - 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE2, 0xDB, 0xCC, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0x87, 0x74, 0x59, 0x00, - 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, - 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, - 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, - 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, - 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, - 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, - 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, - 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, - 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x63, 0x5F, 0x5A, - 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, - 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, - 0x1B, 0x20, 0x1E, 0x1B, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, - 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, - 0xCC, 0xE2, 0xDB, 0xCC, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, - 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, - 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, - 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, - 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x63, - 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, - 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xC4, - 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x23, - 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, - 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, - 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, 0x1D, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xA9, - 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, - 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, - 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, - 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, - 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, - 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, - 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, - 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, 0x1D, - 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, - 0x1B, 0x23, 0x21, 0x1D, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xA9, 0xA4, - 0x9A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, - 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, - 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, - 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xD5, 0xC9, - 0xB1, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x4F, - 0x3B, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, - 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, - 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, - 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, - 0xE2, 0xDB, 0xCC, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, - 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, - 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, - 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, - 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x63, 0x5F, 0x5A, - 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, - 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x66, 0x50, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, - 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, - 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x4F, 0x3B, 0x20, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, - 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, - 0x5A, 0x87, 0x74, 0x59, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, - 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, - 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE2, 0xDB, 0xCC, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xE8, 0xE3, - 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, - 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, - 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x63, 0x5F, - 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, - 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, - 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, - 0xE2, 0xDB, 0xCC, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, - 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, - 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, - 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, - 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, - 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, - 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, - 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, - 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, - 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, - 0x5A, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, - 0x9A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x87, - 0x74, 0x59, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, - 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, - 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, - 0x1D, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, - 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, - 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xA9, 0xA4, 0x9A, - 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, - 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, - 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, - 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, - 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, - 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, - 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, - 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, - 0x5A, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, - 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, - 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, - 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, - 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, - 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xE8, 0xE3, 0xDA, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, - 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, - 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, - 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, - 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, - 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, - 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, - 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, - 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, - 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, - 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, - 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, - 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, - 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x63, - 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xD5, 0xC9, 0xB1, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, - 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, - 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, - 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, - 0x5A, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x63, - 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, - 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, - 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, - 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, - 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, - 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, - 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, - 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, - 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xE8, 0xE3, 0xDA, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, - 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, - 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, - 0xA2, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xD5, - 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, - 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, - 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xCD, - 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE2, - 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, - 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, - 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, - 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, - 0xE3, 0xDA, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, - 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, - 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, - 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xE2, - 0xDB, 0xCC, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, - 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, - 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0xA9, - 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, - 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, - 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, - 0xB1, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, - 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, - 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, - 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, - 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, - 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, - 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, - 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, - 0x5A, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, - 0x75, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, - 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, - 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, - 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xC4, - 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, - 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, - 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, - 0x1B, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, - 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xE8, 0xE3, 0xDA, 0xF6, - 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, - 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, - 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, - 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, - 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, - 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, - 0xCC, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, - 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, - 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, - 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, - 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, - 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, - 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, - 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, - 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, - 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x87, - 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, - 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xCD, - 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, - 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, - 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, - 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, - 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, - 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, - 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, - 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, - 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, - 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, - 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, - 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, - 0x1B, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, - 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, - 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, - 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, - 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, - 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, - 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, - 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, - 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, - 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, - 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0x97, - 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x4F, 0x3B, 0x20, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xE8, 0xE3, - 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xA9, - 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, - 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, - 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, - 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xCD, - 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, - 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, - 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, - 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, - 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, - 0x9A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, - 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0x97, 0x8A, - 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, - 0x00, 0x4F, 0x3B, 0x20, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, - 0x63, 0x5F, 0x5A, 0xE2, 0xDB, 0xCC, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xD5, - 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, - 0x75, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, - 0x87, 0x74, 0x59, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, - 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, - 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, - 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, - 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, - 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, - 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, - 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, - 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xCD, - 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE2, 0xDB, 0xCC, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, - 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4F, 0x3B, 0x20, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xA9, - 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, - 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xCD, - 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, - 0xB1, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, - 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, - 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, - 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, - 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xE8, 0xE3, 0xDA, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, - 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, - 0xDA, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, - 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, - 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, - 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, - 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, - 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, - 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, - 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, - 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, - 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, - 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x63, - 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, - 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x97, 0x8A, 0x75, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, - 0xCC, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0x87, 0x74, 0x59, 0x63, - 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, - 0xCC, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, - 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, - 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, - 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, - 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, - 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, - 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, - 0x75, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, - 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, - 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, - 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, - 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, - 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, - 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x97, - 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, - 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, - 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, - 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, - 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, - 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, - 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, - 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xC4, 0xB7, - 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, - 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, - 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, - 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x97, - 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, - 0xB1, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, - 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, - 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, - 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, - 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, - 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, - 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, - 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, - 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, - 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, - 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE2, 0xDB, 0xCC, 0x63, 0x5F, 0x5A, - 0x97, 0x8A, 0x75, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, - 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, - 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x87, 0x74, - 0x59, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, - 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, - 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, - 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, - 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, - 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, - 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, - 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, - 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, - 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, - 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xE2, 0xDB, - 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, - 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, - 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, - 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xF6, 0xF5, 0xF4, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, - 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, - 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, - 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, - 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, - 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, - 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, - 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, - 0xB1, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, - 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x66, 0x50, 0x31, 0x63, 0x5F, - 0x5A, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, - 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, - 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, - 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, - 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, - 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, - 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, - 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, - 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, - 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, - 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, - 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE2, 0xDB, 0xCC, 0x63, 0x5F, 0x5A, 0x87, 0x74, - 0x59, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xE8, - 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, - 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, - 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, - 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, - 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, - 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, - 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, - 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, - 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xE2, 0xDB, 0xCC, 0xE2, - 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, - 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, - 0x5A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, - 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, - 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, - 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, - 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, - 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, - 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, - 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x97, 0x8A, - 0x75, 0x63, 0x5F, 0x5A, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xA9, - 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, - 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xD5, - 0xC9, 0xB1, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, - 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, - 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, - 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, - 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, - 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, - 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, - 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, - 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, - 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, - 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, - 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, - 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE2, 0xDB, 0xCC, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0xE2, - 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, - 0xA2, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, - 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, - 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x63, - 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, - 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, - 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, - 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, - 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, - 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, - 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, - 0xC9, 0xB1, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, - 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, - 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, - 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, - 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, - 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, - 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, - 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, - 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, - 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, - 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, - 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, - 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, - 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x87, 0x74, 0x59, 0x63, - 0x5F, 0x5A, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, - 0x75, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, - 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, - 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, - 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, - 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, - 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, - 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, - 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, - 0x74, 0x59, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, - 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, - 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, - 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, - 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, - 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, - 0xF4, 0xF6, 0xF5, 0xF4, 0xD5, 0xC9, 0xB1, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xD5, 0xC9, 0xB1, - 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, - 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x4F, 0x3B, 0x20, 0x97, 0x8A, 0x75, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, - 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, - 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, - 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, - 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, - 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, - 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x63, - 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, - 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, - 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, - 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, - 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, - 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, - 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, - 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x23, 0x21, - 0x1D, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, - 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x66, 0x50, 0x31, 0x63, - 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, - 0xA2, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, - 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, - 0x59, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, - 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, - 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, - 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x63, 0x5F, - 0x5A, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, - 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x66, - 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, - 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, - 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, - 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, - 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, - 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, - 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, - 0xD5, 0xC9, 0xB1, 0xA9, 0xA4, 0x9A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x23, - 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, - 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, - 0xE2, 0xDB, 0xCC, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, - 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, - 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x87, 0x74, - 0x59, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, - 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, - 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, - 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, - 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x63, 0x5F, - 0x5A, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, - 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, - 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, - 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, - 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, - 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x20, 0x1E, - 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x63, 0x5F, 0x5A, - 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, - 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, 0xE2, - 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xD5, 0xC9, 0xB1, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, - 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, - 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, - 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, - 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, - 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x87, 0x74, - 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, - 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, - 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, - 0x31, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, - 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, - 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, - 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xD5, - 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, - 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE8, 0xE3, - 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x63, 0x5F, 0x5A, - 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x20, - 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x63, 0x5F, - 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, - 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, - 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, - 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, - 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, - 0x59, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, - 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, - 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, - 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, - 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, - 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, - 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, - 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, - 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, - 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, - 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, - 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x4F, 0x3B, 0x20, 0x63, 0x5F, 0x5A, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x87, 0x74, - 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, - 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x63, 0x5F, - 0x5A, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, - 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x63, - 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, - 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, - 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, - 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xA9, - 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, - 0xCC, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, - 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, - 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, - 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, - 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x66, 0x50, 0x31, 0x63, 0x5F, - 0x5A, 0xA9, 0xA4, 0x9A, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, - 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, - 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, - 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, - 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, - 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, - 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, - 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, - 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, - 0xA2, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, - 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x63, 0x5F, 0x5A, 0xA9, - 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, - 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x87, 0x74, 0x59, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, - 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, - 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, - 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, - 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, - 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, - 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, - 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0x97, - 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, - 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE2, 0xDB, 0xCC, - 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, - 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, - 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0xC4, 0xB7, - 0xA2, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, - 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, - 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, - 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, - 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, - 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, - 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xC4, 0xB7, - 0xA2, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, - 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, - 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, - 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, - 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, - 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, - 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, - 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, - 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, - 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, - 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, - 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, - 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x63, 0x5F, - 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, - 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, - 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, - 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, - 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, - 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, - 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, - 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, - 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, - 0x31, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, - 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, - 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, - 0x75, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, - 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, - 0xC9, 0xB1, 0x87, 0x74, 0x59, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, - 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x2F, 0x2F, - 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, - 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, - 0xA4, 0x9A, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, - 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, - 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, - 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, - 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, - 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, - 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, - 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, - 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, - 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, - 0x1D, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, - 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, - 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, - 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, - 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, - 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, - 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, - 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, - 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, - 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, - 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, - 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, - 0xA2, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0x97, 0x8A, 0x75, 0x2F, - 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, - 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, - 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, - 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, - 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, - 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, - 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, - 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, - 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, - 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, - 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, - 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, - 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, - 0xCC, 0xD5, 0xC9, 0xB1, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, - 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x23, - 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, - 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, - 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, - 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x23, - 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, - 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, - 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, - 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, - 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, - 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, - 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, - 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, - 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, - 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, - 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, - 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, - 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0x87, 0x74, 0x59, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, - 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, - 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, - 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, - 0x1E, 0x1B, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, - 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, - 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, - 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, - 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, - 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, - 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, - 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, - 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, - 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, - 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, - 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, - 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, - 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, - 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xC4, 0xB7, - 0xA2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, - 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0x63, - 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x23, 0x21, 0x1D, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, - 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, - 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, - 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, - 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, - 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, - 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, - 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, - 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, - 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, - 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, - 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, - 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xC4, - 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, - 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, - 0x9A, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, - 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, - 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, - 0x5A, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, - 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, - 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, - 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, 0x1D, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, - 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, - 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, - 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, - 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, - 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, - 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, - 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, - 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, - 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, - 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, - 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, - 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0x87, 0x74, 0x59, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, - 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, - 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, - 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, - 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, 0x5F, - 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, - 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, - 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, - 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, - 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, - 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, - 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, - 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, - 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0x97, - 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, - 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, - 0xA2, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, - 0xC4, 0xB7, 0xA2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, - 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x63, - 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, - 0x9A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, - 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, - 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, - 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, - 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, - 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, - 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, - 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, - 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, - 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, - 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x87, 0x74, - 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, - 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, - 0x75, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, - 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE8, - 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x20, - 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, - 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, - 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, - 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, - 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, - 0x9A, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, - 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, - 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, - 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0x97, - 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, - 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0x66, 0x50, 0x31, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, - 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, - 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, - 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, - 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, - 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x63, - 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, - 0x1D, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, - 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, - 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xC4, - 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, - 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, - 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, - 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, - 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, - 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x66, 0x50, - 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, - 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, - 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, - 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, - 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0x87, 0x74, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, - 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, - 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x20, 0x1E, - 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, - 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, - 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, - 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, - 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, - 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, - 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, - 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, - 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, - 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, - 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0x97, 0x8A, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x63, 0x5F, - 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, - 0x21, 0x1D, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, - 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, - 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, - 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, - 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, - 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, - 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, - 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, - 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, - 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, - 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, - 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, - 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, - 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xA9, 0xA4, 0x9A, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x2F, 0x2F, - 0x2E, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, - 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, - 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4F, - 0x3B, 0x20, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, - 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, - 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, - 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, - 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, - 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, - 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, - 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, - 0xDA, 0xC4, 0xB7, 0xA2, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, - 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, - 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, - 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, - 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, - 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, - 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, - 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, - 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, - 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, - 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, - 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, - 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, - 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xC4, 0xB7, 0xA2, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xA9, - 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x23, 0x21, - 0x1D, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, - 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, - 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, - 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, - 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, - 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, - 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, - 0x3B, 0x20, 0x2F, 0x2F, 0x2E, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, - 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, - 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, - 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, - 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, - 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xD5, 0xC9, 0xB1, 0x20, 0x1E, - 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, - 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, - 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, - 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, - 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, - 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, - 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, - 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, - 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, - 0x20, 0x2F, 0x2F, 0x2E, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, - 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, - 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, - 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, - 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, - 0xC4, 0xB7, 0xA2, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, - 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, - 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, - 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, - 0xA2, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, - 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, - 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, - 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, - 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, - 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, - 0x3B, 0x20, 0x2F, 0x2F, 0x2E, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, - 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, - 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, - 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, - 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, - 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xC4, 0xB7, 0xA2, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, - 0x1B, 0x23, 0x21, 0x1D, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, - 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0x87, 0x74, 0x59, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, - 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, - 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, - 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4F, 0x3B, 0x20, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, - 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, - 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, - 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, - 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x2F, 0x2F, - 0x2E, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x2F, 0x2F, 0x2E, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, - 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, - 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, - 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, - 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, - 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xA9, 0xA4, 0x9A, 0x20, 0x1E, 0x1B, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, - 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, - 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x23, - 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, - 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, - 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x4F, 0x3B, 0x20, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, - 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, - 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, - 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x2F, 0x2F, 0x2E, 0x4F, - 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x2F, 0x2F, 0x2E, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, - 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, - 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, - 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, - 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0x97, - 0x8A, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, - 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, - 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, - 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, 0x1D, 0x87, - 0x74, 0x59, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, - 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, - 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, - 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x2F, 0x2F, - 0x2E, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x2F, 0x2F, 0x2E, 0x4F, 0x3B, 0x20, - 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, - 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, - 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, - 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, - 0xCC, 0xE2, 0xDB, 0xCC, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, - 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, - 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, - 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x23, - 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, - 0x23, 0x21, 0x1D, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, - 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, - 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, - 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, - 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x2F, - 0x2F, 0x2E, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, - 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, - 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, - 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, - 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, - 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, - 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, - 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, - 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, - 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, - 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, - 0x20, 0x2F, 0x2F, 0x2E, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, - 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, - 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, - 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xA9, 0xA4, 0x9A, 0x20, 0x1E, - 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x63, - 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, - 0x9A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, - 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x2F, - 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, - 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, - 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x4F, 0x3B, 0x20, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, - 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, - 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, - 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, - 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, - 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, - 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x63, 0x5F, - 0x5A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, - 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, - 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, - 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, - 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xE2, - 0xDB, 0xCC, 0xC4, 0xB7, 0xA2, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, - 0x9A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, - 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, - 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, - 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4F, 0x3B, 0x20, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, - 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, - 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, - 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, - 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, - 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, - 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x2F, - 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, - 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, - 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x66, 0x50, 0x31, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, - 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, - 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, - 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, - 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, - 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, - 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, - 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xA9, 0xA4, 0x9A, 0x23, 0x21, 0x1D, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, - 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, - 0x9A, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, - 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x00, - 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, - 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, - 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, - 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, - 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, - 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, - 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, - 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, - 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x2F, - 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, - 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, - 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x23, 0x21, 0x1D, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, - 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, - 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, - 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, - 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, - 0x4F, 0x3B, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, - 0x2F, 0x2E, 0x87, 0x74, 0x59, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x00, - 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, - 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, - 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, - 0x1D, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, - 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, - 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, - 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, - 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, - 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, - 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, - 0xA4, 0x9A, 0x66, 0x50, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, - 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, - 0x9A, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, - 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, - 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x4F, - 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, - 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, - 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, - 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, - 0xA2, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, - 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, - 0x9A, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, - 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, - 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, - 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, - 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, - 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, - 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, - 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, - 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, - 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x63, - 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, - 0x5A, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, - 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, - 0x1D, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, - 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, - 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, - 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, - 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, - 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, - 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, - 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0x97, - 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, - 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, - 0x1E, 0x1B, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, - 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, - 0x59, 0x66, 0x50, 0x31, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, - 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, - 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0xA9, - 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, - 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, - 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, - 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, - 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, - 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, - 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x4F, 0x3B, 0x20, - 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, - 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, - 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, - 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, - 0xC9, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, - 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, - 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, - 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xA9, - 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, - 0x23, 0x21, 0x1D, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, - 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, - 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, - 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, - 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, - 0x4F, 0x3B, 0x20, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, - 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, - 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, - 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0xC4, - 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, - 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, - 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, - 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, - 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, - 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, - 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, - 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x87, 0x74, 0x59, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, - 0x63, 0x5F, 0x5A, 0xE2, 0xDB, 0xCC, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, - 0xE3, 0xDA, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, - 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, - 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, - 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, - 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, - 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, - 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, - 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE2, 0xDB, 0xCC, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, - 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, - 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, - 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, - 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, - 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, - 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, - 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, - 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, - 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, - 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, - 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, - 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, - 0xC9, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, - 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xE2, 0xDB, 0xCC, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, - 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x63, - 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, - 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, - 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, - 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, - 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, - 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, - 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x63, - 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, - 0xF6, 0xF5, 0xF4, 0xE2, 0xDB, 0xCC, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, - 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, - 0xC9, 0xE2, 0xDB, 0xCC, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xC4, - 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, - 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, - 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, - 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, - 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, - 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x23, - 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xA9, - 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, - 0x5A, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, - 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xF6, - 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, - 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, - 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, - 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, - 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, - 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE2, 0xDB, 0xCC, - 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, - 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, - 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, - 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, - 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, - 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, - 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, - 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, - 0xA4, 0x9A, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, - 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, - 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, - 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, - 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, - 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, - 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, - 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xA9, - 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, - 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, - 0x1B, 0x23, 0x21, 0x1D, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, - 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, - 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, - 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, - 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, - 0x1D, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, - 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, - 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, - 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, - 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, - 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, - 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, - 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, - 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, - 0x5A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, - 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, - 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, - 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, - 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, - 0x1D, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, - 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, - 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, - 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, - 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, - 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, - 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, - 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, - 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, - 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, - 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, - 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, - 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, - 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, - 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, - 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, - 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, - 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x87, 0x74, 0x59, 0xA9, 0xA4, 0x9A, 0xA9, - 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, - 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, - 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, - 0x00, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, - 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, - 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, - 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, - 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, - 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, - 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x23, - 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, - 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, - 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, - 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, - 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, - 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xCD, - 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, - 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, - 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, - 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, - 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, - 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, - 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, - 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, - 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, - 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, - 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, - 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x23, 0x21, 0x1D, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, - 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, - 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, - 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x23, 0x21, 0x1D, 0x20, 0x1E, - 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, - 0x23, 0x21, 0x1D, 0x23, 0x21, 0x1D, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, - 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, - 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, - 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, - 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, - 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, - 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, - 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, - 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, - 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, - 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, + 0x42, 0x4D, 0x82, 0x5D, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8A, 0x00, 0x00, 0x00, 0x7C, 0x00, + 0x00, 0x00, 0xD7, 0x00, 0x00, 0x00, 0xEF, 0x00, 0x00, 0x00, 0x01, 0x00, 0x18, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xF8, 0x5C, 0x02, 0x00, 0x13, 0x0B, 0x00, 0x00, 0x13, 0x0B, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x00, 0x00, 0xFF, 0x00, 0x00, 0xFF, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x42, 0x47, 0x52, 0x73, 0x80, 0xC2, 0xF5, 0x28, 0x60, 0xB8, + 0x1E, 0x15, 0x20, 0x85, 0xEB, 0x01, 0x40, 0x33, 0x33, 0x13, 0x80, 0x66, 0x66, 0x26, 0x40, 0x66, + 0x66, 0x06, 0xA0, 0x99, 0x99, 0x09, 0x3C, 0x0A, 0xD7, 0x03, 0x24, 0x5C, 0x8F, 0x32, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x63, 0x5F, 0x5A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x1E, 0x1B, 0x87, 0x74, 0x59, 0xC4, 0xB7, 0xA2, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x23, 0x21, + 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, + 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0xA9, + 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x20, 0x1E, 0x1B, 0x87, 0x74, 0x59, 0xA9, 0xA4, 0x9A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, + 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x50, 0x31, 0x87, 0x74, + 0x59, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x4F, 0x3B, 0x20, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4F, 0x3B, 0x20, 0x87, 0x74, 0x59, 0xC4, 0xB7, + 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x87, 0x74, 0x59, + 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x2F, 0x2F, 0x2E, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, 0x1D, 0x97, 0x8A, 0x75, + 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, + 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x87, 0x74, 0x59, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0xA9, 0xA4, 0x9A, + 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, + 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x87, 0x74, 0x59, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xA9, 0xA4, 0x9A, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x5F, 0x5A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xA9, 0xA4, + 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x20, 0x1E, + 0x1B, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x87, 0x74, 0x59, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xC4, 0xB7, 0xA2, 0x20, 0x1E, 0x1B, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x87, + 0x74, 0x59, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, + 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x87, 0x74, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, + 0x21, 0x1D, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xA9, 0xA4, 0x9A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x63, 0x5F, 0x5A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, + 0xC9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xA9, 0xA4, 0x9A, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, + 0x5A, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, 0x1D, + 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x20, 0x1E, 0x1B, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xA9, 0xA4, 0x9A, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xC4, 0xB7, 0xA2, 0x63, + 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, + 0x1D, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x2F, 0x2F, 0x2E, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x4F, 0x3B, 0x20, 0x20, 0x1E, 0x1B, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, + 0x5A, 0xA9, 0xA4, 0x9A, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0xC4, 0xB7, 0xA2, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0xD5, 0xC9, 0xB1, 0x87, 0x74, 0x59, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0x97, 0x8A, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, + 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, + 0x1B, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xC4, 0xB7, 0xA2, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, + 0xC9, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x87, 0x74, 0x59, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, + 0xDA, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x50, 0x31, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, + 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, 0x1D, 0x97, + 0x8A, 0x75, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x4F, 0x3B, + 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x97, 0x8A, 0x75, 0xD5, + 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x4F, 0x3B, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x2F, 0x2F, 0x2E, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x66, 0x50, 0x31, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xA9, + 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x63, 0x5F, 0x5A, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x5F, 0x5A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xA9, 0xA4, 0x9A, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x5F, 0x5A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, + 0xE2, 0xDB, 0xCC, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x50, 0x31, 0xD5, 0xC9, + 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x4F, 0x3B, 0x20, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xC4, 0xB7, 0xA2, + 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x4F, 0x3B, 0x20, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x20, 0x1E, 0x1B, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x66, 0x50, 0x31, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xD5, 0xC9, + 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xCD, 0xCC, 0xC9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, 0x1D, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, + 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x2F, 0x2F, 0x2E, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xA9, 0xA4, 0x9A, 0x20, + 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0xA9, 0xA4, 0x9A, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0xD5, 0xC9, 0xB1, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x5F, 0x5A, 0xD5, 0xC9, 0xB1, 0xD5, + 0xC9, 0xB1, 0x97, 0x8A, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x97, 0x8A, 0x75, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x66, + 0x50, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xE8, 0xE3, 0xDA, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x63, 0x5F, 0x5A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xC4, 0xB7, 0xA2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x63, 0x5F, 0x5A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0xA9, 0xA4, 0x9A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x1E, 0x1B, 0xA9, 0xA4, 0x9A, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x97, 0x8A, 0x75, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x66, 0x50, 0x31, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4F, 0x3B, + 0x20, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x97, 0x8A, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, + 0x2F, 0x2E, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x2F, 0x2F, 0x2E, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, + 0x2E, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x87, 0x74, 0x59, + 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0xC4, 0xB7, + 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x87, 0x74, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, + 0xC9, 0xB1, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xA9, + 0xA4, 0x9A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x63, 0x5F, 0x5A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xA9, 0xA4, 0x9A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x63, 0x5F, 0x5A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xC4, 0xB7, 0xA2, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x23, 0x21, 0x1D, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x66, 0x50, + 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x50, 0x31, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, + 0xC9, 0xB1, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xE8, 0xE3, + 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC4, + 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x87, 0x74, 0x59, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x87, 0x74, 0x59, 0xD5, 0xC9, 0xB1, + 0xD5, 0xC9, 0xB1, 0x97, 0x8A, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x97, 0x8A, 0x75, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x87, 0x74, 0x59, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, + 0xC9, 0xB1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, + 0xA4, 0x9A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x2F, 0x2F, 0x2E, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xD5, 0xC9, 0xB1, 0xD5, + 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, + 0x2E, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x20, 0x1E, 0x1B, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4F, 0x3B, 0x20, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0xA9, 0xA4, 0x9A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xA9, 0xA4, 0x9A, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x4F, 0x3B, 0x20, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x97, 0x8A, 0x75, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, + 0xB7, 0xA2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, + 0xE3, 0xDA, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x87, + 0x74, 0x59, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x87, 0x74, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x87, 0x74, 0x59, 0xD5, + 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x87, 0x74, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x50, 0x31, 0xD5, 0xC9, + 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x97, 0x8A, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xC4, 0xB7, 0xA2, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x97, 0x8A, 0x75, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0x4F, 0x3B, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x4F, 0x3B, 0x20, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x97, 0x8A, 0x75, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x66, 0x50, 0x31, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x4F, + 0x3B, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x20, 0x1E, + 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, + 0xC9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC4, + 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0xD5, + 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x23, 0x21, 0x1D, 0x97, 0x8A, 0x75, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x5F, 0x5A, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC4, + 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x63, 0x5F, 0x5A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x4F, 0x3B, 0x20, 0x97, 0x8A, 0x75, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x23, 0x21, 0x1D, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x23, 0x21, 0x1D, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xA9, 0xA4, 0x9A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x63, 0x5F, + 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x87, 0x74, 0x59, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xCD, 0xCC, 0xC9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x63, 0x5F, 0x5A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xD5, + 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xD5, + 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x4F, 0x3B, 0x20, 0x87, 0x74, 0x59, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, + 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xA9, 0xA4, + 0x9A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x20, 0x1E, 0x1B, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, + 0x21, 0x1D, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x2F, 0x2F, 0x2E, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, + 0x2E, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x5F, 0x5A, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, 0x1D, 0x97, 0x8A, 0x75, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0x87, 0x74, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x63, 0x5F, 0x5A, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC4, + 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0xD5, + 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x50, 0x31, 0xD5, 0xC9, 0xB1, + 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, + 0xC9, 0xB1, 0x97, 0x8A, 0x75, 0x4F, 0x3B, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, + 0x9A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xCD, 0xCC, 0xC9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xA9, 0xA4, 0x9A, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0x4F, 0x3B, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x4F, 0x3B, 0x20, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xA9, 0xA4, 0x9A, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, + 0x50, 0x31, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0x97, 0x8A, 0x75, 0x4F, 0x3B, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0x87, 0x74, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x87, 0x74, 0x59, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x97, 0x8A, 0x75, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x5F, 0x5A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC4, 0xB7, 0xA2, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x87, + 0x74, 0x59, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x87, 0x74, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x5F, 0x5A, 0xD5, + 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x87, 0x74, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0xD5, 0xC9, 0xB1, 0x87, 0x74, 0x59, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xC4, 0xB7, 0xA2, + 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, + 0x1B, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, + 0xC9, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, + 0x2F, 0x2E, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x63, 0x5F, + 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4F, 0x3B, 0x20, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0xC4, 0xB7, 0xA2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xA9, 0xA4, 0x9A, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x66, 0x50, 0x31, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x5F, 0x5A, 0xD5, + 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x4F, 0x3B, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xCD, 0xCC, 0xC9, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, + 0x5A, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, + 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x2F, 0x2F, 0x2E, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x97, 0x8A, 0x75, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xC4, 0xB7, 0xA2, 0x63, + 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, + 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x4F, 0x3B, 0x20, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, 0x1D, 0xD5, 0xC9, 0xB1, 0xD5, + 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xA9, 0xA4, 0x9A, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x87, 0x74, 0x59, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x97, 0x8A, + 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x2F, 0x2F, + 0x2E, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x5F, 0x5A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x87, 0x74, 0x59, 0xD5, 0xC9, 0xB1, + 0xD5, 0xC9, 0xB1, 0xA9, 0xA4, 0x9A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x97, 0x8A, 0x75, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x97, 0x8A, 0x75, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC4, 0xB7, 0xA2, 0xD5, + 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x5F, 0x5A, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x2F, 0x2F, 0x2E, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xCD, 0xCC, 0xC9, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0x97, 0x8A, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x20, 0x1E, 0x1B, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x20, 0x1E, 0x1B, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x66, 0x50, + 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x50, 0x31, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, + 0xC9, 0xB1, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x23, 0x21, 0x1D, 0x87, 0x74, 0x59, 0xA9, 0xA4, 0x9A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, + 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, 0x1D, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, + 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE2, 0xDB, 0xCC, 0xA9, + 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x20, + 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x87, 0x74, 0x59, + 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0xC4, 0xB7, + 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x87, 0x74, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xD5, 0xC9, 0xB1, 0xD5, + 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0xC4, 0xB7, 0xA2, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x1E, 0x1B, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xA9, 0xA4, 0x9A, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x23, 0x21, 0x1D, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, 0x1D, 0xD5, 0xC9, + 0xB1, 0xD5, 0xC9, 0xB1, 0xA9, 0xA4, 0x9A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, + 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x23, 0x21, 0x1D, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x23, + 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, 0x1D, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0xD5, 0xC9, 0xB1, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x97, 0x8A, 0x75, 0xD5, + 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x66, 0x50, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x87, 0x74, 0x59, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x97, 0x8A, 0x75, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xD5, 0xC9, + 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x66, 0x50, 0x31, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x50, 0x31, 0xC4, 0xB7, 0xA2, + 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x4F, 0x3B, 0x20, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x66, 0x50, 0x31, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, + 0xB1, 0xD5, 0xC9, 0xB1, 0x66, 0x50, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, + 0x1D, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, + 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x97, 0x8A, 0x75, 0x4F, 0x3B, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4F, 0x3B, 0x20, 0xA9, + 0xA4, 0x9A, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x4F, 0x3B, + 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC4, + 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x97, 0x8A, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x97, 0x8A, 0x75, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x2F, 0x2F, 0x2E, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x23, 0x21, 0x1D, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x4F, 0x3B, 0x20, 0x20, 0x1E, 0x1B, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x4F, 0x3B, 0x20, 0x87, 0x74, + 0x59, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0xC4, 0xB7, 0xA2, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x66, 0x50, 0x31, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x4F, 0x3B, 0x20, 0xA9, 0xA4, 0x9A, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, + 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x87, + 0x74, 0x59, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, + 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x87, 0x74, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x63, 0x5F, 0x5A, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x97, 0x8A, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, + 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x87, 0x74, 0x59, + 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, + 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x87, 0x74, 0x59, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x50, 0x31, + 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, + 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x87, 0x74, 0x59, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4F, 0x3B, 0x20, 0x87, 0x74, + 0x59, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x4F, 0x3B, 0x20, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x5F, 0x5A, 0x97, 0x8A, + 0x75, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xA9, 0xA4, 0x9A, 0x87, 0x74, 0x59, + 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, + 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, + 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, + 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, + 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, + 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, + 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x23, 0x21, + 0x1D, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, + 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, + 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x23, 0x21, + 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, + 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, + 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, + 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, + 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, + 0x1B, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, + 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, + 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, + 0xA2, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, + 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x23, 0x21, 0x1D, 0x23, 0x21, 0x1D, 0x20, 0x1E, + 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, + 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, + 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, + 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, + 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, + 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, + 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, + 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, + 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, + 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, + 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x23, 0x21, 0x1D, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, + 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, + 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, + 0x9A, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, + 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, + 0x1D, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, + 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x23, 0x21, 0x1D, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, + 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, + 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, + 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, + 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, + 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, + 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, + 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x87, + 0x74, 0x59, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, + 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0x97, + 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, + 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, + 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, + 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, + 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, + 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, + 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, + 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, + 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, + 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, + 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, + 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, + 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, + 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, + 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, + 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, + 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, + 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, + 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, + 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, + 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, + 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, + 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, + 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, + 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, + 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, + 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, + 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x63, + 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x2F, 0x2F, + 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, + 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x20, 0x1E, + 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x87, 0x74, + 0x59, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, + 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, + 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, + 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x63, 0x5F, + 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, + 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, + 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, + 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, + 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, + 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, + 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x00, 0x00, + 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, + 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, + 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, + 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, + 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, + 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x2F, 0x2F, 0x2E, 0x66, 0x50, 0x31, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, + 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, + 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, + 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, + 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, + 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, + 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, + 0xC9, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE8, + 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, + 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, + 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x2F, 0x2F, 0x2E, 0x4F, 0x3B, 0x20, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, + 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, + 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x23, + 0x21, 0x1D, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, + 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, + 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, + 0xA2, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, + 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, + 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x2F, 0x2F, 0x2E, + 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, + 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, + 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x23, 0x21, + 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, + 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x63, + 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, + 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xC4, + 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, + 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, + 0xF4, 0xE8, 0xE3, 0xDA, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, + 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, + 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, + 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x2F, + 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, + 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, + 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, + 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, + 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, + 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, + 0xDA, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, + 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, + 0xE2, 0xDB, 0xCC, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xCD, + 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x87, 0x74, + 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, + 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, + 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, + 0x9A, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE2, + 0xDB, 0xCC, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x63, + 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x63, 0x5F, + 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, + 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, + 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, + 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0x87, 0x74, 0x59, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xA9, + 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, + 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, + 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, + 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xCD, + 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, + 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, + 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x87, 0x74, 0x59, 0xCD, 0xCC, 0xC9, 0xE2, + 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x4F, 0x3B, 0x20, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, + 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, + 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, + 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, + 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, + 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, + 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x63, 0x5F, + 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, + 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, + 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, + 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, + 0xDA, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, + 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, + 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, + 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, + 0x9A, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x87, 0x74, + 0x59, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x97, + 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, + 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, + 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, + 0x00, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, + 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, + 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, + 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, + 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, + 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, + 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, + 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, + 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, + 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, + 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, + 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, + 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, + 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, + 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, + 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, + 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x2F, + 0x2F, 0x2E, 0x87, 0x74, 0x59, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, + 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, + 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, + 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, + 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, + 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, + 0xF4, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, + 0x87, 0x74, 0x59, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xD5, + 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, + 0xB1, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, + 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, + 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, + 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, + 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, + 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, + 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, + 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, + 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, + 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, + 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xF6, + 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, + 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, + 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, + 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, + 0x9A, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, + 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, + 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, + 0x87, 0x74, 0x59, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xCD, + 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, + 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xCD, 0xCC, 0xC9, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, + 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, + 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, + 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, + 0x9A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, + 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, + 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x00, + 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, + 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, + 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, + 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xC4, 0xB7, + 0xA2, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xD5, + 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, + 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, + 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x87, + 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xE2, 0xDB, + 0xCC, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, + 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x97, 0x8A, 0x75, + 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, + 0xCC, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xA9, 0xA4, 0x9A, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, + 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, + 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, + 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, + 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x20, + 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x23, + 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, + 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, + 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, + 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE2, 0xDB, 0xCC, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, + 0xC9, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, + 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, + 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x2F, 0x2F, + 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, + 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, + 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, + 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, + 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, + 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, + 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, + 0xE2, 0xDB, 0xCC, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, + 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, + 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, + 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, + 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, + 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, + 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, + 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, + 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, + 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, + 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, + 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xD5, + 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, + 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, + 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, + 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, + 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, + 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, + 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xCD, + 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, + 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, + 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, + 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, + 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0x97, + 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, + 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x63, + 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, + 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, + 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, + 0x1E, 0x1B, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, + 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, + 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, + 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, + 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, + 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, + 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xA9, + 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, + 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, + 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, + 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, + 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, + 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x23, 0x21, 0x1D, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, + 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, + 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, + 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, + 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, + 0xA4, 0x9A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, + 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, + 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, + 0x8A, 0x75, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, + 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, + 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, + 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, + 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, + 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xCD, + 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0x87, 0x74, 0x59, 0x63, 0x5F, + 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, + 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, + 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, 0x1D, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, + 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, + 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, + 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, + 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, + 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, + 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xA9, 0xA4, 0x9A, + 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, + 0xC9, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, + 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, + 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x2F, 0x2F, + 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, + 0xA4, 0x9A, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, + 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, + 0x75, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, + 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, + 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, + 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, + 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, + 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, + 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, + 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, + 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, + 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, + 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, + 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, + 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, + 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, + 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, + 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, + 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, + 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, + 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, + 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xE8, 0xE3, + 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, + 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, + 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, + 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, + 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, + 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, + 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, + 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, + 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, + 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xD5, + 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, + 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, + 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, + 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, + 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, + 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, + 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, + 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x20, + 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, + 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, + 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, + 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, + 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, + 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, + 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, + 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, + 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, + 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, + 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, + 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, + 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, + 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, + 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, + 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, + 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, + 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, + 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, + 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, + 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, + 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, + 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, + 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, + 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, + 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, + 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, + 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, + 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, + 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, + 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, + 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, + 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, + 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, + 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xE8, + 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xE2, 0xDB, + 0xCC, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, + 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, + 0xB1, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xC4, 0xB7, 0xA2, 0x87, 0x74, 0x59, + 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, + 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, + 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, + 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x23, + 0x21, 0x1D, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, + 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, + 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, + 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, + 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, + 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, + 0x5A, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, + 0xA9, 0xA4, 0x9A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, + 0xCC, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, + 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, + 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, + 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, + 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, + 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, + 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, + 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, + 0xC9, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, + 0xE8, 0xE3, 0xDA, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, + 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x23, + 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, + 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, + 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, + 0xCC, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xE2, + 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0x97, 0x8A, + 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, + 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x20, 0x1E, + 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, + 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, + 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x20, + 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, + 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, + 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, + 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, + 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, + 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, + 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, + 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, + 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, + 0x9A, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, + 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, + 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, + 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE2, 0xDB, 0xCC, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x97, 0x8A, 0x75, 0x63, 0x5F, + 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xD5, + 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, + 0xF4, 0xE8, 0xE3, 0xDA, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, + 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, + 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, + 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, + 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, + 0xA2, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xA9, + 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, + 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, + 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, + 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xC4, + 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, + 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, + 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, + 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, + 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, + 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, + 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xE2, + 0xDB, 0xCC, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xE2, 0xDB, 0xCC, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, + 0xCC, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, + 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, + 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, + 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, + 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, + 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, + 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, + 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xCD, + 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, + 0x5A, 0x87, 0x74, 0x59, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, + 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, + 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0x97, 0x8A, 0x75, 0x63, + 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x87, 0x74, + 0x59, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, + 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, + 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, + 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, + 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, + 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, + 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0xA9, 0xA4, 0x9A, 0x97, + 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, + 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x63, + 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, + 0xA2, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, + 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x66, 0x50, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, + 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, + 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xCD, + 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, + 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, + 0xDA, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, + 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, + 0xE3, 0xDA, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, + 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xCD, + 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, + 0x5A, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, + 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x20, 0x1E, + 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, + 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, + 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, + 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, + 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, + 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xE2, 0xDB, 0xCC, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, + 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x87, + 0x74, 0x59, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, + 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, + 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, + 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, + 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, + 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, + 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, + 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE2, 0xDB, 0xCC, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0xA9, 0xA4, 0x9A, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, + 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, + 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, + 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, + 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, + 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xC4, 0xB7, 0xA2, + 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xC4, + 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, + 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, + 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x66, 0x50, 0x31, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, + 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, + 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, + 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, + 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, + 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, + 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x97, + 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, + 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, + 0xC9, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, + 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, + 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, + 0x87, 0x74, 0x59, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, + 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, + 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, + 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, + 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, + 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, + 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x63, + 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, + 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, + 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, + 0x9A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, + 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, + 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE2, 0xDB, 0xCC, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, + 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, + 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, + 0x66, 0x50, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, + 0x2E, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, + 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, + 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, + 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, + 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, + 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, + 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, + 0xA2, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, + 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, + 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x87, 0x74, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, + 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, + 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, + 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, + 0x21, 0x1D, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, + 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, + 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, + 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, + 0xE3, 0xDA, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, + 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xCD, + 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0x87, 0x74, 0x59, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, + 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, + 0xA9, 0xA4, 0x9A, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, + 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, + 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, + 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, + 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, + 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, + 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x97, 0x8A, 0x75, + 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, + 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, + 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0xA9, + 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, + 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, + 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x87, 0x74, 0x59, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, + 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, + 0x2E, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, + 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, + 0xA2, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x63, 0x5F, + 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, + 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, + 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, + 0xC9, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, + 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, + 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, + 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, + 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x20, 0x1E, + 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, + 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, + 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, + 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, + 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, + 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, + 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xE8, 0xE3, 0xDA, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, + 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x4F, 0x3B, + 0x20, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, + 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, + 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, + 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x63, + 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, + 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, + 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xA9, 0xA4, + 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xF6, 0xF5, 0xF4, 0xD5, 0xC9, 0xB1, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, + 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x87, 0x74, 0x59, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, + 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, + 0x2E, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xCD, + 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, + 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, + 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, + 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x63, + 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, + 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, + 0xF4, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, + 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, + 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, + 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xD5, + 0xC9, 0xB1, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, + 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, + 0x75, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, + 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, + 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, + 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, + 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xE2, + 0xDB, 0xCC, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, + 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, + 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, + 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, + 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, + 0xCC, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, + 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, + 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, + 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x4F, 0x3B, 0x20, 0x2F, 0x2F, 0x2E, 0x97, + 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, + 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, + 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, + 0x5A, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x87, + 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x63, 0x5F, + 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, + 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, + 0xCC, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, + 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, + 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, + 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, + 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, + 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, + 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, + 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, + 0xE8, 0xE3, 0xDA, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xCD, + 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, + 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, + 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xCD, + 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, + 0x63, 0x5F, 0x5A, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, + 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, + 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, + 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, + 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, + 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, + 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x87, + 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, + 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, + 0x75, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, + 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, + 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, + 0xC9, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, + 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, + 0xC9, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, + 0x5A, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, + 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, + 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, + 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, + 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, + 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, + 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, + 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, + 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, + 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, + 0xCC, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, + 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, + 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xC4, + 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0x4F, 0x3B, 0x20, 0x23, + 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, + 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x66, 0x50, 0x31, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, + 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, + 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, + 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, + 0xB1, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, + 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, + 0x5A, 0x97, 0x8A, 0x75, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, + 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, + 0xDA, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, + 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, + 0x1B, 0x00, 0x00, 0x00, 0x66, 0x50, 0x31, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, + 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, + 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, + 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, + 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, + 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, + 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, + 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, + 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, + 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE2, 0xDB, 0xCC, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0x87, 0x74, 0x59, 0x00, + 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, + 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, + 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, + 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, + 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, + 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, + 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, + 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, + 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x63, 0x5F, 0x5A, + 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, + 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, + 0x1B, 0x20, 0x1E, 0x1B, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, + 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, + 0xCC, 0xE2, 0xDB, 0xCC, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, + 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, + 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, + 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, + 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x63, + 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, + 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xC4, + 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x23, + 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, + 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, + 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, 0x1D, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xA9, + 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, + 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, + 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, + 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, + 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, + 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, + 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, + 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, 0x1D, + 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, + 0x1B, 0x23, 0x21, 0x1D, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xA9, 0xA4, + 0x9A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, + 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, + 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, + 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xD5, 0xC9, + 0xB1, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x4F, + 0x3B, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, + 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, + 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, + 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, + 0xE2, 0xDB, 0xCC, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, + 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, + 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, + 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, + 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x63, 0x5F, 0x5A, + 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, + 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x66, 0x50, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, + 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, + 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x4F, 0x3B, 0x20, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, + 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, + 0x5A, 0x87, 0x74, 0x59, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, + 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, + 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE2, 0xDB, 0xCC, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xE8, 0xE3, + 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, + 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, + 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x63, 0x5F, + 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, + 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, + 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, + 0xE2, 0xDB, 0xCC, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, + 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, + 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, + 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, + 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, + 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, + 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, + 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, + 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, + 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, + 0x5A, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, + 0x9A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x87, + 0x74, 0x59, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, + 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, + 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, + 0x1D, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, + 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, + 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xA9, 0xA4, 0x9A, + 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, + 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, + 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, + 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, + 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, + 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, + 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, + 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, + 0x5A, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, + 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, + 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, + 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, + 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, + 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xE8, 0xE3, 0xDA, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, + 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, + 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, + 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, + 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, + 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, + 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, + 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, + 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, + 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, + 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, + 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, + 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, + 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x63, + 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xD5, 0xC9, 0xB1, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, + 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, + 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, + 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, + 0x5A, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x63, + 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, + 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, + 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, + 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, + 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, + 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, + 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, + 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, + 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xE8, 0xE3, 0xDA, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, + 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, + 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, + 0xA2, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xD5, + 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, + 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, + 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xCD, + 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE2, + 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, + 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, + 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, + 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, + 0xE3, 0xDA, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, + 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, + 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, + 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xE2, + 0xDB, 0xCC, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, + 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, + 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0xA9, + 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, + 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, + 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, + 0xB1, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, + 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, + 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, + 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, + 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, + 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, + 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, + 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, + 0x5A, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, + 0x75, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, + 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, + 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, + 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xC4, + 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, + 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, + 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, + 0x1B, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, + 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xE8, 0xE3, 0xDA, 0xF6, + 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, + 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, + 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, + 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, + 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, + 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, + 0xCC, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, + 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, + 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, + 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, + 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, + 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, + 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, + 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, + 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, + 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x87, + 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, + 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xCD, + 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, + 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, + 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, + 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, + 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, + 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, + 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, + 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, + 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, + 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, + 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, + 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, + 0x1B, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, + 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, + 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, + 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, + 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, + 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, + 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, + 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, + 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, + 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, + 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0x97, + 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x4F, 0x3B, 0x20, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xE8, 0xE3, + 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xA9, + 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, + 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, + 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, + 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xCD, + 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, + 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, + 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, + 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, + 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, + 0x9A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, + 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0x97, 0x8A, + 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, + 0x00, 0x4F, 0x3B, 0x20, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, + 0x63, 0x5F, 0x5A, 0xE2, 0xDB, 0xCC, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xD5, + 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, + 0x75, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, + 0x87, 0x74, 0x59, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, + 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, + 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, + 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, + 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, + 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, + 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, + 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, + 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xCD, + 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE2, 0xDB, 0xCC, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, + 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4F, 0x3B, 0x20, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xA9, + 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, + 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xCD, + 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, + 0xB1, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, + 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, + 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, + 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, + 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xE8, 0xE3, 0xDA, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, + 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, + 0xDA, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, + 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, + 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, + 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, + 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, + 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, + 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, + 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, + 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, + 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, + 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x63, + 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, + 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x97, 0x8A, 0x75, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, + 0xCC, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0x87, 0x74, 0x59, 0x63, + 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, + 0xCC, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, + 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, + 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, + 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, + 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, + 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, + 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, + 0x75, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, + 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, + 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, + 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, + 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, + 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, + 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0xA9, 0xA4, 0x9A, 0xF6, 0xF5, 0xF4, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x97, + 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, + 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, + 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, + 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, + 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, + 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, + 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, + 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xC4, 0xB7, + 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, + 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, + 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, + 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x97, + 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, + 0xB1, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, + 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, + 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, + 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, + 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, + 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, + 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, + 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, + 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, + 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, + 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE2, 0xDB, 0xCC, 0x63, 0x5F, 0x5A, + 0x97, 0x8A, 0x75, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, + 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, + 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x87, 0x74, + 0x59, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, + 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, + 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, + 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, + 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, + 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, + 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, + 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, + 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, + 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, + 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xE2, 0xDB, + 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, + 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, + 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, + 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xF6, 0xF5, 0xF4, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, + 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, + 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, + 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, + 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, + 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, + 0xF4, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, + 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, + 0xB1, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, + 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x66, 0x50, 0x31, 0x63, 0x5F, + 0x5A, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, + 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, + 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, + 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, + 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, + 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, + 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, + 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, + 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, + 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, + 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, + 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE2, 0xDB, 0xCC, 0x63, 0x5F, 0x5A, 0x87, 0x74, + 0x59, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xE8, + 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, + 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, + 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, + 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, + 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, + 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, + 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, + 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, + 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xE2, 0xDB, 0xCC, 0xE2, + 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, + 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, + 0x5A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, + 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, + 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, + 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, + 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, + 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, + 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, + 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x97, 0x8A, + 0x75, 0x63, 0x5F, 0x5A, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xA9, + 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, + 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xD5, + 0xC9, 0xB1, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, + 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, + 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, + 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, + 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, + 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, + 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, + 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, + 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, + 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, + 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, + 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, + 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE2, 0xDB, 0xCC, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0xE2, + 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, + 0xA2, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, + 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, + 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x63, + 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, + 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, + 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, + 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, + 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, + 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, + 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, + 0xC9, 0xB1, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xD5, 0xC9, 0xB1, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, + 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, + 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, + 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, + 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, + 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, + 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, + 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, + 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, + 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, + 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, + 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, + 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, + 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x87, 0x74, 0x59, 0x63, + 0x5F, 0x5A, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, + 0x75, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, + 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, + 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, + 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, + 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, + 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, + 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, + 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, + 0x74, 0x59, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, + 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, + 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, + 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, + 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, + 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, + 0xF4, 0xF6, 0xF5, 0xF4, 0xD5, 0xC9, 0xB1, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xD5, 0xC9, 0xB1, + 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, + 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x4F, 0x3B, 0x20, 0x97, 0x8A, 0x75, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, + 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, + 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, + 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, + 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, + 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, + 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x63, + 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, + 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, + 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, + 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, + 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, + 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, + 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0x97, + 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x23, 0x21, + 0x1D, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, + 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x66, 0x50, 0x31, 0x63, + 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, + 0xA2, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, + 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, + 0x59, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, + 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, + 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, + 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x63, 0x5F, + 0x5A, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, + 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x66, + 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, + 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, + 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, + 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, + 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, + 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, + 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, + 0xD5, 0xC9, 0xB1, 0xA9, 0xA4, 0x9A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x23, + 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, + 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, + 0xE2, 0xDB, 0xCC, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, + 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, + 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x87, 0x74, + 0x59, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, + 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, + 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, + 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, + 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x63, 0x5F, + 0x5A, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, + 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, + 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, + 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, + 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, + 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x20, 0x1E, + 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x63, 0x5F, 0x5A, + 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, + 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, 0xE2, + 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xD5, 0xC9, 0xB1, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, + 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, + 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, + 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, + 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, + 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x87, 0x74, + 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, + 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, + 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, + 0x31, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, + 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xCD, 0xCC, + 0xC9, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, + 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xD5, + 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, + 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE8, 0xE3, + 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0x63, 0x5F, 0x5A, + 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x20, + 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x63, 0x5F, + 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, + 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, + 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, + 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, + 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, + 0x59, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, + 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, + 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, + 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, + 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, + 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, + 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, + 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, + 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, + 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, + 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, + 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x4F, 0x3B, 0x20, 0x63, 0x5F, 0x5A, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x87, 0x74, + 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, + 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x63, 0x5F, + 0x5A, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, + 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x63, + 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, + 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, + 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, + 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xA9, + 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, + 0xCC, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, + 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, + 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, + 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, + 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x66, 0x50, 0x31, 0x63, 0x5F, + 0x5A, 0xA9, 0xA4, 0x9A, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, + 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, + 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, + 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, + 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, + 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, + 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, + 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, + 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, + 0xA2, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, + 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x63, 0x5F, 0x5A, 0xA9, + 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, + 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x87, 0x74, 0x59, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, + 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, + 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, + 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, + 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, + 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, + 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, + 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0x97, + 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, + 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE2, 0xDB, 0xCC, + 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, + 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, + 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0xC4, 0xB7, + 0xA2, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, + 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, + 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, + 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, + 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, + 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, + 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xC4, 0xB7, + 0xA2, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, + 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, + 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, + 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, + 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, + 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, + 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, + 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, + 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, + 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, + 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, + 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, + 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x63, 0x5F, + 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, + 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, + 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, + 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, + 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, + 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, + 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, + 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, + 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, + 0x31, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, + 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, + 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, + 0x75, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, + 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, + 0xC9, 0xB1, 0x87, 0x74, 0x59, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, + 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x2F, 0x2F, + 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, + 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, + 0xA4, 0x9A, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, + 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, + 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, + 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, + 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, + 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, + 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, + 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, + 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, + 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, + 0x1D, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, + 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, + 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, + 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, + 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, + 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, + 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, + 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, + 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, + 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, + 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, + 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, + 0xA2, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0x97, 0x8A, 0x75, 0x2F, + 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, + 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, + 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, + 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, + 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, + 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, + 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, + 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, + 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, + 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, + 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, + 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, + 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, + 0xCC, 0xD5, 0xC9, 0xB1, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, + 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x23, + 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, + 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, + 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, + 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x23, + 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, + 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, + 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, + 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, + 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, + 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, + 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, + 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, + 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, + 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, + 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, + 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, + 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0x87, 0x74, 0x59, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, + 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, + 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, + 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, + 0x1E, 0x1B, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, + 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, + 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, + 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, + 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, + 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, + 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, + 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, + 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, + 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, + 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, + 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, + 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, + 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, + 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xC4, 0xB7, + 0xA2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, + 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0x63, + 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x23, 0x21, 0x1D, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, + 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, + 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, + 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, + 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, + 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, + 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, + 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, + 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, + 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, + 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, + 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, + 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xC4, + 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, + 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, + 0x9A, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, + 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, + 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, + 0x5A, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, + 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, + 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, + 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, 0x1D, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, + 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, + 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, + 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, + 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, + 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, + 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, + 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, + 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, + 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, + 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, + 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, + 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0x87, 0x74, 0x59, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, + 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, + 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, + 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, + 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, 0x5F, + 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, + 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, + 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, + 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, + 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, + 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, + 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, + 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, + 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0x97, + 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, + 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, + 0xA2, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, + 0xC4, 0xB7, 0xA2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, + 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x63, + 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, + 0x9A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, + 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, + 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, + 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, + 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, + 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, + 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, + 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, + 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, + 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, + 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x66, 0x50, 0x31, 0x87, 0x74, + 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, + 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, + 0x75, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, + 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE8, + 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x20, + 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, + 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, + 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, + 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, + 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, + 0x9A, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, + 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, + 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, + 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0x97, + 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, + 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0x66, 0x50, 0x31, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, + 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, + 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, + 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, + 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, + 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x63, + 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, + 0x1D, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, + 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, + 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xC4, + 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, + 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, + 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, + 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, + 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, + 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x66, 0x50, + 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, + 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, + 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, + 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, + 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0x87, 0x74, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, + 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, + 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x20, 0x1E, + 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, + 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, + 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, + 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, + 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, + 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, + 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, + 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, + 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, + 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, + 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0x97, 0x8A, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x63, 0x5F, + 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, + 0x21, 0x1D, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, + 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, + 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, + 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, + 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, + 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, + 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, + 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, + 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, + 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, + 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, + 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, + 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, + 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE2, 0xDB, 0xCC, 0xA9, 0xA4, 0x9A, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x2F, 0x2F, + 0x2E, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, + 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, + 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4F, + 0x3B, 0x20, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, + 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, + 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x63, 0x5F, 0x5A, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, + 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, + 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, + 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, + 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, + 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, + 0xDA, 0xC4, 0xB7, 0xA2, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, + 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, + 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, + 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, + 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, + 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, + 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, + 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, + 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, + 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, + 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, + 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, + 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, + 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xC4, 0xB7, 0xA2, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xA9, + 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x23, 0x21, + 0x1D, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, + 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, + 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, + 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, + 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, + 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, + 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, + 0x3B, 0x20, 0x2F, 0x2F, 0x2E, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, + 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, + 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, + 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, + 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, + 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xD5, 0xC9, 0xB1, 0x20, 0x1E, + 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, + 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, + 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, + 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, + 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, + 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, + 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, + 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, + 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, + 0x20, 0x2F, 0x2F, 0x2E, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, + 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, + 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, + 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, + 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, + 0xC4, 0xB7, 0xA2, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, + 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, + 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, + 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, + 0xA2, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, + 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, + 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, + 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, + 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, + 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, + 0x3B, 0x20, 0x2F, 0x2F, 0x2E, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, + 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, + 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, + 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, + 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, + 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xC4, 0xB7, 0xA2, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, + 0x1B, 0x23, 0x21, 0x1D, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, + 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0x87, 0x74, 0x59, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, + 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, + 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, + 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4F, 0x3B, 0x20, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, + 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, + 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, + 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, + 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x2F, 0x2F, + 0x2E, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x2F, 0x2F, 0x2E, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, + 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, + 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, + 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, + 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, + 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xA9, 0xA4, 0x9A, 0x20, 0x1E, 0x1B, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, + 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, + 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x23, + 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, + 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, + 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x4F, 0x3B, 0x20, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, + 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, + 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, + 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x2F, 0x2F, 0x2E, 0x4F, + 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x2F, 0x2F, 0x2E, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, + 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, + 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, + 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, + 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0x97, + 0x8A, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, + 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, + 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, + 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, 0x1D, 0x87, + 0x74, 0x59, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, + 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, + 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, + 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x2F, 0x2F, + 0x2E, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x2F, 0x2F, 0x2E, 0x4F, 0x3B, 0x20, + 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, + 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, + 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, + 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, + 0xCC, 0xE2, 0xDB, 0xCC, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, + 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0x63, 0x5F, + 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, + 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x23, + 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, + 0x23, 0x21, 0x1D, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, + 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, + 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, + 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, + 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x2F, + 0x2F, 0x2E, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, + 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, + 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, + 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, + 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, + 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, + 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, + 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, + 0xE2, 0xDB, 0xCC, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, + 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, + 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, + 0x20, 0x2F, 0x2F, 0x2E, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, + 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, + 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, + 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xA9, 0xA4, 0x9A, 0x20, 0x1E, + 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x63, + 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, + 0x9A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, + 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x2F, + 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, + 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, + 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x4F, 0x3B, 0x20, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, + 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, + 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, + 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, + 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xE2, 0xDB, 0xCC, + 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, + 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x63, 0x5F, + 0x5A, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xC4, 0xB7, 0xA2, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, + 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, + 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, + 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, + 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xE2, + 0xDB, 0xCC, 0xC4, 0xB7, 0xA2, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, + 0x9A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, + 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, + 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, + 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4F, 0x3B, 0x20, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, + 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, + 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, + 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, + 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, + 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, + 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x2F, + 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, + 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, + 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x66, 0x50, 0x31, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, 0x74, + 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, + 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, + 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, + 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, + 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, + 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, + 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xD5, 0xC9, 0xB1, 0xA9, 0xA4, 0x9A, 0x23, 0x21, 0x1D, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, + 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, + 0x9A, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, + 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x00, + 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, + 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, + 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, + 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, + 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, + 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, + 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, + 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xD5, 0xC9, 0xB1, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, + 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x2F, + 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, + 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, + 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x23, 0x21, 0x1D, 0x63, 0x5F, 0x5A, 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, + 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, + 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, + 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, + 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, + 0x4F, 0x3B, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, + 0x2F, 0x2E, 0x87, 0x74, 0x59, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x00, + 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, + 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, + 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x21, + 0x1D, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, + 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, + 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, + 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, + 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, + 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, + 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, + 0xA4, 0x9A, 0x66, 0x50, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, + 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, + 0x9A, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, + 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, + 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x4F, + 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, + 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, + 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, + 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, + 0xA2, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, + 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, + 0x9A, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, + 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, + 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, + 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x4F, 0x3B, + 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, + 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, + 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, + 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, + 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, + 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x63, + 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, + 0x5A, 0x2F, 0x2F, 0x2E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, + 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, + 0x1D, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, + 0x20, 0x66, 0x50, 0x31, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, + 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, + 0x87, 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, + 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, + 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, + 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x2F, 0x2F, 0x2E, + 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0x97, + 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, + 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, + 0x1E, 0x1B, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, + 0x74, 0x59, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x87, 0x74, + 0x59, 0x66, 0x50, 0x31, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, + 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, + 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0xA9, + 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, + 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, + 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, + 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, + 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, + 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x4F, 0x3B, 0x20, 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x87, 0x74, 0x59, 0x66, 0x50, 0x31, 0x87, 0x74, + 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x87, 0x74, 0x59, 0x63, 0x5F, 0x5A, 0x4F, 0x3B, 0x20, + 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, + 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, + 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, + 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, + 0xC9, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, + 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0x2F, + 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, 0x5A, + 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xA9, + 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, + 0x23, 0x21, 0x1D, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, + 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, + 0x4F, 0x3B, 0x20, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, + 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, + 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, 0x66, 0x50, 0x31, + 0x4F, 0x3B, 0x20, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, + 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, + 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, + 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0xC4, + 0xB7, 0xA2, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, + 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, + 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, + 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, + 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, + 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, + 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, + 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x87, 0x74, 0x59, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, + 0x63, 0x5F, 0x5A, 0xE2, 0xDB, 0xCC, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, + 0xE3, 0xDA, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, + 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, + 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, + 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, + 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, + 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, + 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, + 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE2, 0xDB, 0xCC, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, + 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, + 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, + 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, + 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, + 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, + 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, + 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, + 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, + 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, + 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, + 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, + 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xCD, 0xCC, + 0xC9, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, + 0x2F, 0x2F, 0x2E, 0xA9, 0xA4, 0x9A, 0xE2, 0xDB, 0xCC, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE2, 0xDB, 0xCC, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, + 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x63, + 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, + 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, + 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, + 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, + 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, + 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, + 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x63, + 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, + 0xF6, 0xF5, 0xF4, 0xE2, 0xDB, 0xCC, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, + 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xCD, 0xCC, + 0xC9, 0xE2, 0xDB, 0xCC, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xC4, + 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, + 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, + 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, + 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, + 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, + 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x23, + 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xA9, + 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0x63, 0x5F, + 0x5A, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, + 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xE2, 0xDB, 0xCC, 0xF6, + 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, + 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, + 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, + 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, + 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, + 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xF6, 0xF5, 0xF4, 0xE2, 0xDB, 0xCC, + 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, + 0x2E, 0x97, 0x8A, 0x75, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, 0xE3, 0xDA, + 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, + 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, + 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, + 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xF6, 0xF5, 0xF4, 0xE8, + 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, + 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, + 0xA4, 0x9A, 0xE2, 0xDB, 0xCC, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, + 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, + 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, + 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, + 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, + 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, + 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, + 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xA9, + 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xE8, 0xE3, 0xDA, 0xE8, 0xE3, 0xDA, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0x97, 0x8A, 0x75, + 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, + 0x1B, 0x23, 0x21, 0x1D, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, + 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, + 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, + 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, + 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, + 0x1D, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, + 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, + 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, + 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, + 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, + 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, + 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, + 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, + 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, + 0x5A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, + 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, + 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, + 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, + 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, + 0x1D, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, + 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, + 0x8A, 0x75, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, + 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, + 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, + 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, + 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, + 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, + 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, + 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, + 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, + 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, + 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, + 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, + 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, + 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, + 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, + 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x87, 0x74, 0x59, 0xA9, 0xA4, 0x9A, 0xA9, + 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, + 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, + 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, + 0x00, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, + 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, + 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, + 0x2E, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, + 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, + 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, + 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x23, + 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, + 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xC4, + 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xC4, 0xB7, 0xA2, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, + 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, + 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xCD, 0xCC, 0xC9, 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, + 0xC4, 0xB7, 0xA2, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xCD, 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xCD, + 0xCC, 0xC9, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0xA9, 0xA4, 0x9A, 0x97, 0x8A, + 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, + 0x20, 0x1E, 0x1B, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, + 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, + 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, + 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, + 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x63, 0x5F, 0x5A, 0x63, + 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, + 0x75, 0x63, 0x5F, 0x5A, 0x97, 0x8A, 0x75, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, 0x63, 0x5F, 0x5A, + 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, + 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, + 0x20, 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x23, 0x21, 0x1D, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x23, 0x21, + 0x1D, 0x2F, 0x2F, 0x2E, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, + 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, + 0x1E, 0x1B, 0x23, 0x21, 0x1D, 0x2F, 0x2F, 0x2E, 0x23, 0x21, 0x1D, 0x23, 0x21, 0x1D, 0x20, 0x1E, + 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, + 0x23, 0x21, 0x1D, 0x23, 0x21, 0x1D, 0x23, 0x21, 0x1D, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, + 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, + 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, + 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, + 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, + 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, + 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, 0x20, 0x1E, 0x1B, + 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, + 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, + 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, + 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x20, 0x1E, 0x1B, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, }; @@ -9747,7 +9747,7 @@ ConvertBmpToGopBlt ( BltBuffer = *GopBlt; - for (Height = 0; Height < BmpHeader->DibHeader.Height; Height++) + for (Height = 0; Height < BmpHeader->DibHeader.Height; Height++) { Blt = &BltBuffer[(BmpHeader->DibHeader.Height - Height - 1) * BmpHeader->DibHeader.Width]; for (Width = 0; Width < BmpHeader->DibHeader.Width; Width++, Image++, Blt++) diff --git a/boot/environ/include/bl.h b/boot/environ/include/bl.h index bea6856f05f..22481b123eb 100644 --- a/boot/environ/include/bl.h +++ b/boot/environ/include/bl.h @@ -177,7 +177,7 @@ C_ASSERT(BL_MM_INCLUDE_ONLY_FIRMWARE_MEMORY == 0x240); #define BL_LOAD_PE_IMG_VIRTUAL_BUFFER BL_LOAD_IMG_VIRTUAL_BUFFER #define BL_LOAD_PE_IMG_CHECK_MACHINE 0x02 -#define BL_LOAD_PE_IMG_EXISTING_BUFFER BL_LOAD_IMG_EXISTING_BUFFER +#define BL_LOAD_PE_IMG_EXISTING_BUFFER BL_LOAD_IMG_EXISTING_BUFFER #define BL_LOAD_PE_IMG_COMPUTE_HASH 0x10 #define BL_LOAD_PE_IMG_CHECK_SUBSYSTEM 0x80 #define BL_LOAD_PE_IMG_SKIP_RELOCATIONS 0x100 @@ -2411,7 +2411,7 @@ BlDisplayInvalidateOemBitmap ( PBITMAP BlDisplayGetOemBitmap ( - _Out_ PCOORD Offset, + _Out_ PCOORD Offset, _Out_opt_ PULONG Flags ); @@ -2806,7 +2806,7 @@ ConsolepClearBuffer ( _In_ ULONG ScanlineWidth, _In_ ULONG PixelDepth ); - + NTSTATUS ConsolepConvertColorToPixel ( _In_ BL_COLOR Color, diff --git a/boot/environ/lib/arch/i386/transfer.s b/boot/environ/lib/arch/i386/transfer.s index d87938363fc..4bf9ef5782a 100644 --- a/boot/environ/lib/arch/i386/transfer.s +++ b/boot/environ/lib/arch/i386/transfer.s @@ -30,7 +30,7 @@ _Archx86TransferTo32BitApplicationAsm: push esi push edi push ebx - + /* Save data segments */ push es push ds diff --git a/boot/environ/lib/bootlib.c b/boot/environ/lib/bootlib.c index 052aa9dcdfe..11ab756a481 100644 --- a/boot/environ/lib/bootlib.c +++ b/boot/environ/lib/bootlib.c @@ -422,7 +422,7 @@ BlGetApplicationIdentifier ( NTSTATUS BlGetApplicationBaseAndSize ( - _Out_ PVOID* ImageBase, + _Out_ PVOID* ImageBase, _Out_ PULONG ImageSize ) { diff --git a/boot/environ/lib/firmware/efi/firmware.c b/boot/environ/lib/firmware/efi/firmware.c index 6c9edb24ca0..2fb9df0243c 100644 --- a/boot/environ/lib/firmware/efi/firmware.c +++ b/boot/environ/lib/firmware/efi/firmware.c @@ -367,8 +367,8 @@ Quickie: NTSTATUS EfiOpenProtocol ( - _In_ EFI_HANDLE Handle, - _In_ EFI_GUID *Protocol, + _In_ EFI_HANDLE Handle, + _In_ EFI_GUID *Protocol, _Outptr_ PVOID* Interface ) { @@ -971,7 +971,7 @@ EfiGetMemoryMap ( NTSTATUS EfiFreePages ( - _In_ ULONG Pages, + _In_ ULONG Pages, _In_ EFI_PHYSICAL_ADDRESS PhysicalAddress ) { @@ -1295,7 +1295,7 @@ EfiGopGetFrameBuffer ( NTSTATUS EfiGopGetCurrentMode ( _In_ EFI_GRAPHICS_OUTPUT_PROTOCOL *GopInterface, - _Out_ UINTN* Mode, + _Out_ UINTN* Mode, _Out_ EFI_GRAPHICS_OUTPUT_MODE_INFORMATION *Information ) { @@ -2256,7 +2256,7 @@ LoopAgain: MmMdFreeDescriptor(Descriptor); goto Quickie; } - + /* Add it back as free memory */ Status = MmMdAddDescriptorToList(MemoryMap, Descriptor, diff --git a/boot/environ/lib/io/device.c b/boot/environ/lib/io/device.c index 48606b5258f..7ba7a18b7e4 100644 --- a/boot/environ/lib/io/device.c +++ b/boot/environ/lib/io/device.c @@ -1521,7 +1521,7 @@ BlockIoFirmwareOpen ( /* Free the device handle buffer array */ BlMmFreeHeap(DeviceHandles); - + /* Return status */ return Status; } @@ -2260,7 +2260,7 @@ BlpDeviceOpen ( /* It's a network device, call the UDP device handler */ Status = UdpFunctionTable.Open(Device, DeviceEntry); } - else + else { /* Unsupported type of device */ Status = STATUS_NOT_IMPLEMENTED; diff --git a/boot/environ/lib/io/display/display.c b/boot/environ/lib/io/display/display.c index 9e5ab92bb51..f842a025cdb 100644 --- a/boot/environ/lib/io/display/display.c +++ b/boot/environ/lib/io/display/display.c @@ -478,7 +478,7 @@ DsppReinitialize ( { return Status; } - + /* Now check our current graphical resolution */ Status = ((PBL_GRAPHICS_CONSOLE_VTABLE)GraphicsConsole->TextConsole.Callbacks)->GetGraphicalResolution(GraphicsConsole, &CurrentResolution); diff --git a/boot/environ/lib/io/display/efi/textcons.c b/boot/environ/lib/io/display/efi/textcons.c index 495228f7843..fe950f9d7fb 100644 --- a/boot/environ/lib/io/display/efi/textcons.c +++ b/boot/environ/lib/io/display/efi/textcons.c @@ -197,7 +197,7 @@ ConsoleEfiTextGetStateFromMode ( NTSTATUS ConsoleFirmwareTextSetState ( _In_ PBL_TEXT_CONSOLE TextConsole, - _In_ UCHAR Mask, + _In_ UCHAR Mask, _In_ PBL_DISPLAY_STATE State ) { @@ -554,8 +554,8 @@ ConsoleInputLocalEraseBuffer ( } NTSTATUS -ConsoleFirmwareTextClear ( - _In_ PBL_TEXT_CONSOLE Console, +ConsoleFirmwareTextClear ( + _In_ PBL_TEXT_CONSOLE Console, _In_ BOOLEAN LineOnly ) { @@ -573,7 +573,7 @@ ConsoleFirmwareTextClear ( /* Get the current column and row */ Column = Console->State.XPos / TextWidth; Row = Console->State.YPos / TextHeight; - + /* Loop over every remaining character */ for (i = 0; i < Console->DisplayMode.HRes - Column - 1; i++) { diff --git a/boot/environ/lib/io/display/guicons.c b/boot/environ/lib/io/display/guicons.c index 4a76d78c69a..f4bf312768d 100644 --- a/boot/environ/lib/io/display/guicons.c +++ b/boot/environ/lib/io/display/guicons.c @@ -427,7 +427,7 @@ ConsoleGraphicalEnable ( NTSTATUS ConsoleGraphicalGetGraphicalResolution ( - _In_ PBL_GRAPHICS_CONSOLE Console, + _In_ PBL_GRAPHICS_CONSOLE Console, _In_ PBL_DISPLAY_MODE DisplayMode ) { @@ -445,7 +445,7 @@ ConsoleGraphicalGetGraphicalResolution ( NTSTATUS ConsoleGraphicalGetOriginalResolution ( - _In_ PBL_GRAPHICS_CONSOLE Console, + _In_ PBL_GRAPHICS_CONSOLE Console, _In_ PBL_DISPLAY_MODE DisplayMode ) { diff --git a/boot/environ/lib/io/display/textcons.c b/boot/environ/lib/io/display/textcons.c index abf08f90d29..a7a74ad3a2e 100644 --- a/boot/environ/lib/io/display/textcons.c +++ b/boot/environ/lib/io/display/textcons.c @@ -184,7 +184,7 @@ ConsolepFindResolution ( return FALSE; } -BL_INPUT_CONSOLE_VTABLE ConsoleInputLocalVtbl = +BL_INPUT_CONSOLE_VTABLE ConsoleInputLocalVtbl = { (PCONSOLE_DESTRUCT)ConsoleInputLocalDestruct, (PCONSOLE_REINITIALIZE)ConsoleInputBaseReinitialize, diff --git a/boot/environ/lib/io/etfs.c b/boot/environ/lib/io/etfs.c index da5ee0f8654..498f883a258 100644 --- a/boot/environ/lib/io/etfs.c +++ b/boot/environ/lib/io/etfs.c @@ -333,7 +333,7 @@ Quickie: NTSTATUS EtfspSearchForDirent ( - _In_ PBL_FILE_ENTRY DirectoryEntry, + _In_ PBL_FILE_ENTRY DirectoryEntry, _In_ PWCHAR FileName, _Out_ PRAW_DIR_REC *DirEntry, _Out_ PULONG DirentOffset @@ -435,7 +435,7 @@ EtfspCachedSearchForDirent ( NTSTATUS EtfsRead ( _In_ PBL_FILE_ENTRY FileEntry, - _In_ PVOID Buffer, + _In_ PVOID Buffer, _In_ ULONG Size, _Out_opt_ PULONG BytesReturned ) @@ -538,7 +538,7 @@ NTSTATUS EtfsOpen ( _In_ PBL_FILE_ENTRY Directory, _In_ PWCHAR FileName, - _In_ ULONG Flags, + _In_ ULONG Flags, _Out_ PBL_FILE_ENTRY *FileEntry ) { diff --git a/boot/environ/lib/io/file.c b/boot/environ/lib/io/file.c index 6d8c657da26..c6b4e4328f7 100644 --- a/boot/environ/lib/io/file.c +++ b/boot/environ/lib/io/file.c @@ -169,7 +169,7 @@ FileTableCompareWithSameAttributes ( NTSTATUS FileTableDestroyEntry ( - _In_ PBL_FILE_ENTRY FileEntry, + _In_ PBL_FILE_ENTRY FileEntry, _In_ ULONG Index ) { diff --git a/boot/environ/lib/misc/bcd.c b/boot/environ/lib/misc/bcd.c index b3ae2b53758..bd2c85ba573 100644 --- a/boot/environ/lib/misc/bcd.c +++ b/boot/environ/lib/misc/bcd.c @@ -15,7 +15,7 @@ VOID BiNotifyEnumerationError ( - _In_ HANDLE ObjectHandle, + _In_ HANDLE ObjectHandle, _In_ PWCHAR ElementName, _In_ NTSTATUS Status ) @@ -78,7 +78,7 @@ BiConvertRegistryDataToElement ( case BCD_TYPE_DEVICE: /* First, make sure it's at least big enough for an empty descriptor */ - if (DataLength < FIELD_OFFSET(BCD_DEVICE_OPTION, + if (DataLength < FIELD_OFFSET(BCD_DEVICE_OPTION, DeviceDescriptor.Unknown)) { return STATUS_OBJECT_TYPE_MISMATCH; @@ -172,7 +172,7 @@ BiConvertRegistryDataToElement ( Status = STATUS_BUFFER_TOO_SMALL; break; } - + /* Yep, copy the GUID */ RtlInitUnicodeString(&GuidString, BcdString); Status = RtlGUIDFromString(&GuidString, ElementGuid); @@ -350,7 +350,7 @@ NTSTATUS BiConvertBcdElements ( _In_ PBCD_PACKED_ELEMENT Elements, _Out_opt_ PBCD_ELEMENT Buffer, - _Inout_ PULONG BufferSize, + _Inout_ PULONG BufferSize, _Inout_ PULONG ElementCount ) { @@ -627,10 +627,10 @@ BiEnumerateSubElements ( _Out_ PULONG ElementCount ) { - NTSTATUS Status; + NTSTATUS Status; PBCD_PACKED_ELEMENT Element; HANDLE ObjectHandle; - ULONG ParsedElements, RequiredSize; + ULONG ParsedElements, RequiredSize; /* Assume empty */ *ElementCount = 0; @@ -698,7 +698,7 @@ BiEnumerateSubObjectElements ( NTSTATUS Status; ULONG SubElementCount, TotalSize, RequiredSize, CurrentSize, i; PBCD_PACKED_ELEMENT PreviousElement; - + /* Assume empty list */ *ElementCount = 0; Status = STATUS_SUCCESS; @@ -1199,7 +1199,7 @@ BiGetObjectDescription ( /* Read the type */ Length = 0; Status = BiGetRegistryValue(DescriptionHandle, - L"Type", + L"Type", REG_DWORD, (PVOID*)&Data, &Length); diff --git a/boot/environ/lib/misc/bootreg.c b/boot/environ/lib/misc/bootreg.c index bf666572306..957bb122f5f 100644 --- a/boot/environ/lib/misc/bootreg.c +++ b/boot/environ/lib/misc/bootreg.c @@ -351,7 +351,7 @@ BiInitializeAndValidateHive ( if (NT_SUCCESS(Status)) { /* Cleanup volatile/old data */ - CmPrepareHive(&Hive->Hive.Hive); // CmCheckRegistry + CmPrepareHive(&Hive->Hive.Hive); // CmCheckRegistry Status = STATUS_SUCCESS; } diff --git a/boot/environ/lib/misc/font.c b/boot/environ/lib/misc/font.c index ede267d3c0a..4af6cc52974 100644 --- a/boot/environ/lib/misc/font.c +++ b/boot/environ/lib/misc/font.c @@ -65,7 +65,7 @@ BfLoadFontFile ( /* Zero it out */ RtlZeroMemory(DeferredFont, sizeof(*DeferredFont)); - + /* Allocate a copy for the file path */ FontPathSize = sizeof(WCHAR) * wcslen(FontPath) + sizeof(UNICODE_NULL); DeferredFont->FontPath = (PWCHAR)BlMmAllocateHeap(FontPathSize); @@ -74,7 +74,7 @@ BfLoadFontFile ( BfiFreeDeferredFontFile(DeferredFont); return STATUS_NO_MEMORY; } - + /* Allocate a copy for the device */ DeferredFont->Device = BlMmAllocateHeap(Device->Size); if (!DeferredFont->Device) @@ -113,7 +113,7 @@ BfLoadDeferredFontFiles ( { /* Get the font */ DeferredFont = CONTAINING_RECORD(NextEntry, BL_DEFERRED_FONT_FILE, ListEntry); - + /* Move to the next entry and remove this one */ NextEntry = NextEntry->Flink; RemoveEntryList(&DeferredFont->ListEntry); diff --git a/boot/environ/lib/misc/image.c b/boot/environ/lib/misc/image.c index 9e682f42884..7abb40baf14 100644 --- a/boot/environ/lib/misc/image.c +++ b/boot/environ/lib/misc/image.c @@ -607,7 +607,7 @@ Quickie: return Status; } -PIMAGE_SECTION_HEADER +PIMAGE_SECTION_HEADER BlImgFindSection ( _In_ PVOID ImageBase, _In_ ULONG ImageSize @@ -650,11 +650,11 @@ BlImgFindSection ( VOID BlImgQueryCodeIntegrityBootOptions ( _In_ PBL_LOADED_APPLICATION_ENTRY ApplicationEntry, - _Out_ PBOOLEAN IntegrityChecksDisabled, + _Out_ PBOOLEAN IntegrityChecksDisabled, _Out_ PBOOLEAN TestSigning ) { - + NTSTATUS Status; BOOLEAN Value; @@ -1656,7 +1656,7 @@ NTSTATUS ImgpInitializeBootApplicationParameters ( _In_ PBL_BUFFER_DESCRIPTOR ImageParameters, _In_ PBL_APPLICATION_ENTRY AppEntry, - _In_ PVOID ImageBase, + _In_ PVOID ImageBase, _In_ ULONG ImageSize ) { @@ -1704,8 +1704,8 @@ ImgpInitializeBootApplicationParameters ( BlpBootDevice->Size + MemoryParameters.BufferSize + sizeof(*ReturnArguments) + - sizeof(*MemoryData) + - sizeof(*FirmwareParameters) + + sizeof(*MemoryData) + + sizeof(*FirmwareParameters) + sizeof(*ParameterBlock); /* Check if this gives us enough space */ diff --git a/boot/environ/lib/misc/resource.c b/boot/environ/lib/misc/resource.c index 6e34e0aa0c1..5b3adc33f42 100644 --- a/boot/environ/lib/misc/resource.c +++ b/boot/environ/lib/misc/resource.c @@ -152,12 +152,12 @@ ResFindDirectoryEntry ( NTSTATUS ResFindDataEntryFromImage ( - _In_opt_ PVOID ImageBase, + _In_opt_ PVOID ImageBase, _In_opt_ ULONG ImageSize, _In_ USHORT DirectoryId, - _In_ PUSHORT EntryId, + _In_ PUSHORT EntryId, _In_ PWCHAR Name, - _Out_ PIMAGE_RESOURCE_DATA_ENTRY *DataEntryOut, + _Out_ PIMAGE_RESOURCE_DATA_ENTRY *DataEntryOut, _Out_ PVOID* ResourceOut ) { @@ -445,7 +445,7 @@ BlResourceFindMessage ( (MsgId <= MsgData->Blocks[j].HighId)) { /* Get the first entry */ - MsgEntry = (PMESSAGE_RESOURCE_ENTRY)((ULONG_PTR)MsgData + + MsgEntry = (PMESSAGE_RESOURCE_ENTRY)((ULONG_PTR)MsgData + MsgData->Blocks[j].OffsetToEntries); /* Loop till we find the right one */ diff --git a/boot/environ/lib/misc/util.c b/boot/environ/lib/misc/util.c index bd0a4b3da57..da0cae92792 100644 --- a/boot/environ/lib/misc/util.c +++ b/boot/environ/lib/misc/util.c @@ -40,7 +40,7 @@ BlUtlGetAcpiTable ( NTSTATUS Status; PRSDT Rsdt; PXSDT Xsdt; - PHYSICAL_ADDRESS PhysicalAddress; + PHYSICAL_ADDRESS PhysicalAddress; PDESCRIPTION_HEADER Header; Header = 0; diff --git a/boot/environ/lib/mm/descriptor.c b/boot/environ/lib/mm/descriptor.c index b6fe1885e4e..6c212ed7efe 100644 --- a/boot/environ/lib/mm/descriptor.c +++ b/boot/environ/lib/mm/descriptor.c @@ -208,7 +208,7 @@ MmMdCountList ( { PLIST_ENTRY First, NextEntry; ULONG Count; - + /* Iterate the list */ for (Count = 0, First = MdList->First, NextEntry = First->Flink; NextEntry != First; @@ -220,7 +220,7 @@ MmMdCountList ( VOID MmMdInitializeList ( - _In_ PBL_MEMORY_DESCRIPTOR_LIST MdList, + _In_ PBL_MEMORY_DESCRIPTOR_LIST MdList, _In_ ULONG Type, _In_ PLIST_ENTRY ListHead ) @@ -247,10 +247,10 @@ MmMdInitializeList ( NTSTATUS MmMdCopyList ( - _In_ PBL_MEMORY_DESCRIPTOR_LIST DestinationList, + _In_ PBL_MEMORY_DESCRIPTOR_LIST DestinationList, _In_ PBL_MEMORY_DESCRIPTOR_LIST SourceList, _In_opt_ PBL_MEMORY_DESCRIPTOR ListDescriptor, - _Out_ PULONG ActualCount, + _Out_ PULONG ActualCount, _In_ ULONG Count, _In_ ULONG Flags ) @@ -286,7 +286,7 @@ MmMdCopyList ( Count = MmGlobalMemoryDescriptorCount; ListDescriptor = MmGlobalMemoryDescriptors; } - + /* Never truncate descriptors during a list copy */ Flags |= BL_MM_ADD_DESCRIPTOR_NEVER_TRUNCATE_FLAG; @@ -640,7 +640,7 @@ MmMdAddDescriptorToList ( ThisDescriptor = CONTAINING_RECORD(ThisEntry, BL_MEMORY_DESCRIPTOR, ListEntry); /* Is the address smaller, or equal but more important? */ - if ((MemoryDescriptor->BasePage < ThisDescriptor->BasePage) || + if ((MemoryDescriptor->BasePage < ThisDescriptor->BasePage) || ((MemoryDescriptor->BasePage == ThisDescriptor->BasePage) && (MmMdpHasPrecedence(MemoryDescriptor->Type, ThisDescriptor->Type)))) { @@ -789,7 +789,7 @@ MmMdRemoveRegionFromMdlEx ( { Descriptor->VirtualPage += RegionSize; } - + /* Initialize a descriptor for the start of the region */ NewDescriptor = MmMdInitByteGranularDescriptor(Descriptor->Flags, Descriptor->Type, @@ -958,8 +958,8 @@ Quickie: PBL_MEMORY_DESCRIPTOR MmMdFindDescriptorFromMdl ( - _In_ PBL_MEMORY_DESCRIPTOR_LIST MdList, - _In_ ULONG Flags, + _In_ PBL_MEMORY_DESCRIPTOR_LIST MdList, + _In_ ULONG Flags, _In_ ULONGLONG Page ) { @@ -987,7 +987,7 @@ MmMdFindDescriptorFromMdl ( IsVirtual = TRUE; NextEntry = MdList->First->Flink; } - + /* Check if this is a physical search */ if (!IsVirtual) { @@ -1047,7 +1047,7 @@ MmMdFindDescriptorFromMdl ( PBL_MEMORY_DESCRIPTOR MmMdFindDescriptor ( - _In_ ULONG WhichList, + _In_ ULONG WhichList, _In_ ULONG Flags, _In_ ULONGLONG Page ) diff --git a/boot/environ/lib/mm/i386/mmx86.c b/boot/environ/lib/mm/i386/mmx86.c index aae2d1b1e62..a0cb15e01d8 100644 --- a/boot/environ/lib/mm/i386/mmx86.c +++ b/boot/environ/lib/mm/i386/mmx86.c @@ -106,8 +106,8 @@ MmDefZeroVirtualAddressRange ( BOOLEAN MmArchTranslateVirtualAddress ( - _In_ PVOID VirtualAddress, - _Out_opt_ PPHYSICAL_ADDRESS PhysicalAddress, + _In_ PVOID VirtualAddress, + _Out_opt_ PPHYSICAL_ADDRESS PhysicalAddress, _Out_opt_ PULONG CachingFlags ) { @@ -526,7 +526,7 @@ MmMapPhysicalAddress ( PhysicalAddressPtr->QuadPart = PhysicalAddress; *VirtualAddressPtr = VirtualAddress; *SizePtr = Size; - + /* Flush the TLB if paging is enabled */ if (BlMmIsTranslationEnabled()) { @@ -545,7 +545,7 @@ Mmx86MapInitStructure ( ) { NTSTATUS Status; - + /* Make a virtual mapping for this physical address */ Status = MmMapPhysicalAddress(&PhysicalAddress, &VirtualAddress, &Size, 0); if (!NT_SUCCESS(Status)) @@ -938,7 +938,7 @@ MmDefInitializeTranslation ( RtlZeroMemory(MmArchReferencePage, MmArchReferencePageSize); /* Allocate 4MB worth of self-map pages */ - Status = MmPaReserveSelfMapPages(&Mmx86SelfMapBase, + Status = MmPaReserveSelfMapPages(&Mmx86SelfMapBase, (4 * 1024 * 1024) >> PAGE_SHIFT, (4 * 1024 * 1024) >> PAGE_SHIFT); if (!NT_SUCCESS(Status)) diff --git a/boot/environ/lib/mm/mm.c b/boot/environ/lib/mm/mm.c index 41d7a62a6d3..e2ea911e0cf 100644 --- a/boot/environ/lib/mm/mm.c +++ b/boot/environ/lib/mm/mm.c @@ -22,8 +22,8 @@ ULONG MmDescriptorCallTreeCount; NTSTATUS TrpGenerateMappingTracker ( - _In_ PVOID VirtualAddress, - _In_ ULONG Flags, + _In_ PVOID VirtualAddress, + _In_ ULONG Flags, _In_ LARGE_INTEGER PhysicalAddress, _In_ ULONGLONG Size ) @@ -50,7 +50,7 @@ TrpGenerateMappingTracker ( InsertTailList(ListHead, &Descriptor->ListEntry); goto Quickie; } - + /* Otherwise, go to the last descriptor */ NextDescriptor = CONTAINING_RECORD(NextEntry, BL_MEMORY_DESCRIPTOR, @@ -540,7 +540,7 @@ BlMmTranslateVirtualAddress ( NTSTATUS BlpMmInitialize ( _In_ PBL_MEMORY_DATA MemoryData, - _In_ BL_TRANSLATION_TYPE TranslationType, + _In_ BL_TRANSLATION_TYPE TranslationType, _In_ PBL_LIBRARY_PARAMETERS LibraryParameters ) { diff --git a/boot/environ/lib/mm/pagealloc.c b/boot/environ/lib/mm/pagealloc.c index 62e2175cafc..e77106b6a57 100644 --- a/boot/environ/lib/mm/pagealloc.c +++ b/boot/environ/lib/mm/pagealloc.c @@ -178,7 +178,7 @@ MmPapAllocateRegionFromMdl ( _In_ PBL_MEMORY_DESCRIPTOR_LIST NewList, _Out_opt_ PBL_MEMORY_DESCRIPTOR Descriptor, _In_ PBL_MEMORY_DESCRIPTOR_LIST CurrentList, - _In_ PBL_PA_REQUEST Request, + _In_ PBL_PA_REQUEST Request, _In_ BL_MEMORY_TYPE Type ) { @@ -220,7 +220,7 @@ MmPapAllocateRegionFromMdl ( FoundDescriptor = CONTAINING_RECORD(NextEntry, BL_MEMORY_DESCRIPTOR, ListEntry); - + /* See if it matches the request */ if (MmMdFindSatisfyingRegion(FoundDescriptor, &LocalDescriptor, @@ -379,7 +379,7 @@ MmPapAllocateRegionFromMdl ( NTSTATUS MmPaAllocatePages ( _In_ PBL_MEMORY_DESCRIPTOR_LIST NewList, - _In_ PBL_MEMORY_DESCRIPTOR Descriptor, + _In_ PBL_MEMORY_DESCRIPTOR Descriptor, _In_ PBL_MEMORY_DESCRIPTOR_LIST CurrentList, _In_ PBL_PA_REQUEST Request, _In_ BL_MEMORY_TYPE MemoryType @@ -442,7 +442,7 @@ MmPapAllocatePhysicalPagesInRange ( _In_ ULONG Attributes, _In_ ULONG Alignment, _In_ PBL_MEMORY_DESCRIPTOR_LIST NewList, - _In_opt_ PBL_ADDRESS_RANGE Range, + _In_opt_ PBL_ADDRESS_RANGE Range, _In_ ULONG RangeType ) { @@ -994,7 +994,7 @@ MmPaInitialize ( } NTSTATUS -BlMmAllocatePhysicalPages( +BlMmAllocatePhysicalPages( _In_ PPHYSICAL_ADDRESS Address, _In_ BL_MEMORY_TYPE MemoryType, _In_ ULONGLONG PageCount, @@ -1563,7 +1563,7 @@ MmPaReleaseSelfMapPages ( NTSTATUS MmPaReserveSelfMapPages ( _Inout_ PPHYSICAL_ADDRESS PhysicalAddress, - _In_ ULONG Alignment, + _In_ ULONG Alignment, _In_ ULONG PageCount ) { @@ -1624,7 +1624,7 @@ Quickie: NTSTATUS MmSelectMappingAddress ( _Out_ PVOID* MappingAddress, - _In_ PVOID PreferredAddress, + _In_ PVOID PreferredAddress, _In_ ULONGLONG Size, _In_ ULONG AllocationAttributes, _In_ ULONG Flags, @@ -1694,7 +1694,7 @@ MmSelectMappingAddress ( PreferredAddress = (PVOID)((ULONG_PTR)PreferredAddress + BYTE_OFFSET(PhysicalAddress.QuadPart)); } - + Success: /* Return the mapping address and success */ *MappingAddress = PreferredAddress; diff --git a/boot/environ/lib/mm/stub/mm.c b/boot/environ/lib/mm/stub/mm.c index 3afe432eb43..84036d351e9 100644 --- a/boot/environ/lib/mm/stub/mm.c +++ b/boot/environ/lib/mm/stub/mm.c @@ -42,8 +42,8 @@ MmMapPhysicalAddress ( BOOLEAN MmArchTranslateVirtualAddress ( - _In_ PVOID VirtualAddress, - _Out_opt_ PPHYSICAL_ADDRESS PhysicalAddress, + _In_ PVOID VirtualAddress, + _Out_opt_ PPHYSICAL_ADDRESS PhysicalAddress, _Out_opt_ PULONG CachingFlags ) { diff --git a/boot/freeldr/bootsect/btrfs.S b/boot/freeldr/bootsect/btrfs.S index 7e1ffa16ea3..efe5b7a2a7f 100644 --- a/boot/freeldr/bootsect/btrfs.S +++ b/boot/freeldr/bootsect/btrfs.S @@ -78,7 +78,7 @@ main: mov byte ptr [BootDrive], dl // Now check if this computer supports extended reads. This boot sector will not work without it -CheckInt13hExtensions: +CheckInt13hExtensions: mov ah, HEX(41) // AH = 41h mov bx, HEX(55aa) // BX = 55AAh int HEX(13) // IBM/MS INT 13 Extensions - INSTALLATION CHECK diff --git a/boot/freeldr/bootsect/ofwboot.s b/boot/freeldr/bootsect/ofwboot.s index d367382829d..312c1243e5b 100644 --- a/boot/freeldr/bootsect/ofwboot.s +++ b/boot/freeldr/bootsect/ofwboot.s @@ -1,25 +1,25 @@ .section .text .globl setup_bats -_start: +_start: .long 0xe00000 + 12 .long 0 .long 0 - + _begin: - sync + sync isync - lis %r1,stack@ha - addi %r1,%r1,stack@l + lis %r1,stack@ha + addi %r1,%r1,stack@l addi %r1,%r1,16384 - 0x10 - - mfmsr %r8 - li %r0,0 - mtmsr %r0 - isync - bl setup_bats + mfmsr %r8 + li %r0,0 + mtmsr %r0 + isync + + bl setup_bats li %r8,0x3030 mtmsr %r8 @@ -52,15 +52,15 @@ _begin: /* Zero CTR */ mtcr %r31 - + lis %r3,0x8000@ha addi %r3,%r3,0x8000@l mtlr %r3 - + lis %r3,call_ofw@ha addi %r3,%r3,call_ofw - _start - + b call_freeldr /* @@ -110,7 +110,7 @@ setup_bats: 5: sync isync blr - + .align 4 call_freeldr: /* Get the address of the functions list -- @@ -122,14 +122,14 @@ call_freeldr: mtmsr %r10 nop - + /* Note that this is little-endian from here on */ blr nop .align 4 call_ofw: - /* R3 has the function offset to call (n * 4) + /* R3 has the function offset to call (n * 4) * Other arg registers are unchanged. * Note that these 4 instructions are in reverse order due to * little-endian convention */ @@ -149,7 +149,7 @@ call_ofw: add %r9,%r3,%r10 lwz %r3,ofw_functions - _start@l(%r9) mtctr %r3 - + mr %r3,%r4 mr %r4,%r5 mr %r5,%r6 @@ -180,7 +180,7 @@ zero_registers: xor %r2,%r2,%r2 mr %r0,%r2 mr %r3,%r2 - + mr %r4,%r2 mr %r5,%r2 mr %r6,%r2 @@ -195,47 +195,47 @@ zero_registers: mr %r13,%r2 mr %r14,%r2 mr %r15,%r2 - + mr %r12,%r2 mr %r13,%r2 mr %r14,%r2 mr %r15,%r2 - + mr %r16,%r2 mr %r17,%r2 mr %r18,%r2 mr %r19,%r2 - + mr %r20,%r2 mr %r21,%r2 mr %r22,%r2 mr %r23,%r2 - + mr %r24,%r2 mr %r25,%r2 mr %r26,%r2 mr %r27,%r2 - + mr %r28,%r2 mr %r29,%r2 mr %r30,%r2 mr %r31,%r2 blr - + prim_strlen: mr %r5,%r3 -prim_strlen_loop: +prim_strlen_loop: lbz %r4,0(%r3) cmpi 0,0,%r4,0 beq prim_strlen_done addi %r3,%r3,1 b prim_strlen_loop - + prim_strlen_done: sub %r3,%r3,%r5 blr - + copy_bits: cmp 0,0,%r3,%r4 beqlr @@ -248,14 +248,14 @@ copy_bits: ofw_print_string_hook: bl ofw_print_number bl ofw_exit - + ofw_print_string: /* Reserve some stack space */ subi %r1,%r1,32 /* Save args */ stw %r3,0(%r1) - + /* Save the lr, a scratch register */ stw %r8,8(%r1) mflr %r8 @@ -284,7 +284,7 @@ ofw_print_string: lwz %r3,0(%r1) bl prim_strlen mr %r5,%r3 - + lwz %r3,20(%r1) lwz %r4,0(%r1) @@ -295,7 +295,7 @@ ofw_print_string: lwz %r8,12(%r1) mtlr %r8 lwz %r8,8(%r1) - + addi %r1,%r1,32 blr @@ -329,16 +329,16 @@ ofw_number_loop: srwi %r7,%r7,4 nop - + cmpi 0,0,%r4,10 bge ofw_number_letter addi %r4,%r4,'0' b ofw_number_digit_out - + ofw_number_letter: addi %r4,%r4,'A' - 10 -ofw_number_digit_out: +ofw_number_digit_out: stb %r4,12(%r1) addi %r3,%r1,12 @@ -346,17 +346,17 @@ ofw_number_digit_out: stw %r7,20(%r1) stw %r8,24(%r1) stw %r9,28(%r1) - + bl ofw_print_string lwz %r6,16(%r1) lwz %r7,20(%r1) lwz %r8,24(%r1) lwz %r9,28(%r1) - + b ofw_number_loop -ofw_number_return: +ofw_number_return: /* Return */ lwz %r9,8(%r1) lwz %r8,4(%r1) @@ -416,7 +416,7 @@ ofw_print_space: addi %r1,%r1,16 blr -ofw_print_regs: +ofw_print_regs: /* Construct ofw exit call */ subi %r1,%r1,0xa0 @@ -429,32 +429,32 @@ ofw_print_regs: stw %r5,20(%r1) stw %r6,24(%r1) stw %r7,28(%r1) - + stw %r8,32(%r1) stw %r9,36(%r1) stw %r10,40(%r1) stw %r11,44(%r1) - + stw %r12,48(%r1) stw %r13,52(%r1) stw %r14,56(%r1) stw %r15,60(%r1) - + stw %r16,64(%r1) stw %r17,68(%r1) stw %r18,72(%r1) stw %r19,76(%r1) - + stw %r20,80(%r1) stw %r21,84(%r1) stw %r22,88(%r1) stw %r23,92(%r1) - + stw %r24,96(%r1) stw %r25,100(%r1) stw %r26,104(%r1) stw %r27,108(%r1) - + stw %r28,112(%r1) stw %r29,116(%r1) stw %r30,120(%r1) @@ -474,7 +474,7 @@ ofw_print_regs: stw %r0,144(%r1) mr %r3,%r1 stw %r3,148(%r1) - + /* Body, print the regname, then the register */ ofw_register_loop: lwz %r3,144(%r1) @@ -497,26 +497,26 @@ ofw_register_loop: stw %r3,144(%r1) b done_dump -dump_optional: +dump_optional: bl ofw_print_space bl ofw_print_space lwz %r3,152(%r1) lwz %r3,0(%r3) bl ofw_print_number - bl ofw_print_space + bl ofw_print_space lwz %r3,152(%r1) lwz %r3,4(%r3) bl ofw_print_number - bl ofw_print_space + bl ofw_print_space lwz %r3,152(%r1) lwz %r3,8(%r3) bl ofw_print_number - bl ofw_print_space + bl ofw_print_space lwz %r3,152(%r1) lwz %r3,12(%r3) bl ofw_print_number bl ofw_print_space -done_dump: +done_dump: bl ofw_print_eol b ofw_register_loop @@ -529,7 +529,7 @@ ofw_register_special: lwz %r3,128(%r1) bl ofw_print_number bl ofw_print_eol - + /* CR */ lis %r3,0xe00000@ha addi %r3,%r3,freeldr_reg_cr - _start @@ -538,7 +538,7 @@ ofw_register_special: lwz %r3,132(%r1) bl ofw_print_number bl ofw_print_eol - + /* CTR */ lis %r3,0xe00000@ha addi %r3,%r3,freeldr_reg_ctr - _start @@ -547,7 +547,7 @@ ofw_register_special: lwz %r3,136(%r1) bl ofw_print_number bl ofw_print_eol - + /* MSR */ lis %r3,0xe00000@ha addi %r3,%r3,freeldr_reg_msr - _start @@ -560,7 +560,7 @@ ofw_register_special: /* Return */ lwz %r0,128(%r1) mtlr %r0 - + lwz %r0,0(%r1) lwz %r2,8(%r1) lwz %r3,12(%r1) @@ -571,9 +571,9 @@ ofw_register_special: lwz %r7,28(%r1) addi %r1,%r1,0xa0 - + blr - + ofw_finddevice_hook: subi %r1,%r1,32 stw %r3,0(%r1) @@ -585,9 +585,9 @@ ofw_finddevice_hook: lwz %r3,4(%r1) mtlr %r3 lwz %r3,0(%r1) - addi %r1,%r1,32 + addi %r1,%r1,32 blr - + ofw_finddevice: /* Reserve stack space ... * 20 bytes for the ofw call, @@ -599,7 +599,7 @@ ofw_finddevice: stw %r9,24(%r1) mflr %r8 stw %r8,28(%r1) - + /* Get finddevice name */ lis %r8,0xe00000@ha addi %r9,%r8,ofw_finddevice_name - _start @@ -618,20 +618,20 @@ ofw_finddevice: /* Set argument */ mr %r3,%r1 - + /* Fire */ blrl - + lwz %r3,16(%r1) - + /* Restore registers */ lwz %r8,28(%r1) mtlr %r8 lwz %r9,24(%r1) lwz %r8,20(%r1) - + addi %r1,%r1,32 - + /* Return */ blr @@ -646,7 +646,7 @@ ofw_open: stw %r9,24(%r1) mflr %r8 stw %r8,28(%r1) - + /* Get open name */ lis %r8,0xe00000@ha addi %r9,%r8,ofw_open_name - _start @@ -665,20 +665,20 @@ ofw_open: /* Set argument */ mr %r3,%r1 - + /* Fire */ blrl - + lwz %r3,16(%r1) - + /* Restore registers */ lwz %r8,28(%r1) mtlr %r8 lwz %r9,24(%r1) lwz %r8,20(%r1) - + addi %r1,%r1,32 - + /* Return */ blr @@ -686,7 +686,7 @@ ofw_getprop_hook: /* Reserve stack space: * 32 bytes for the ofw call * 12 bytes for r8, r9, lr - */ + */ /* Reserve stack space ... * 20 bytes for the ofw call, * r8, r9, and lr */ @@ -697,7 +697,7 @@ ofw_getprop_hook: stw %r9,36(%r1) mflr %r8 stw %r8,40(%r1) - + /* Get getprop name */ lis %r8,0xe00000@ha addi %r9,%r8,ofw_getprop_name - _start @@ -713,7 +713,7 @@ ofw_getprop_hook: stw %r4,16(%r1) /* Property */ stw %r5,20(%r1) /* Return buffer */ stw %r6,24(%r1) /* Buffer size */ - + /* Load up the call address */ lwz %r9,ofw_call_addr - _start(%r8) mtlr %r9 @@ -727,7 +727,7 @@ ofw_getprop_hook: /* Workaround to a wierd crash ... not sure what causes it. * XXX investigate me */ bl ofw_print_nothing - + /* Return */ lwz %r3,28(%r1) @@ -736,9 +736,9 @@ ofw_getprop_hook: mtlr %r8 lwz %r9,36(%r1) lwz %r8,32(%r1) - + addi %r1,%r1,48 - + /* Return */ blr @@ -746,7 +746,7 @@ ofw_getprop: /* Reserve stack space: * 32 bytes for the ofw call * 12 bytes for r8, r9, lr - */ + */ /* Reserve stack space ... * 20 bytes for the ofw call, * r8, r9, and lr */ @@ -757,7 +757,7 @@ ofw_getprop: stw %r9,36(%r1) mflr %r8 stw %r8,40(%r1) - + /* Get getprop name */ lis %r8,0xe00000@ha addi %r9,%r8,ofw_getprop_name - _start @@ -773,7 +773,7 @@ ofw_getprop: stw %r4,16(%r1) /* Property */ stw %r5,20(%r1) /* Return buffer */ stw %r6,24(%r1) /* Buffer size */ - + /* Load up the call address */ lwz %r9,ofw_call_addr - _start(%r8) mtlr %r9 @@ -783,7 +783,7 @@ ofw_getprop: /* Fire */ blrl - + /* Return */ lwz %r3,28(%r1) @@ -793,30 +793,30 @@ ofw_getprop: mtlr %r8 lwz %r9,36(%r1) lwz %r8,32(%r1) - + addi %r1,%r1,48 - + /* Return */ blr - + ofw_write: /* Reserve stack space: * 28 bytes for the ofw call * 12 bytes for r8, r9, lr - */ + */ /* Reserve stack space ... * 20 bytes for the ofw call, * r8, r9, and lr */ subi %r1,%r1,48 nop - + /* Store r8, r9, lr */ stw %r8,28(%r1) stw %r9,32(%r1) mflr %r8 stw %r8,36(%r1) - + /* Get write name */ lis %r8,0xe00000@ha addi %r9,%r8,ofw_write_name - _start @@ -831,7 +831,7 @@ ofw_write: stw %r3,12(%r1) stw %r4,16(%r1) stw %r5,20(%r1) - + /* Load up the call address */ lwz %r9,ofw_call_addr - _start(%r8) mtlr %r9 @@ -850,9 +850,9 @@ ofw_write: mtlr %r8 lwz %r9,32(%r1) lwz %r8,28(%r1) - + addi %r1,%r1,48 - + /* Return */ blr @@ -860,20 +860,20 @@ ofw_read: /* Reserve stack space: * 28 bytes for the ofw call * 12 bytes for r8, r9, lr - */ + */ /* Reserve stack space ... * 20 bytes for the ofw call, * r8, r9, and lr */ subi %r1,%r1,48 nop - + /* Store r8, r9, lr */ stw %r8,28(%r1) stw %r9,32(%r1) mflr %r8 stw %r8,36(%r1) - + /* Get read name */ lis %r8,0xe00000@ha addi %r9,%r8,ofw_read_name - _start @@ -888,7 +888,7 @@ ofw_read: stw %r3,12(%r1) stw %r4,16(%r1) stw %r5,20(%r1) - + /* Load up the call address */ lwz %r9,ofw_call_addr - _start(%r8) mtlr %r9 @@ -907,19 +907,19 @@ ofw_read: mtlr %r8 lwz %r9,32(%r1) lwz %r8,28(%r1) - + addi %r1,%r1,48 - + /* Return */ blr - + ofw_exit: lis %r3,0xe00000@ha addi %r3,%r3,freeldr_halt - _start bl ofw_print_string -/* -ofw_exit_loop: +/* +ofw_exit_loop: b ofw_exit_loop */ /* Load the exit name */ @@ -931,7 +931,7 @@ ofw_exit_loop: xor %r9,%r9,%r9 stw %r9,4(%r1) stw %r9,8(%r1) - + /* Load up the call address */ lwz %r9,ofw_call_addr - _start(%r8) mtlr %r9 @@ -953,7 +953,7 @@ ofw_child: stw %r9,24(%r1) mflr %r8 stw %r8,28(%r1) - + /* Get child name */ lis %r8,0xe00000@ha addi %r9,%r8,ofw_child_name - _start @@ -972,23 +972,23 @@ ofw_child: /* Set argument */ mr %r3,%r1 - + /* Fire */ blrl - + lwz %r3,16(%r1) - + /* Restore registers */ lwz %r8,28(%r1) mtlr %r8 lwz %r9,24(%r1) lwz %r8,20(%r1) - + addi %r1,%r1,32 - + /* Return */ blr - + ofw_peer: /* Reserve stack space ... * 20 bytes for the ofw call, @@ -1000,7 +1000,7 @@ ofw_peer: stw %r9,24(%r1) mflr %r8 stw %r8,28(%r1) - + /* Get peer name */ lis %r8,0xe00000@ha addi %r9,%r8,ofw_peer_name - _start @@ -1019,23 +1019,23 @@ ofw_peer: /* Set argument */ mr %r3,%r1 - + /* Fire */ blrl - + lwz %r3,16(%r1) - + /* Restore registers */ lwz %r8,28(%r1) mtlr %r8 lwz %r9,24(%r1) lwz %r8,20(%r1) - + addi %r1,%r1,32 - + /* Return */ blr - + ofw_seek: /* Reserve stack space ... * 20 bytes for the ofw call, @@ -1047,7 +1047,7 @@ ofw_seek: stw %r9,24(%r1) mflr %r8 stw %r8,28(%r1) - + /* Get peer name */ lis %r8,0xe00000@ha addi %r9,%r8,ofw_seek_name - _start @@ -1069,20 +1069,20 @@ ofw_seek: /* Set argument */ mr %r3,%r1 - + /* Fire */ blrl - + lwz %r3,16(%r1) - + /* Restore registers */ lwz %r8,28(%r1) mtlr %r8 lwz %r9,24(%r1) lwz %r8,20(%r1) - + addi %r1,%r1,32 - + /* Return */ blr @@ -1097,21 +1097,21 @@ setup_exc: stw %r9,12(%r1) stw %r10,16(%r1) stw %r12,20(%r1) - + lis %r8,0xe00000@ha xor %r12,%r12,%r12 addi %r12,%r12,0x300 addi %r9,%r8,dsi_exc - _start addi %r10,%r8,dsi_end - _start -copy_loop: +copy_loop: cmp 0,0,%r9,%r10 beq ret_setup_exc mr %r3,%r12 bl ofw_print_number bl ofw_print_space - + lwz %r3,0(%r9) stw %r3,0(%r12) @@ -1121,12 +1121,12 @@ copy_loop: addi %r12,%r12,4 addi %r9,%r9,4 b copy_loop - + ret_setup_exc: mfmsr %r12 - andi. %r12,%r12,0xffbf + andi. %r12,%r12,0xffbf mtmsr %r12 - + lwz %r12,20(%r1) lwz %r10,16(%r1) lwz %r9,12(%r1) @@ -1135,12 +1135,12 @@ ret_setup_exc: lwz %r3,4(%r1) mtlr %r3 lwz %r3,0(%r1) - + blr dsi_exc: subi %r1,%r1,16 - + stw %r0,0(%r1) stw %r3,4(%r1) @@ -1151,14 +1151,14 @@ dsi_exc: /* mfsrr1 %r3 */ /* ori %r3,%r3,2 */ /* mtsrr1 %r3 */ - + lwz %r3,4(%r1) lwz %r0,0(%r1) addi %r1,%r1,16 rfi -dsi_end: - +dsi_end: + .org 0x1000 freeldr_banner: .ascii "ReactOS OpenFirmware Boot Program\r\n\0" @@ -1168,16 +1168,16 @@ freeldr_halt: freeldr_reg_init: .ascii "r\0" -freeldr_reg_lr: +freeldr_reg_lr: .ascii "lr \0" -freeldr_reg_cr: +freeldr_reg_cr: .ascii "cr \0" -freeldr_reg_ctr: +freeldr_reg_ctr: .ascii "ctr\0" -freeldr_reg_msr: +freeldr_reg_msr: .ascii "msr\0" - -ofw_call_addr: + +ofw_call_addr: .long 0 ofw_memory_size: @@ -1185,10 +1185,10 @@ ofw_memory_size: .long 0 .long 0 .long 0 - + ofw_finddevice_name: .ascii "finddevice\0" - + ofw_getprop_name: .ascii "getprop\0" @@ -1197,7 +1197,7 @@ ofw_write_name: ofw_read_name: .ascii "read\0" - + ofw_exit_name: .ascii "exit\0" @@ -1209,10 +1209,10 @@ ofw_child_name: ofw_peer_name: .ascii "peer\0" - + ofw_seek_name: .ascii "seek\0" - + ofw_chosen_name: .ascii "/chosen\0" @@ -1224,7 +1224,7 @@ ofw_memory_name: ofw_reg_name: .ascii "reg\0" - + ofw_functions: .long ofw_finddevice_hook .long ofw_getprop_hook @@ -1238,7 +1238,7 @@ ofw_functions: .long ofw_child .long ofw_peer .long ofw_seek - + .org 0x2000 stack: .space 0x4000 diff --git a/boot/freeldr/freeldr/arch/i386/xbox/machxbox.c b/boot/freeldr/freeldr/arch/i386/xbox/machxbox.c index 781c2e946fc..eb0f2df4bc8 100644 --- a/boot/freeldr/freeldr/arch/i386/xbox/machxbox.c +++ b/boot/freeldr/freeldr/arch/i386/xbox/machxbox.c @@ -381,7 +381,7 @@ XboxPrepareForReactOS(VOID) XboxVideoPrepareForReactOS(); XboxDiskInit(FALSE); DiskStopFloppyMotor(); - + /* Turn off debug messages to screen */ DebugDisableScreenPort(); } diff --git a/boot/freeldr/freeldr/lib/fs/fat.c b/boot/freeldr/freeldr/lib/fs/fat.c index 1b98b63a27b..bcbc26123a6 100644 --- a/boot/freeldr/freeldr/lib/fs/fat.c +++ b/boot/freeldr/freeldr/lib/fs/fat.c @@ -930,7 +930,7 @@ PUCHAR FatGetFatSector(PFAT_VOLUME_INFO Volume, UINT32 FatSectorNumber) for (i = 0; i < SectorsToRead; i++) { - Volume->FatCacheIndex[CacheIndex + i] = SectorNumAbsolute + i; + Volume->FatCacheIndex[CacheIndex + i] = SectorNumAbsolute + i; } TRACE("FAT cache miss: read sector 0x%x from disk\n", SectorNumAbsolute); @@ -1128,7 +1128,7 @@ BOOLEAN FatReadClusterChain(PFAT_VOLUME_INFO Volume, UINT32 StartClusterNumber, TRACE("FatReadClusterChain() StartClusterNumber = %d NumberOfClusters = %d Buffer = 0x%x\n", StartClusterNumber, NumberOfClusters, Buffer); - ASSERT(NumberOfClusters > 0); + ASSERT(NumberOfClusters > 0); while (FatReadAdjacentClusters(Volume, StartClusterNumber, ClustersLeft, Buffer, &ClustersRead, &NextClusterNumber)) { diff --git a/boot/freeldr/freeldr/lib/fs/fs.c b/boot/freeldr/freeldr/lib/fs/fs.c index 0b44e500694..92cb3ef0362 100644 --- a/boot/freeldr/freeldr/lib/fs/fs.c +++ b/boot/freeldr/freeldr/lib/fs/fs.c @@ -330,7 +330,7 @@ ULONG FsGetNumPathParts(PCSTR Path) size_t i; size_t len; ULONG num; - + len = strlen(Path); for (i = 0, num = 0; i < len; i++) diff --git a/dll/appcompat/apphelp/apphelp.c b/dll/appcompat/apphelp/apphelp.c index 5df880ce6c5..bca880c35e7 100644 --- a/dll/appcompat/apphelp/apphelp.c +++ b/dll/appcompat/apphelp/apphelp.c @@ -398,10 +398,10 @@ BOOL WINAPI SdbRegisterDatabase( /** * @name SdbUnregisterDatabase - * + * * * @param pguidDB - * @return + * @return */ BOOL WINAPI SdbUnregisterDatabase(_In_ const GUID *pguidDB) { @@ -453,7 +453,7 @@ BOOL WINAPI BaseFlushAppcompatCache(VOID); * @param hInstance Unused, pass 0 * @param lpszCmdLine Unused, pass 0 * @param nCmdShow Unused, pass 0 - * @return + * @return */ BOOL WINAPI ShimDumpCache(HWND hwnd, HINSTANCE hInstance, LPCSTR lpszCmdLine, int nCmdShow) { @@ -468,7 +468,7 @@ BOOL WINAPI ShimDumpCache(HWND hwnd, HINSTANCE hInstance, LPCSTR lpszCmdLine, in * @param hInstance Unused, pass 0 * @param lpszCmdLine Unused, pass 0 * @param nCmdShow Unused, pass 0 -* @return +* @return */ BOOL WINAPI ShimFlushCache(HWND hwnd, HINSTANCE hInstance, LPCSTR lpszCmdLine, int nCmdShow) { diff --git a/dll/appcompat/apphelp/sdbfileattr.c b/dll/appcompat/apphelp/sdbfileattr.c index 4be994a4d96..309b16b3432 100644 --- a/dll/appcompat/apphelp/sdbfileattr.c +++ b/dll/appcompat/apphelp/sdbfileattr.c @@ -204,7 +204,7 @@ static DWORD WINAPI SdbpGetModuleType(PMEMMAPPED mapping, PIMAGE_NT_HEADERS* nt_ /** * Frees attribute data allocated by SdbGetFileAttributes. - * + * * @note Unlike Windows, this implementation will not crash if attr_info is NULL. * * @param [in] attr_info Pointer to array of ATTRINFO which will be freed. @@ -227,7 +227,7 @@ BOOL WINAPI SdbFreeFileAttributes(PATTRINFO attr_info) /** * Retrieves attribute data shim database requires to match a file with database entry - * + * * @note You must free the attr_info allocated by this function by calling SdbFreeFileAttributes. * * @param [in] path Path to the file. diff --git a/dll/appcompat/apphelp/sdbread.c b/dll/appcompat/apphelp/sdbread.c index 08bc5f49dc2..ea5d10efff5 100644 --- a/dll/appcompat/apphelp/sdbread.c +++ b/dll/appcompat/apphelp/sdbread.c @@ -248,7 +248,7 @@ TAGID WINAPI SdbFindNextTag(PDB pdb, TAGID parent, TAGID prev_child) /** * Searches shim database for string associated with specified tagid and copies string into a * buffer. - * + * * If size parameter is less than number of characters in string, this function shall fail and * no data shall be copied. * diff --git a/dll/appcompat/apphelp/sdbstringtable.h b/dll/appcompat/apphelp/sdbstringtable.h index 8752145f82a..b88415f1aa3 100644 --- a/dll/appcompat/apphelp/sdbstringtable.h +++ b/dll/appcompat/apphelp/sdbstringtable.h @@ -27,11 +27,11 @@ void SdbpTableDestroy(struct SdbStringHashTable* * table); * and the pTagid specified will be associated with this string. * - When the string specified does already exist, * the TAGID associated with this string will be returned in pTagid. - * + * * * @param [in] table Pointer to table pointer, will be allocated when needed. * @param [in] str The string to search for - * @param [in,out] pTagid + * @param [in,out] pTagid * the data written (in bytes) * * @return TRUE if the string was added to the table, FALSE if it already existed diff --git a/dll/appcompat/apphelp/sdbwrite.c b/dll/appcompat/apphelp/sdbwrite.c index 8f68e7630e3..b04c4f40ca0 100644 --- a/dll/appcompat/apphelp/sdbwrite.c +++ b/dll/appcompat/apphelp/sdbwrite.c @@ -91,9 +91,9 @@ static BOOL WINAPI SdbpWriteStringtable(PDB pdb) /** * Creates new shim database file - * + * * If a file already exists on specified path, that file shall be overwritten. - * + * * @note Use SdbCloseDatabaseWrite to close the database opened with this function. * * @param [in] path Path to the new shim database. @@ -313,7 +313,7 @@ BOOL WINAPI SdbWriteBinaryTagFromFile(PDB pdb, TAG tag, LPCWSTR path) * * @param [in] pdb Handle to the shim database. * @param [in] tag TAG for the list - * + * * RETURNS Success: TAGID of the newly created list, or TAGID_NULL on failure. * * @return A TAGID. diff --git a/dll/cpl/appwiz/removestartmenuitems.c b/dll/cpl/appwiz/removestartmenuitems.c index 2675d40fb9a..6c6d783c85c 100644 --- a/dll/cpl/appwiz/removestartmenuitems.c +++ b/dll/cpl/appwiz/removestartmenuitems.c @@ -4,7 +4,7 @@ * PURPOSE: ReactOS Software Control Panel * PROGRAMMERS: Jared Smudde (computerwhiz02@hotmail.com) */ - + #include "appwiz.h" INT_PTR CALLBACK RemoveStartMenuItemsProc(HWND hwndCPl, UINT Message, WPARAM wParam, LPARAM lParam) @@ -13,7 +13,7 @@ INT_PTR CALLBACK RemoveStartMenuItemsProc(HWND hwndCPl, UINT Message, WPARAM wPa { case WM_INITDIALOG: return TRUE; - + case WM_COMMAND: switch(LOWORD(wParam)) { diff --git a/dll/cpl/desk/appearance.c b/dll/cpl/desk/appearance.c index 653b30b8cd5..8d81b72b6a1 100644 --- a/dll/cpl/desk/appearance.c +++ b/dll/cpl/desk/appearance.c @@ -119,11 +119,11 @@ AppearancePage_OnInit(HWND hwndDlg) { BOOL bLoadedTheme = FALSE; - if (g_GlobalData.pwszAction && - g_GlobalData.pwszFile && + if (g_GlobalData.pwszAction && + g_GlobalData.pwszFile && wcscmp(g_GlobalData.pwszAction, L"OpenMSTheme") == 0) { - bLoadedTheme = FindOrAppendTheme(g->pThemes, + bLoadedTheme = FindOrAppendTheme(g->pThemes, g_GlobalData.pwszFile, NULL, NULL, diff --git a/dll/cpl/desk/appearance.h b/dll/cpl/desk/appearance.h index 9f56ad3bedc..1f1be728a03 100644 --- a/dll/cpl/desk/appearance.h +++ b/dll/cpl/desk/appearance.h @@ -10,18 +10,18 @@ #define SIZE_SM_CAPTION_HEIGHT 6 #define SIZE_MENU_WIDTH 7 #define SIZE_MENU_HEIGHT 8 - + #define SIZE_ICON_SPACE_X 9 #define SIZE_ICON_SPACE_Y 10 #define SIZE_ICON 11 - + #define FONT_CAPTION 0 #define FONT_SMCAPTION 1 #define FONT_MENU 2 #define FONT_STATUS 3 #define FONT_MESSAGE 4 #define FONT_ICON 5 - + #define NUM_ELEMENTS 18 #define NUM_FONTS 6 #define NUM_SIZES 9 @@ -64,12 +64,12 @@ typedef struct EFFECTS Effects; } COLOR_SCHEME, *PCOLOR_SCHEME; -/* - * The classic theme has several different 'colours' and every colour has +/* + * The classic theme has several different 'colours' and every colour has * several sizes. On visual styles however a theme has different colours * and different sizes. In other words the user can select a combination - * of colour and size. - * That means that for the classic theme THEME.SizesList is unused and + * of colour and size. + * That means that for the classic theme THEME.SizesList is unused and * every color has some child styles that correspond its sizes. * The themes for visual styles however will use both ColoursList and SizesList * and ChildStyle will not be used. @@ -101,16 +101,16 @@ typedef struct _THEME_SELECTION PTHEME_STYLE Size; } THEME_SELECTION, *PTHEME_SELECTION; -/* +/* * This is the global structure used to store the current values. * A pointer of this get's passed to the functions either directly - * or by passing hwnd and getting the pointer by GetWindowLongPtr. + * or by passing hwnd and getting the pointer by GetWindowLongPtr. */ typedef struct tagGLOBALS { PTHEME pThemes; - /* + /* * Keep a copy of the selected classic theme in order to select this * when user selects the classic theme (and not a horrible random theme ) */ diff --git a/dll/cpl/desk/theme.c b/dll/cpl/desk/theme.c index 6e1cf4ad636..e4d9690fe94 100644 --- a/dll/cpl/desk/theme.c +++ b/dll/cpl/desk/theme.c @@ -707,7 +707,7 @@ EnumThemeStyles(IN LPCWSTR pszThemeFileName, IN ENUMTHEMESTYLE pfnEnumTheme) PTHEME LoadTheme(IN LPCWSTR pszThemeFileName,IN LPCWSTR pszThemeName) { PTHEME pTheme = CreateTheme(pszThemeFileName, pszThemeName); - if (pTheme == NULL) + if (pTheme == NULL) return NULL; pTheme->SizesList = EnumThemeStyles( pszThemeFileName, (ENUMTHEMESTYLE)EnumThemeSizes); @@ -784,11 +784,11 @@ LoadThemes(VOID) } /* - * FindSelectedTheme: Finds the specified theme in the list of themes + * FindSelectedTheme: Finds the specified theme in the list of themes * or loads it if it was not loaded already. */ BOOL -FindOrAppendTheme(IN PTHEME pThemeList, +FindOrAppendTheme(IN PTHEME pThemeList, IN LPCWSTR pwszThemeFileName, IN LPCWSTR pwszColorBuff, IN LPCWSTR pwszSizeBuff, @@ -855,7 +855,7 @@ GetActiveTheme(IN PTHEME pThemeList, OUT PTHEME_SELECTION pSelectedTheme) MAX_PATH, szSizeBuff, MAX_PATH); - if (FAILED(hret)) + if (FAILED(hret)) return FALSE; return FindOrAppendTheme(pThemeList, szThemeFileName, szColorBuff, szSizeBuff, pSelectedTheme); diff --git a/dll/cpl/inetcpl/resources/Icon_Licence/Tango.txt b/dll/cpl/inetcpl/resources/Icon_Licence/Tango.txt index 753196f2b23..5fa0680a49e 100644 --- a/dll/cpl/inetcpl/resources/Icon_Licence/Tango.txt +++ b/dll/cpl/inetcpl/resources/Icon_Licence/Tango.txt @@ -1,4 +1,4 @@ -The following icons are the property of the Tango project and are +The following icons are the property of the Tango project and are released under Creative Commons Attribution-ShareAlike 2.5 License. Please see COPYING for details @@ -8,4 +8,4 @@ home.ico restricted.ico trusted.ico -The file trusted.ico was retrieved from http://bit.ly/1dzQSgh. \ No newline at end of file +The file trusted.ico was retrieved from http://bit.ly/1dzQSgh. diff --git a/dll/cpl/input/settings_page.c b/dll/cpl/input/settings_page.c index 28b9f9969db..7785528dc4f 100644 --- a/dll/cpl/input/settings_page.c +++ b/dll/cpl/input/settings_page.c @@ -267,7 +267,7 @@ OnCommandSettingsPage(HWND hwndDlg, WPARAM wParam) case IDC_REMOVE_BUTTON: { HWND hwndList; - + hwndList = GetDlgItem(hwndDlg, IDC_KEYLAYOUT_LIST); if (hwndList != NULL) @@ -290,7 +290,7 @@ OnCommandSettingsPage(HWND hwndDlg, WPARAM wParam) case IDC_PROP_BUTTON: { HWND hwndList; - + hwndList = GetDlgItem(hwndDlg, IDC_KEYLAYOUT_LIST); if (hwndList != NULL) @@ -319,7 +319,7 @@ OnCommandSettingsPage(HWND hwndDlg, WPARAM wParam) case IDC_SET_DEFAULT: { HWND hwndList; - + hwndList = GetDlgItem(hwndDlg, IDC_KEYLAYOUT_LIST); if (hwndList != NULL) diff --git a/dll/cpl/mmsys/mmsys.h b/dll/cpl/mmsys/mmsys.h index 0fdae63c8ce..8c601c2db8e 100644 --- a/dll/cpl/mmsys/mmsys.h +++ b/dll/cpl/mmsys/mmsys.h @@ -16,7 +16,7 @@ #include #include #include -#include +#include #include "resource.h" diff --git a/dll/cpl/openglcfg/general.c b/dll/cpl/openglcfg/general.c index 115d374880e..ec43dded8de 100644 --- a/dll/cpl/openglcfg/general.c +++ b/dll/cpl/openglcfg/general.c @@ -65,12 +65,12 @@ static VOID InitSettings(HWND hWndDlg) if (!pOglDrivers) dwNumDrivers = 0; - for (iKey = 0; iKey < dwNumDrivers; iKey++) - { + for (iKey = 0; iKey < dwNumDrivers; iKey++) + { dwSize = MAX_KEY_LENGTH; ret = RegEnumKeyEx(hKeyDrivers, iKey, szBuffer, &dwSize, NULL, NULL, NULL, NULL); - if (ret != ERROR_SUCCESS) + if (ret != ERROR_SUCCESS) break; /* Mind the null terminator */ diff --git a/dll/cpl/powercfg/powershemes.c b/dll/cpl/powercfg/powershemes.c index d4feb28f5d9..99113920eb2 100644 --- a/dll/cpl/powercfg/powershemes.c +++ b/dll/cpl/powercfg/powershemes.c @@ -252,7 +252,7 @@ LoadConfig( 0); if (iCurSel == CB_ERR) return; - + EnableWindow(GetDlgItem(hwndDlg, IDC_DELETE_BTN), (iCurSel > 0)); @@ -326,7 +326,7 @@ LoadConfig( { SendMessage(hwndCtrl, CB_SETCURSEL, i, 0); } - } + } } @@ -519,7 +519,7 @@ Pos_SaveData( if (SetActivePwrScheme(pScheme->uId, NULL, &pScheme->PowerPolicy)) { - pPageData->pActivePowerScheme = pScheme; + pPageData->pActivePowerScheme = pScheme; } } @@ -556,7 +556,7 @@ DelScheme( if (MessageBoxW(hwnd, szCookedBuffer, szTitleBuffer, MB_YESNO | MB_ICONQUESTION | MB_DEFBUTTON2) == IDYES) { if (!DeletePwrScheme(pScheme->uId)) - { + { LoadStringW(hApplet, IDS_DEL_SCHEME_ERROR, szErrorText, sizeof(szErrorText) / sizeof(WCHAR)); MessageBoxW(NULL, szErrorText, NULL, MB_OK | MB_ICONERROR); return FALSE; @@ -719,10 +719,10 @@ SaveScheme( index, (LPARAM)SaveSchemeData.pNewScheme); - SendMessage(hwndList, CB_SETCURSEL, (WPARAM)index, 0); + SendMessage(hwndList, CB_SETCURSEL, (WPARAM)index, 0); EnableWindow(GetDlgItem(hwndDlg, IDC_DELETE_BTN), TRUE); } - + } LoadConfig(hwndDlg, pPageData, SaveSchemeData.pNewScheme); } diff --git a/dll/cpl/sysdm/general.c b/dll/cpl/sysdm/general.c index c23010e6e3f..e1b8284d321 100644 --- a/dll/cpl/sysdm/general.c +++ b/dll/cpl/sysdm/general.c @@ -132,7 +132,7 @@ Cleanup: if (hMask != NULL) DeleteObject(hMask); if (hLogo != NULL) DeleteObject(hLogo); if (hDCMask != NULL) DeleteDC(hDCMask); - if (hDCLogo != NULL) DeleteDC(hDCLogo); + if (hDCLogo != NULL) DeleteDC(hDCLogo); if (hDC != NULL) ReleaseDC(hwndDlg, hDC); } diff --git a/dll/cpl/sysdm/userprofile.c b/dll/cpl/sysdm/userprofile.c index a4a49589094..cd926abd1d7 100644 --- a/dll/cpl/sysdm/userprofile.c +++ b/dll/cpl/sysdm/userprofile.c @@ -781,7 +781,7 @@ OnNotify( _In_ NMHDR *nmhdr) { LPNMLISTVIEW pNMLV; - + if (nmhdr->idFrom == IDC_USERACCOUNT_LINK && nmhdr->code == NM_CLICK) { ShellExecuteW(hwndDlg, NULL, L"usrmgr.cpl", NULL, NULL, 0); @@ -791,19 +791,19 @@ OnNotify( switch(nmhdr->code) { case LVN_ITEMCHANGED: - UpdateButtonState(hwndDlg, nmhdr->hwndFrom); + UpdateButtonState(hwndDlg, nmhdr->hwndFrom); break; - + case NM_DBLCLK: ChangeUserProfileType(hwndDlg); break; - + case LVN_DELETEITEM: - pNMLV = (LPNMLISTVIEW)nmhdr; + pNMLV = (LPNMLISTVIEW)nmhdr; if (pNMLV->lParam != 0) - HeapFree(GetProcessHeap(), 0, (LPVOID)pNMLV->lParam); + HeapFree(GetProcessHeap(), 0, (LPVOID)pNMLV->lParam); break; - } + } } } @@ -820,7 +820,7 @@ UserProfileDlgProc(HWND hwndDlg, case WM_INITDIALOG: OnInitUserProfileDialog(hwndDlg); return TRUE; - + case WM_COMMAND: switch (LOWORD(wParam)) { diff --git a/dll/cpl/timedate/clock.c b/dll/cpl/timedate/clock.c index d5667a988db..1f7b40bbc88 100644 --- a/dll/cpl/timedate/clock.c +++ b/dll/cpl/timedate/clock.c @@ -104,9 +104,9 @@ DrawClock(HDC hdc, PCLOCKDATA pClockData) static VOID DrawHands(HDC hdc, SYSTEMTIME * pst, BOOL fChange, INT Radius) { - POINT pt[3][5] = { {{0, (INT)-Radius/6}, {(INT)Radius/9, 0}, + POINT pt[3][5] = { {{0, (INT)-Radius/6}, {(INT)Radius/9, 0}, {0, (INT)Radius/1.8}, {(INT)-Radius/9, 0}, {0, (INT)-Radius/6}}, - {{0, (INT)-Radius/4.5}, {(INT)Radius/18, 0}, {0, (INT) Radius*0.89}, + {{0, (INT)-Radius/4.5}, {(INT)Radius/18, 0}, {0, (INT) Radius*0.89}, {(INT)-Radius/18, 0}, {0, (INT)-Radius/4.5}}, {{0, 0}, {0, 0}, {0, 0}, {0, 0}, {0, (INT) Radius*0.89}} }; INT i, iAngle[3]; diff --git a/dll/cpl/timedate/internettime.c b/dll/cpl/timedate/internettime.c index 68cd0b2da3c..2a9f347eb67 100644 --- a/dll/cpl/timedate/internettime.c +++ b/dll/cpl/timedate/internettime.c @@ -115,7 +115,7 @@ SetNTPServer(HWND hwnd, BOOL bBeginUpdate) SetDlgItemTextW(hwnd, IDC_SUCSYNC, szFormat); } - /* If there is new data entered then save it in the registry + /* If there is new data entered then save it in the registry The same key name of "0" is used to store all user entered values */ if (uSel == -1) diff --git a/dll/cpl/timedate/monthcal.c b/dll/cpl/timedate/monthcal.c index 4f23396e7e4..33be29e3149 100644 --- a/dll/cpl/timedate/monthcal.c +++ b/dll/cpl/timedate/monthcal.c @@ -83,10 +83,10 @@ MonthCalNotifyControlParent(IN PMONTHCALWND infoPtr, */ static WORD LeapYear(IN WORD Year) { - return + return #ifdef WITH_1752 (Year <= 1752) ? !(Year % 4) : -#endif +#endif !(Year % 4) && ((Year % 100) || !(Year % 400)); } diff --git a/dll/cpl/usrmgr/groupprops.c b/dll/cpl/usrmgr/groupprops.c index 2ae227ae512..ea693ee9380 100644 --- a/dll/cpl/usrmgr/groupprops.c +++ b/dll/cpl/usrmgr/groupprops.c @@ -545,7 +545,7 @@ GroupGeneralPageProc(HWND hwndDlg, case WM_INITDIALOG: pGroupData = (PGENERAL_GROUP_DATA)HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, - sizeof(GENERAL_GROUP_DATA) + + sizeof(GENERAL_GROUP_DATA) + lstrlen((LPTSTR)((PROPSHEETPAGE *)lParam)->lParam) * sizeof(TCHAR)); lstrcpy(pGroupData->szGroupName, (LPTSTR)((PROPSHEETPAGE *)lParam)->lParam); diff --git a/dll/cpl/usrmgr/userprops.c b/dll/cpl/usrmgr/userprops.c index 37819c52be8..0e213276e99 100644 --- a/dll/cpl/usrmgr/userprops.c +++ b/dll/cpl/usrmgr/userprops.c @@ -207,7 +207,7 @@ UserProfilePageProc(HWND hwndDlg, case WM_INITDIALOG: pUserData = (PPROFILE_USER_DATA)HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, - sizeof(PROFILE_USER_DATA) + + sizeof(PROFILE_USER_DATA) + lstrlen((LPTSTR)((PROPSHEETPAGE *)lParam)->lParam) * sizeof(TCHAR)); lstrcpy(pUserData->szUserName, (LPTSTR)((PROPSHEETPAGE *)lParam)->lParam); @@ -305,7 +305,7 @@ GetUserMembershipData(HWND hwndDlg, PMEMBERSHIP_USER_DATA pUserData) lvi.mask = LVIF_TEXT | LVIF_STATE | LVIF_IMAGE; lvi.pszText = pUserData->pGroupData[i].lgrui0_name; lvi.state = 0; - lvi.iImage = 0; + lvi.iImage = 0; (void)ListView_InsertItem(hwndLV, &lvi); } @@ -577,7 +577,7 @@ AddGroupToUser(HWND hwndDlg, lvi.mask = LVIF_TEXT | LVIF_STATE | LVIF_IMAGE; lvi.pszText = pUserData->pGroupData[i].lgrui0_name; lvi.state = 0; - lvi.iImage = 0; + lvi.iImage = 0; (void)ListView_InsertItem(hwndLV, &lvi); } @@ -635,7 +635,7 @@ UserMembershipPageProc(HWND hwndDlg, case WM_INITDIALOG: pUserData = (PMEMBERSHIP_USER_DATA)HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, - sizeof(MEMBERSHIP_USER_DATA) + + sizeof(MEMBERSHIP_USER_DATA) + lstrlen((LPTSTR)((PROPSHEETPAGE *)lParam)->lParam) * sizeof(TCHAR)); lstrcpy(pUserData->szUserName, (LPTSTR)((PROPSHEETPAGE *)lParam)->lParam); @@ -818,7 +818,7 @@ UserGeneralPageProc(HWND hwndDlg, case WM_INITDIALOG: pUserData = (PGENERAL_USER_DATA)HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, - sizeof(GENERAL_USER_DATA) + + sizeof(GENERAL_USER_DATA) + lstrlen((LPTSTR)((PROPSHEETPAGE *)lParam)->lParam) * sizeof(TCHAR)); lstrcpy(pUserData->szUserName, (LPTSTR)((PROPSHEETPAGE *)lParam)->lParam); diff --git a/dll/directx/bdaplgin/bdaplgin.cpp b/dll/directx/bdaplgin/bdaplgin.cpp index 7da6342620c..1037e65937f 100644 --- a/dll/directx/bdaplgin/bdaplgin.cpp +++ b/dll/directx/bdaplgin/bdaplgin.cpp @@ -126,23 +126,23 @@ DllGetClassObject( { UINT i; HRESULT hres = E_OUTOFMEMORY; - IClassFactory * pcf = NULL; + IClassFactory * pcf = NULL; if (!ppv) return E_INVALIDARG; *ppv = NULL; - for (i = 0; InterfaceTable[i].riid; i++) + for (i = 0; InterfaceTable[i].riid; i++) { - if (IsEqualIID(*InterfaceTable[i].riid, rclsid)) + if (IsEqualIID(*InterfaceTable[i].riid, rclsid)) { pcf = CClassFactory_fnConstructor(InterfaceTable[i].lpfnCI, NULL, NULL); break; } } - if (!pcf) + if (!pcf) { return CLASS_E_CLASSNOTAVAILABLE; } diff --git a/dll/directx/bdaplgin/classfactory.cpp b/dll/directx/bdaplgin/classfactory.cpp index 10ba0b184ac..1a755e2c216 100644 --- a/dll/directx/bdaplgin/classfactory.cpp +++ b/dll/directx/bdaplgin/classfactory.cpp @@ -87,10 +87,10 @@ CClassFactory::LockServer( return E_NOTIMPL; } -IClassFactory * +IClassFactory * CClassFactory_fnConstructor( - LPFNCREATEINSTANCE lpfnCI, - PLONG pcRefDll, + LPFNCREATEINSTANCE lpfnCI, + PLONG pcRefDll, IID * riidInst) { CClassFactory* factory = new CClassFactory(lpfnCI, pcRefDll, riidInst); diff --git a/dll/directx/bdaplgin/devicecontrol.cpp b/dll/directx/bdaplgin/devicecontrol.cpp index 93658916781..0d0af0f4a2b 100644 --- a/dll/directx/bdaplgin/devicecontrol.cpp +++ b/dll/directx/bdaplgin/devicecontrol.cpp @@ -525,7 +525,7 @@ CBDADeviceControl_fnConstructor( if (FAILED(hr)) { - // release + // release pObject->Release(); return E_NOINTERFACE; } diff --git a/dll/directx/bdaplgin/pincontrol.cpp b/dll/directx/bdaplgin/pincontrol.cpp index dd5e2c0ffef..c2ea461fff3 100644 --- a/dll/directx/bdaplgin/pincontrol.cpp +++ b/dll/directx/bdaplgin/pincontrol.cpp @@ -373,7 +373,7 @@ CBDAPinControl_fnConstructor( // release IBaseFilter interface PinInfo.pFilter->Release(); - // release IPin + // release IPin pPin->Release(); // release IKsObject diff --git a/dll/directx/d3d9/adapter.c b/dll/directx/d3d9/adapter.c index ac11692ef5d..e8c4e7b9716 100644 --- a/dll/directx/d3d9/adapter.c +++ b/dll/directx/d3d9/adapter.c @@ -154,7 +154,7 @@ BOOL GetAdapterInfo(LPCSTR lpszDeviceName, D3DADAPTER_IDENTIFIER9* pIdentifier) BOOL FoundDisplayDevice; memset(&DisplayDevice, 0, sizeof(DISPLAY_DEVICEA)); - DisplayDevice.cb = sizeof(DISPLAY_DEVICEA); + DisplayDevice.cb = sizeof(DISPLAY_DEVICEA); AdapterIndex = 0; FoundDisplayDevice = FALSE; @@ -333,7 +333,7 @@ static D3DFORMAT Get16BitD3DFormat(LPCSTR lpszDeviceName) BOOL GetAdapterMode(LPCSTR lpszDeviceName, D3DDISPLAYMODE* pMode) { DEVMODEA DevMode; - + memset(&DevMode, 0, sizeof(DEVMODEA)); DevMode.dmSize = sizeof(DEVMODEA); if (FALSE == EnumDisplaySettingsA(lpszDeviceName, ENUM_CURRENT_SETTINGS, &DevMode)) @@ -342,7 +342,7 @@ BOOL GetAdapterMode(LPCSTR lpszDeviceName, D3DDISPLAYMODE* pMode) pMode->Width = DevMode.dmPelsWidth; pMode->Height = DevMode.dmPelsHeight; pMode->RefreshRate = DevMode.dmDisplayFrequency; - + switch (DevMode.dmBitsPerPel) { case 8: diff --git a/dll/directx/d3d9/d3d9_callbacks.c b/dll/directx/d3d9/d3d9_callbacks.c index 9e01e929441..de545a3cbbf 100644 --- a/dll/directx/d3d9/d3d9_callbacks.c +++ b/dll/directx/d3d9/d3d9_callbacks.c @@ -40,7 +40,7 @@ DWORD WINAPI D3d9GetAvailDriverMemory(LPD3D9_GETAVAILDRIVERMEMORYDATA pData) Data.DDSCaps.dwCaps |= DDSCAPS_TEXTURE | DDSCAPS_3DDEVICE; if (pData->dwTextureType & D3D9_TEXTURETYPE_BACKBUFFER) - Data.DDSCaps.dwCaps |= DDSCAPS_ZBUFFER; + Data.DDSCaps.dwCaps |= DDSCAPS_ZBUFFER; Ret = OsThunkDdGetAvailDriverMemory(pData->pUnknown6BC->hDirectDrawLocal, (DD_GETAVAILDRIVERMEMORYDATA*)&Data); pData->dwFree = Data.dwFree; diff --git a/dll/directx/d3d9/d3d9_caps.c b/dll/directx/d3d9/d3d9_caps.c index eb8ca61de33..8c59a00a0fb 100644 --- a/dll/directx/d3d9/d3d9_caps.c +++ b/dll/directx/d3d9/d3d9_caps.c @@ -288,8 +288,8 @@ BOOL GetDeviceData(LPD3D9_DEVICEDATA pDeviceData) pDeviceData->DriverCaps.NumSupportedQueries = NumQueries; if (NumQueries > 0) pDeviceData->DriverCaps.pSupportedQueriesList = pD3dQueryList; - - HeapFree(GetProcessHeap(), 0, pD3dZStencilFormatList); + + HeapFree(GetProcessHeap(), 0, pD3dZStencilFormatList); return TRUE; } @@ -490,7 +490,7 @@ BOOL GetD3D9DriverInfo( D3D9_Unknown6BC* pUnknown6BC, ResetGetDriverInfo2Data((DD_GETDRIVERINFO2DATA*)&DriverCaps8, D3DGDI2_TYPE_GETD3DCAPS8, sizeof(D3DCAPS8)); PrepareDriverInfoData(&DrvInfo, &DriverCaps8, sizeof(D3DCAPS8)); - + if (FALSE == OsThunkDdGetDriverInfo(pUnknown6BC->hDirectDrawLocal, &DrvInfo) || S_OK != DrvInfo.ddRVal || DrvInfo.dwActualSize != sizeof(D3DCAPS8)) @@ -513,7 +513,7 @@ BOOL GetD3D9DriverInfo( D3D9_Unknown6BC* pUnknown6BC, ResetGetDriverInfo2Data((DD_GETDRIVERINFO2DATA*)&DriverCaps9, D3DGDI2_TYPE_GETD3DCAPS9, sizeof(D3DCAPS9)); PrepareDriverInfoData(&DrvInfo, &DriverCaps9, sizeof(D3DCAPS9)); - + if (FALSE == OsThunkDdGetDriverInfo(pUnknown6BC->hDirectDrawLocal, &DrvInfo) || S_OK != DrvInfo.ddRVal || DrvInfo.dwActualSize != sizeof(D3DCAPS9)) @@ -767,7 +767,7 @@ BOOL GetD3D9DriverInfo( D3D9_Unknown6BC* pUnknown6BC, pGblDriverData->dwNumClipVertices = D3dDriverData.dwNumClipVertices; /* GUID_D3DExtendedCaps */ - { + { DrvInfo.dwSize = sizeof(DD_GETDRIVERINFODATA); DrvInfo.guidInfo = GUID_D3DExtendedCaps; DrvInfo.dwExpectedSize = sizeof(D3DHAL_D3DEXTENDEDCAPS); @@ -839,10 +839,10 @@ BOOL GetD3D9DriverInfo( D3D9_Unknown6BC* pUnknown6BC, { HMONITOR hMonitor; MONITORINFO MonitorInfo; - + memset(&MonitorInfo, 0, sizeof(MONITORINFO)); MonitorInfo.cbSize = sizeof(MONITORINFO); - + hMonitor = GetAdapterMonitor(lpszDeviceName); if (TRUE == GetMonitorInfoA(hMonitor, &MonitorInfo)) { diff --git a/dll/directx/d3d9/d3d9_create.c b/dll/directx/d3d9/d3d9_create.c index 0d7b3617b6a..dc72211b954 100644 --- a/dll/directx/d3d9/d3d9_create.c +++ b/dll/directx/d3d9/d3d9_create.c @@ -156,7 +156,7 @@ VOID DestroyD3D9DeviceData(IN LPD3D9_DEVICEDATA pDeviceData) static BOOL GetDirect3D9AdapterInfo(IN OUT LPDIRECT3D9_DISPLAYADAPTER pDisplayAdapters, IN DWORD AdapterIndex) { LPD3D9_DEVICEDATA pDeviceData; - + pDeviceData = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(D3D9_DEVICEDATA)); if (NULL == pDeviceData) { @@ -184,7 +184,7 @@ static BOOL GetDisplayDeviceInfo(IN OUT LPDIRECT3D9_INT pDirect3D9) DWORD AdapterIndex; memset(&DisplayDevice, 0, sizeof(DISPLAY_DEVICEA)); - DisplayDevice.cb = sizeof(DISPLAY_DEVICEA); + DisplayDevice.cb = sizeof(DISPLAY_DEVICEA); pDirect3D9->NumDisplayAdapters = 0; D3D9_PrimaryDeviceName[0] = '\0'; diff --git a/dll/directx/d3d9/d3d9_cursor.c b/dll/directx/d3d9/d3d9_cursor.c index 30d110abdec..08c9c3bffb5 100644 --- a/dll/directx/d3d9/d3d9_cursor.c +++ b/dll/directx/d3d9/d3d9_cursor.c @@ -18,7 +18,7 @@ D3D9Cursor* CreateD3D9Cursor(struct _Direct3DDevice9_INT* pBaseDevice, struct _Direct3DSwapChain9_INT* pSwapChain) { D3D9Cursor* pCursor; - + if (FAILED(AlignedAlloc((LPVOID*)&pCursor, sizeof(D3D9Cursor)))) { DPRINT1("Failed to allocate D3D9Cursor"); diff --git a/dll/directx/d3d9/d3d9_device.c b/dll/directx/d3d9/d3d9_device.c index b29a0bd2e1f..4453dc7460f 100644 --- a/dll/directx/d3d9/d3d9_device.c +++ b/dll/directx/d3d9/d3d9_device.c @@ -65,7 +65,7 @@ ULONG WINAPI IDirect3DDevice9Base_Release(LPDIRECT3DDEVICE9 iface) DWORD iAdapter; EnterCriticalSection(&This->CriticalSection); - + /* TODO: Free resources here */ for (iAdapter = 0; iAdapter < This->NumAdaptersInDevice; iAdapter++) { @@ -524,7 +524,7 @@ HRESULT WINAPI IDirect3DDevice9Base_Present(LPDIRECT3DDEVICE9 iface, CONST RECT* { HRESULT hResult; IDirect3DSwapChain9* pSwapChain; - + IDirect3DDevice9Base_GetSwapChain(iface, i, &pSwapChain); hResult = IDirect3DSwapChain9_Present(pSwapChain, pSourceRect, pDestRect, hDestWindowOverride, pDirtyRegion, 0); diff --git a/dll/directx/d3d9/d3d9_device.h b/dll/directx/d3d9/d3d9_device.h index 37cf71f8f7b..4a315138eec 100644 --- a/dll/directx/d3d9/d3d9_device.h +++ b/dll/directx/d3d9/d3d9_device.h @@ -117,7 +117,7 @@ typedef struct _Direct3DDevice9_INT /* 0x0048 - 0x0080 */ D3D9BaseSurface* pUnknown0010; /* 0x004c - 0x0084 */ DWORD NumAdaptersInDevice; /* 0x0050 - 0x0088 */ D3DDISPLAYMODE CurrentDisplayMode[D3D9_INT_MAX_NUM_ADAPTERS]; -/* 0x0110 - 0x0148 */ DWORD AdapterIndexInGroup[D3D9_INT_MAX_NUM_ADAPTERS]; +/* 0x0110 - 0x0148 */ DWORD AdapterIndexInGroup[D3D9_INT_MAX_NUM_ADAPTERS]; /* 0x0140 - 0x0178 */ D3D9_DEVICEDATA DeviceData[D3D9_INT_MAX_NUM_ADAPTERS]; /* 0x1df0 - 0x1e28 */ LPDIRECT3DSWAPCHAIN9_INT pSwapChains[D3D9_INT_MAX_NUM_ADAPTERS]; /* 0x1e20 - 0x1e58 */ LPDIRECT3DSWAPCHAIN9_INT pSwapChains2[D3D9_INT_MAX_NUM_ADAPTERS]; diff --git a/dll/directx/d3d9/d3d9_helpers.c b/dll/directx/d3d9/d3d9_helpers.c index 2747eab96de..91f72d9a46f 100644 --- a/dll/directx/d3d9/d3d9_helpers.c +++ b/dll/directx/d3d9/d3d9_helpers.c @@ -83,7 +83,7 @@ HRESULT SafeCopyString(OUT LPSTR Dst, IN DWORD DstSize, IN LPCSTR Src) HRESULT SafeAppendString(IN OUT LPSTR Dst, IN DWORD DstSize, IN LPCSTR Src) { size_t CurrentDstLength; - + if (Dst == NULL || DstSize == 0) return DDERR_INVALIDPARAMS; @@ -116,7 +116,7 @@ HRESULT AlignedAlloc(IN OUT LPVOID *ppObject, IN SIZE_T dwSize) return DDERR_OUTOFMEMORY; AddressOffset = MEM_ALIGNMENT - ((ULONG_PTR)AlignedPtr & AlignedMask); - + AlignedPtr += AddressOffset; AlignedOffsetPtr = (ULONG_PTR *)(AlignedPtr - sizeof(ULONG)); diff --git a/dll/directx/d3d9/d3d9_mipmap.c b/dll/directx/d3d9/d3d9_mipmap.c index 2d99bd9f50c..48afb964fbf 100644 --- a/dll/directx/d3d9/d3d9_mipmap.c +++ b/dll/directx/d3d9/d3d9_mipmap.c @@ -151,7 +151,7 @@ DWORD WINAPI D3D9MipMap_SetLOD(LPDIRECT3DTEXTURE9 iface, DWORD LODNew) * @name IDirect3DTexture9::GetLOD * @implemented * -* The function D3D9MipMap_GetLOD returns the number +* The function D3D9MipMap_GetLOD returns the number * max LODs for the specified texture, if it's managed. * * @param LPDIRECT3DTEXTURE9 iface @@ -296,7 +296,7 @@ HRESULT CreateD3D9MipMap(DIRECT3DDEVICE9_INT* pDevice, UINT Width, UINT Height, InitDirect3DBaseTexture9(&pThisTexture->BaseTexture, (IDirect3DBaseTexture9Vtbl*)&D3D9MipMap_Vtbl, Usage, Levels, Format, Pool, pDevice, RT_EXTERNAL); pThisTexture->lpVtbl = &D3D9MipMap_Vtbl; - + pThisTexture->Usage = Usage; pThisTexture->dwWidth = Width; pThisTexture->dwHeight = Height; diff --git a/dll/directx/d3d9/d3d9_puredevice.h b/dll/directx/d3d9/d3d9_puredevice.h index 569c0d24483..19a46a4e0fa 100644 --- a/dll/directx/d3d9/d3d9_puredevice.h +++ b/dll/directx/d3d9/d3d9_puredevice.h @@ -13,116 +13,116 @@ typedef struct _D3D9PUREDEVICE { /* 0x0000 - 0x0000 */ DIRECT3DDEVICE9_INT BaseDevice; -/* 0x1f48 */ DWORD unknown002002; -/* 0x1f4c */ DWORD unknown002003; -/* 0x1f50 */ DWORD unknown002004; -/* 0x1f54 */ DWORD unknown002005; -/* 0x1f58 */ DWORD unknown002006; -/* 0x1f5c */ DWORD unknown002007; -/* 0x1f60 */ DWORD unknown002008; -/* 0x1f64 */ DWORD unknown002009; -/* 0x1f68 */ DWORD unknown002010; -/* 0x1f6c */ DWORD unknown002011; -/* 0x1f70 */ DWORD unknown002012; -/* 0x1f74 */ DWORD unknown002013; -/* 0x1f78 */ DWORD unknown002014; -/* 0x1f7c */ DWORD unknown002015; -/* 0x1f80 */ DWORD unknown002016; -/* 0x1f84 */ DWORD unknown002017; -/* 0x1f88 */ DWORD unknown002018; -/* 0x1f8c */ DWORD unknown002019; -/* 0x1f90 */ DWORD unknown002020; -/* 0x1f94 */ DWORD unknown002021; -/* 0x1f98 */ DWORD unknown002022; -/* 0x1f9c */ DWORD unknown002023; -/* 0x1fa0 */ DWORD unknown002024; -/* 0x1fa4 */ DWORD unknown002025; -/* 0x1fa8 - 0x1fe0 */ DWORD unknown002026; -/* 0x1fac */ DWORD unknown002027; -/* 0x1fb0 */ LPDWORD unknown002028; -/* 0x1fb4 */ DWORD unknown002029; -/* 0x1fb8 */ DWORD unknown002030; -/* 0x1fbc */ DWORD unknown002031; -/* 0x1fc0 */ DWORD unknown002032; -/* 0x1fc4 */ DWORD unknown002033; -/* 0x1fc8 */ DWORD unknown002034; -/* 0x1fcc */ DWORD unknown002035; -/* 0x1fd0 */ DWORD unknown002036; -/* 0x1fd4 */ DWORD unknown002037; -/* 0x1fd8 */ DWORD unknown002038; -/* 0x1fdc */ DWORD unknown002039; -/* 0x1fe0 */ DWORD unknown002040; -/* 0x1fe4 */ DWORD unknown002041; -/* 0x1fe8 */ DWORD unknown002042; -/* 0x1fec */ DWORD unknown002043; -/* 0x1ff0 */ DWORD unknown002044; -/* 0x1ff4 */ DWORD unknown002045; -/* 0x1ff8 */ DWORD unknown002046; -/* 0x1ffc */ DWORD unknown002047; -/* 0x2000 */ DWORD unknown002048; -/* 0x2004 */ DWORD unknown002049; -/* 0x2008 */ DWORD unknown002050; -/* 0x200c */ DWORD unknown002051; -/* 0x2010 */ DWORD unknown002052; -/* 0x2014 */ DWORD unknown002053; -/* 0x2018 */ DWORD unknown002054; -/* 0x201c */ DWORD unknown002055; -/* 0x2020 */ DWORD unknown002056; -/* 0x2024 */ DWORD unknown002057; -/* 0x2028 */ DWORD unknown002058; -/* 0x202c */ DWORD unknown002059; -/* 0x2030 */ DWORD unknown002060; -/* 0x2034 */ DWORD unknown002061; -/* 0x2038 */ DWORD unknown002062; -/* 0x203c */ DWORD unknown002063; -/* 0x2040 */ DWORD unknown002064; -/* 0x2044 */ DWORD unknown002065; -/* 0x2048 */ DWORD unknown002066; -/* 0x204c */ DWORD unknown002067; -/* 0x2050 */ DWORD unknown002068; -/* 0x2054 */ DWORD unknown002069; -/* 0x2058 */ DWORD unknown002070; -/* 0x205c */ DWORD unknown002071; -/* 0x2060 */ DWORD unknown002072; -/* 0x2064 */ DWORD unknown002073; -/* 0x2068 */ DWORD unknown002074; -/* 0x206c */ DWORD unknown002075; -/* 0x2070 */ DWORD unknown002076; -/* 0x2074 */ DWORD unknown002077; -/* 0x2078 */ DWORD unknown002078; -/* 0x207c */ DWORD unknown002079; -/* 0x2080 */ DWORD unknown002080; -/* 0x2084 */ DWORD unknown002081; -/* 0x2088 */ DWORD unknown002082; +/* 0x1f48 */ DWORD unknown002002; +/* 0x1f4c */ DWORD unknown002003; +/* 0x1f50 */ DWORD unknown002004; +/* 0x1f54 */ DWORD unknown002005; +/* 0x1f58 */ DWORD unknown002006; +/* 0x1f5c */ DWORD unknown002007; +/* 0x1f60 */ DWORD unknown002008; +/* 0x1f64 */ DWORD unknown002009; +/* 0x1f68 */ DWORD unknown002010; +/* 0x1f6c */ DWORD unknown002011; +/* 0x1f70 */ DWORD unknown002012; +/* 0x1f74 */ DWORD unknown002013; +/* 0x1f78 */ DWORD unknown002014; +/* 0x1f7c */ DWORD unknown002015; +/* 0x1f80 */ DWORD unknown002016; +/* 0x1f84 */ DWORD unknown002017; +/* 0x1f88 */ DWORD unknown002018; +/* 0x1f8c */ DWORD unknown002019; +/* 0x1f90 */ DWORD unknown002020; +/* 0x1f94 */ DWORD unknown002021; +/* 0x1f98 */ DWORD unknown002022; +/* 0x1f9c */ DWORD unknown002023; +/* 0x1fa0 */ DWORD unknown002024; +/* 0x1fa4 */ DWORD unknown002025; +/* 0x1fa8 - 0x1fe0 */ DWORD unknown002026; +/* 0x1fac */ DWORD unknown002027; +/* 0x1fb0 */ LPDWORD unknown002028; +/* 0x1fb4 */ DWORD unknown002029; +/* 0x1fb8 */ DWORD unknown002030; +/* 0x1fbc */ DWORD unknown002031; +/* 0x1fc0 */ DWORD unknown002032; +/* 0x1fc4 */ DWORD unknown002033; +/* 0x1fc8 */ DWORD unknown002034; +/* 0x1fcc */ DWORD unknown002035; +/* 0x1fd0 */ DWORD unknown002036; +/* 0x1fd4 */ DWORD unknown002037; +/* 0x1fd8 */ DWORD unknown002038; +/* 0x1fdc */ DWORD unknown002039; +/* 0x1fe0 */ DWORD unknown002040; +/* 0x1fe4 */ DWORD unknown002041; +/* 0x1fe8 */ DWORD unknown002042; +/* 0x1fec */ DWORD unknown002043; +/* 0x1ff0 */ DWORD unknown002044; +/* 0x1ff4 */ DWORD unknown002045; +/* 0x1ff8 */ DWORD unknown002046; +/* 0x1ffc */ DWORD unknown002047; +/* 0x2000 */ DWORD unknown002048; +/* 0x2004 */ DWORD unknown002049; +/* 0x2008 */ DWORD unknown002050; +/* 0x200c */ DWORD unknown002051; +/* 0x2010 */ DWORD unknown002052; +/* 0x2014 */ DWORD unknown002053; +/* 0x2018 */ DWORD unknown002054; +/* 0x201c */ DWORD unknown002055; +/* 0x2020 */ DWORD unknown002056; +/* 0x2024 */ DWORD unknown002057; +/* 0x2028 */ DWORD unknown002058; +/* 0x202c */ DWORD unknown002059; +/* 0x2030 */ DWORD unknown002060; +/* 0x2034 */ DWORD unknown002061; +/* 0x2038 */ DWORD unknown002062; +/* 0x203c */ DWORD unknown002063; +/* 0x2040 */ DWORD unknown002064; +/* 0x2044 */ DWORD unknown002065; +/* 0x2048 */ DWORD unknown002066; +/* 0x204c */ DWORD unknown002067; +/* 0x2050 */ DWORD unknown002068; +/* 0x2054 */ DWORD unknown002069; +/* 0x2058 */ DWORD unknown002070; +/* 0x205c */ DWORD unknown002071; +/* 0x2060 */ DWORD unknown002072; +/* 0x2064 */ DWORD unknown002073; +/* 0x2068 */ DWORD unknown002074; +/* 0x206c */ DWORD unknown002075; +/* 0x2070 */ DWORD unknown002076; +/* 0x2074 */ DWORD unknown002077; +/* 0x2078 */ DWORD unknown002078; +/* 0x207c */ DWORD unknown002079; +/* 0x2080 */ DWORD unknown002080; +/* 0x2084 */ DWORD unknown002081; +/* 0x2088 */ DWORD unknown002082; /* 0x208c */ DWORD unknown002083; // SurfaceManager? -/* 0x2090 */ DWORD unknown002084; -/* 0x2094 */ DWORD unknown002085; -/* 0x2098 */ DWORD unknown002086; -/* 0x209c */ DWORD unknown002087; -/* 0x20a0 */ DWORD unknown002088; -/* 0x20a4 */ DWORD unknown002089; -/* 0x20a8 */ DWORD unknown002090; -/* 0x20ac */ DWORD unknown002091; -/* 0x20b0 */ DWORD unknown002092; -/* 0x20b4 */ DWORD unknown002093; -/* 0x20b8 */ DWORD unknown002094; -/* 0x20bc */ DWORD unknown002095; -/* 0x20c0 */ DWORD unknown002096; -/* 0x20c4 */ DWORD unknown002097; -/* 0x20c8 */ DWORD unknown002098; -/* 0x20cc */ DWORD unknown002099; +/* 0x2090 */ DWORD unknown002084; +/* 0x2094 */ DWORD unknown002085; +/* 0x2098 */ DWORD unknown002086; +/* 0x209c */ DWORD unknown002087; +/* 0x20a0 */ DWORD unknown002088; +/* 0x20a4 */ DWORD unknown002089; +/* 0x20a8 */ DWORD unknown002090; +/* 0x20ac */ DWORD unknown002091; +/* 0x20b0 */ DWORD unknown002092; +/* 0x20b4 */ DWORD unknown002093; +/* 0x20b8 */ DWORD unknown002094; +/* 0x20bc */ DWORD unknown002095; +/* 0x20c0 */ DWORD unknown002096; +/* 0x20c4 */ DWORD unknown002097; +/* 0x20c8 */ DWORD unknown002098; +/* 0x20cc */ DWORD unknown002099; /* 0x20d0 */ DWORD unknown002100; // VSOutputDecl? -/* 0x20d4 */ DWORD unknown002101; -/* 0x20d8 */ DWORD unknown002102; -/* 0x20dc */ DWORD unknown002103; -/* 0x20e0 */ DWORD unknown002104; -/* 0x20e4 */ DWORD unknown002105; -/* 0x20e8 */ DWORD unknown002106; -/* 0x20ec */ DWORD unknown002107; -/* 0x20f0 */ DWORD unknown002108; -/* 0x20f4 */ DWORD unknown002109; -/* 0x20f8 */ DWORD unknown002110; -/* 0x20fc */ DWORD unknown002111; +/* 0x20d4 */ DWORD unknown002101; +/* 0x20d8 */ DWORD unknown002102; +/* 0x20dc */ DWORD unknown002103; +/* 0x20e0 */ DWORD unknown002104; +/* 0x20e4 */ DWORD unknown002105; +/* 0x20e8 */ DWORD unknown002106; +/* 0x20ec */ DWORD unknown002107; +/* 0x20f0 */ DWORD unknown002108; +/* 0x20f4 */ DWORD unknown002109; +/* 0x20f8 */ DWORD unknown002110; +/* 0x20fc */ DWORD unknown002111; /* 0x2100 */ DWORD unknown002112; /* 0x2104 */ DWORD unknown002113; /* 0x2108 */ DWORD unknown002114; diff --git a/dll/directx/d3d9/d3d9_swapchain.c b/dll/directx/d3d9/d3d9_swapchain.c index c348e469f16..9616d67ae4a 100644 --- a/dll/directx/d3d9/d3d9_swapchain.c +++ b/dll/directx/d3d9/d3d9_swapchain.c @@ -214,7 +214,7 @@ HRESULT Direct3DSwapChain9_Init(Direct3DSwapChain9_INT* pThisSwapChain, D3DPRESE for (i = 0; i < 256; i++) { - pThisSwapChain->GammaRamp.red[i] = + pThisSwapChain->GammaRamp.red[i] = pThisSwapChain->GammaRamp.green[i] = pThisSwapChain->GammaRamp.blue[i] = i; } @@ -222,7 +222,7 @@ HRESULT Direct3DSwapChain9_Init(Direct3DSwapChain9_INT* pThisSwapChain, D3DPRESE pThisSwapChain->PresentParameters = pPresentationParameters[pThisSwapChain->ChainIndex]; pThisSwapChain->SwapEffect = pPresentationParameters->SwapEffect; Direct3DSwapChain9_SetDisplayMode(pThisSwapChain, &pThisSwapChain->PresentParameters); - + if (FAILED(D3D9BaseObject_GetDeviceInt(&pThisSwapChain->BaseObject, &pDevice))) { DPRINT1("Could not get the swapchain device"); diff --git a/dll/directx/d3d9/d3d9_texture.c b/dll/directx/d3d9/d3d9_texture.c index e0bb5450616..9bf21f5f223 100644 --- a/dll/directx/d3d9/d3d9_texture.c +++ b/dll/directx/d3d9/d3d9_texture.c @@ -71,7 +71,7 @@ D3DTEXTUREFILTERTYPE WINAPI D3D9Texture_GetAutoGenFilterType(LPDIRECT3DBASETEXTU * @name IDirect3DBaseTexture9::GetLOD * @implemented * -* The function D3D9Texture_GetLOD returns the number +* The function D3D9Texture_GetLOD returns the number * max LODs for the specified texture, if it's managed. * * @param LPDIRECT3DBASETEXTURE9 iface diff --git a/dll/directx/d3d9/format.c b/dll/directx/d3d9/format.c index 3c9c0453fd0..a472b438292 100644 --- a/dll/directx/d3d9/format.c +++ b/dll/directx/d3d9/format.c @@ -481,7 +481,7 @@ HRESULT CheckDeviceFormat(LPD3D9_DRIVERCAPS pDriverCaps, D3DFORMAT AdapterFormat if ((dwOperations & MustSupportOperations) == MustSupportOperations) return D3D_OK; - + if (((dwOperations & MustSupportOperations) | D3DFORMAT_OP_AUTOGENMIPMAP) == MustSupportOperations) bSupportedWithAutogen = TRUE; } @@ -548,7 +548,7 @@ HRESULT CheckDepthStencilMatch(LPD3D9_DRIVERCAPS pDriverCaps, D3DFORMAT AdapterF { return D3DERR_NOTAVAILABLE; } - + if (DepthStencilFormat != D3DFMT_D16_LOCKABLE && DepthStencilFormat != D3DFMT_D32F_LOCKABLE) { diff --git a/dll/directx/ddraw/CMakeLists.txt b/dll/directx/ddraw/CMakeLists.txt index 598b9059259..cfb50768d6d 100644 --- a/dll/directx/ddraw/CMakeLists.txt +++ b/dll/directx/ddraw/CMakeLists.txt @@ -39,7 +39,7 @@ list(APPEND SOURCE Vtable/DirectDrawSurface4_Vtable.c Vtable/DirectDrawSurface7_Vtable.c) -add_library(ddraw MODULE +add_library(ddraw MODULE ${SOURCE} ddraw.rc ${CMAKE_CURRENT_BINARY_DIR}/ddraw.def) diff --git a/dll/directx/ddraw/Surface/surface_main.c b/dll/directx/ddraw/Surface/surface_main.c index 5f20bcb2224..f9c49c03155 100644 --- a/dll/directx/ddraw/Surface/surface_main.c +++ b/dll/directx/ddraw/Surface/surface_main.c @@ -295,7 +295,7 @@ HRESULT WINAPI Main_DDrawSurface_Blt(LPDDRAWI_DDRAWSURFACE_INT ThisDest, LPRECT if (ThisDest == NULL) { - return DDERR_INVALIDPARAMS; + return DDERR_INVALIDPARAMS; } /* Zero out members in DDHAL_BLTDATA */ @@ -448,7 +448,7 @@ Main_DDrawSurface_Lock (LPDDRAWI_DDRAWSURFACE_INT ThisDest, LPRECT prect, if (events != NULL) { - return DDERR_INVALIDPARAMS; + return DDERR_INVALIDPARAMS; } /* FIXME add a check see if lock support or not */ diff --git a/dll/directx/ddraw/ddraw_structures.txt b/dll/directx/ddraw/ddraw_structures.txt index 156c8f0c4f7..573d4bb6e36 100644 --- a/dll/directx/ddraw/ddraw_structures.txt +++ b/dll/directx/ddraw/ddraw_structures.txt @@ -62,7 +62,7 @@ typedef struct _DDRAWI_DIRECTDRAW_GBL { DWORD dwInternal1; DWORD dwUnused1[9]; LPDDHAL_CALLBACKS lpDDCBtmp; - LPDDRAWI_DDRAWSURFACE_INT dsList; // list of all created directdraw surface, it is a pointer list + LPDDRAWI_DDRAWSURFACE_INT dsList; // list of all created directdraw surface, it is a pointer list LPDDRAWI_DDRAWPALETTE_INT palList; LPDDRAWI_DDRAWCLIPPER_INT clipperList; LPDDRAWI_DIRECTDRAW_GBL lp16DD; // pointer to it self (DDRAWI_DIRECTDRAW_GBL) @@ -75,7 +75,7 @@ typedef struct _DDRAWI_DIRECTDRAW_GBL { DDCOLORKEY ddckCKSrcOverlay; VIDMEMINFO vmiData; LPVOID lpDriverHandle; - LPDDRAWI_DIRECTDRAW_LCL lpExclusiveOwner; // which local directdraw comobject is in Exclusive mode and own this + LPDDRAWI_DIRECTDRAW_LCL lpExclusiveOwner; // which local directdraw comobject is in Exclusive mode and own this DWORD dwModeIndex; DWORD dwModeIndexOrig; DWORD dwNumFourCC; @@ -118,7 +118,7 @@ typedef struct _DDRAWI_DIRECTDRAW_GBL { ULONG_PTR lpD3DExtendedCaps; DWORD dwDOSBoxEvent; RECT rectDesktop; - char cDriverName[MAX_DRIVER_NAME]; // driver name, if we send in CreateDirectDraw(NULL, ...) this will be fill in the name "display" + char cDriverName[MAX_DRIVER_NAME]; // driver name, if we send in CreateDirectDraw(NULL, ...) this will be fill in the name "display" ULONG_PTR lpD3DHALCallbacks3; DWORD dwNumZPixelFormats; LPDDPIXELFORMAT lpZPixelFormats; @@ -270,8 +270,8 @@ typedef struct _DDRAWI_DDRAWSURFACE_GBL { } DDRAWI_DDRAWSURFACE_GBL; The following informations might be incorrectly -I am using logic thinking since the info does -not exists in MSDN so I am drawing clue how +I am using logic thinking since the info does +not exists in MSDN so I am drawing clue how previews stuffs works that are document in MSDN/DDK follow struct should exists ??? diff --git a/dll/directx/dsound_new/capture.c b/dll/directx/dsound_new/capture.c index 37b1dcc2877..aa5c8e5c93a 100644 --- a/dll/directx/dsound_new/capture.c +++ b/dll/directx/dsound_new/capture.c @@ -84,7 +84,7 @@ HRESULT WINAPI CDirectSoundCapture_fnCreateCaptureBuffer( LPDIRECTSOUNDCAPTURE8 iface, - LPCDSCBUFFERDESC lpcDSBufferDesc, + LPCDSCBUFFERDESC lpcDSBufferDesc, LPDIRECTSOUNDCAPTUREBUFFER *ppDSCBuffer, LPUNKNOWN pUnkOuter) { @@ -104,7 +104,7 @@ CDirectSoundCapture_fnCreateCaptureBuffer( } /* check buffer description */ - if ((lpcDSBufferDesc->dwSize != sizeof(DSCBUFFERDESC) && lpcDSBufferDesc->dwSize != sizeof(DSCBUFFERDESC1)) || + if ((lpcDSBufferDesc->dwSize != sizeof(DSCBUFFERDESC) && lpcDSBufferDesc->dwSize != sizeof(DSCBUFFERDESC1)) || lpcDSBufferDesc->dwReserved != 0 || lpcDSBufferDesc->dwBufferBytes == 0 || lpcDSBufferDesc->lpwfxFormat == NULL) { /* invalid buffer description */ diff --git a/dll/directx/dsound_new/classfactory.c b/dll/directx/dsound_new/classfactory.c index 0f25f272fd8..b7944385b07 100644 --- a/dll/directx/dsound_new/classfactory.c +++ b/dll/directx/dsound_new/classfactory.c @@ -121,10 +121,10 @@ static const IClassFactoryVtbl dclfvt = }; -IClassFactory * +IClassFactory * IClassFactory_fnConstructor( - LPFNCREATEINSTANCE lpfnCI, - PLONG pcRefDll, + LPFNCREATEINSTANCE lpfnCI, + PLONG pcRefDll, REFIID riidInst) { IClassFactoryImpl* lpclf; diff --git a/dll/directx/dsound_new/devicelist.c b/dll/directx/dsound_new/devicelist.c index 1a2db7af812..7a4e9d6603b 100644 --- a/dll/directx/dsound_new/devicelist.c +++ b/dll/directx/dsound_new/devicelist.c @@ -440,7 +440,7 @@ EnumAudioDeviceInterfaces( BOOL FindDeviceByMappedId( - IN ULONG DeviceID, + IN ULONG DeviceID, LPFILTERINFO *Filter, BOOL bPlayback) { @@ -468,7 +468,7 @@ FindDeviceByMappedId( BOOL FindDeviceByGuid( - LPCGUID pGuidSrc, + LPCGUID pGuidSrc, LPFILTERINFO *Filter) { LPFILTERINFO CurInfo; diff --git a/dll/directx/dsound_new/directsound.c b/dll/directx/dsound_new/directsound.c index 09ec2881dbe..2c9e05f7dbc 100644 --- a/dll/directx/dsound_new/directsound.c +++ b/dll/directx/dsound_new/directsound.c @@ -217,7 +217,7 @@ HRESULT WINAPI IDirectSound8_fnDuplicateSoundBuffer( LPDIRECTSOUND8 iface, - LPDIRECTSOUNDBUFFER lpDsbOriginal, + LPDIRECTSOUNDBUFFER lpDsbOriginal, LPLPDIRECTSOUNDBUFFER lplpDsbDuplicate) { UNIMPLEMENTED; @@ -352,7 +352,7 @@ IDirectSound8_fnInitialize( if (SUCCEEDED(hr)) { This->bInitialized = TRUE; - return DS_OK; + return DS_OK; } DPRINT("Failed to find device\n"); diff --git a/dll/directx/dsound_new/dsound.c b/dll/directx/dsound_new/dsound.c index 3f29e895c7c..ae96a2d913e 100644 --- a/dll/directx/dsound_new/dsound.c +++ b/dll/directx/dsound_new/dsound.c @@ -129,23 +129,23 @@ DllGetClassObject( LPOLESTR pStr, pStr2; UINT i; HRESULT hres = E_OUTOFMEMORY; - IClassFactory * pcf = NULL; + IClassFactory * pcf = NULL; if (!ppv) return E_INVALIDARG; *ppv = NULL; - for (i = 0; InterfaceTable[i].riid; i++) + for (i = 0; InterfaceTable[i].riid; i++) { - if (IsEqualIID(InterfaceTable[i].riid, rclsid)) + if (IsEqualIID(InterfaceTable[i].riid, rclsid)) { pcf = IClassFactory_fnConstructor(InterfaceTable[i].lpfnCI, NULL, NULL); break; } } - if (!pcf) + if (!pcf) { StringFromIID(rclsid, &pStr); StringFromIID(riid, &pStr2); diff --git a/dll/directx/dsound_new/precomp.h b/dll/directx/dsound_new/precomp.h index 8104e384b34..1df6e7abf4a 100644 --- a/dll/directx/dsound_new/precomp.h +++ b/dll/directx/dsound_new/precomp.h @@ -68,10 +68,10 @@ extern LPFILTERINFO RootInfo; /* classfactory.c */ -IClassFactory * +IClassFactory * IClassFactory_fnConstructor( - LPFNCREATEINSTANCE lpfnCI, - PLONG pcRefDll, + LPFNCREATEINSTANCE lpfnCI, + PLONG pcRefDll, REFIID riidInst); @@ -83,12 +83,12 @@ EnumAudioDeviceInterfaces( BOOL FindDeviceByGuid( - LPCGUID pGuidSrc, + LPCGUID pGuidSrc, LPFILTERINFO *Filter); BOOL FindDeviceByMappedId( - IN ULONG DeviceID, + IN ULONG DeviceID, LPFILTERINFO *Filter, BOOL bPlayback); diff --git a/dll/directx/dsound_new/primary.c b/dll/directx/dsound_new/primary.c index a4bdb851fae..c56f3acc0b5 100644 --- a/dll/directx/dsound_new/primary.c +++ b/dll/directx/dsound_new/primary.c @@ -154,8 +154,8 @@ HRESULT WINAPI PrimaryDirectSoundBuffer8Impl_fnGetFormat( LPDIRECTSOUNDBUFFER8 iface, - LPWAVEFORMATEX pwfxFormat, - DWORD dwSizeAllocated, + LPWAVEFORMATEX pwfxFormat, + DWORD dwSizeAllocated, LPDWORD pdwSizeWritten) { DWORD FormatSize; @@ -308,7 +308,7 @@ PrimaryDirectSoundBuffer8Impl_fnLock( DWORD dwBytes, LPVOID *ppvAudioPtr1, LPDWORD pdwAudioBytes1, - LPVOID *ppvAudioPtr2, + LPVOID *ppvAudioPtr2, LPDWORD pdwAudioBytes2, DWORD dwFlags) { @@ -386,7 +386,7 @@ PrimaryDirectSoundBuffer8Impl_fnSetFormat( ASSERT(pcfxFormat->cbSize == 0); - DPRINT("This %p Format: Tag %x nChannels %u nSamplesPerSec %u nAvgBytesPerSec %u nBlockAlign %u wBitsPerSample %u cbSize %u\n", This, + DPRINT("This %p Format: Tag %x nChannels %u nSamplesPerSec %u nAvgBytesPerSec %u nBlockAlign %u wBitsPerSample %u cbSize %u\n", This, pcfxFormat->wFormatTag, pcfxFormat->nChannels, pcfxFormat->nSamplesPerSec, pcfxFormat->nAvgBytesPerSec, pcfxFormat->nBlockAlign, pcfxFormat->wBitsPerSample, pcfxFormat->cbSize); CopyMemory(&This->Format, pcfxFormat, sizeof(WAVEFORMATEX)); @@ -519,7 +519,7 @@ HRESULT WINAPI PrimaryDirectSoundBuffer8Impl_fnSetFX( LPDIRECTSOUNDBUFFER8 iface, - DWORD dwEffectsCount, + DWORD dwEffectsCount, LPDSEFFECTDESC pDSFXDesc, LPDWORD pdwResultCodes) { @@ -532,7 +532,7 @@ WINAPI PrimaryDirectSoundBuffer8Impl_fnAcquireResources( LPDIRECTSOUNDBUFFER8 iface, DWORD dwFlags, - DWORD dwEffectsCount, + DWORD dwEffectsCount, LPDWORD pdwResultCodes) { UNIMPLEMENTED; diff --git a/dll/directx/dsound_new/secondary.c b/dll/directx/dsound_new/secondary.c index 008c27cdd1e..3b668ca6191 100644 --- a/dll/directx/dsound_new/secondary.c +++ b/dll/directx/dsound_new/secondary.c @@ -294,7 +294,7 @@ SecondaryDirectSoundBuffer8Impl_fnLock( DWORD dwBytes, LPVOID *ppvAudioPtr1, LPDWORD pdwAudioBytes1, - LPVOID *ppvAudioPtr2, + LPVOID *ppvAudioPtr2, LPDWORD pdwAudioBytes2, DWORD dwFlags) { @@ -543,7 +543,7 @@ HRESULT WINAPI SecondaryDirectSoundBuffer8Impl_fnSetFX( LPDIRECTSOUNDBUFFER8 iface, - DWORD dwEffectsCount, + DWORD dwEffectsCount, LPDSEFFECTDESC pDSFXDesc, LPDWORD pdwResultCodes) { @@ -556,7 +556,7 @@ WINAPI SecondaryDirectSoundBuffer8Impl_fnAcquireResources( LPDIRECTSOUNDBUFFER8 iface, DWORD dwFlags, - DWORD dwEffectsCount, + DWORD dwEffectsCount, LPDWORD pdwResultCodes) { UNIMPLEMENTED; diff --git a/dll/directx/ksproxy/allocator.cpp b/dll/directx/ksproxy/allocator.cpp index 305dbcac702..ef6194468d3 100644 --- a/dll/directx/ksproxy/allocator.cpp +++ b/dll/directx/ksproxy/allocator.cpp @@ -109,8 +109,8 @@ CKsAllocator::QueryInterface( return E_NOINTERFACE; } -CKsAllocator::CKsAllocator() : m_Ref(0), - m_hAllocator(0), +CKsAllocator::CKsAllocator() : m_Ref(0), + m_hAllocator(0), m_Mode(KsAllocatorMode_User), m_Notify(0), m_Allocated(0), diff --git a/dll/directx/ksproxy/classfactory.cpp b/dll/directx/ksproxy/classfactory.cpp index b671ced5307..ee8dd7eaaf0 100644 --- a/dll/directx/ksproxy/classfactory.cpp +++ b/dll/directx/ksproxy/classfactory.cpp @@ -94,10 +94,10 @@ CClassFactory::LockServer( return E_NOTIMPL; } -IClassFactory * +IClassFactory * CClassFactory_fnConstructor( - LPFNCREATEINSTANCE lpfnCI, - PLONG pcRefDll, + LPFNCREATEINSTANCE lpfnCI, + PLONG pcRefDll, IID * riidInst) { CClassFactory* factory = new CClassFactory(lpfnCI, pcRefDll, riidInst); diff --git a/dll/directx/ksproxy/cvpconfig.cpp b/dll/directx/ksproxy/cvpconfig.cpp index 5e60da830bf..d96da8aaa6e 100644 --- a/dll/directx/ksproxy/cvpconfig.cpp +++ b/dll/directx/ksproxy/cvpconfig.cpp @@ -156,7 +156,7 @@ CVPConfig::NotifyGraphChange() HRESULT STDMETHODCALLTYPE CVPConfig::GetConnectInfo( - LPDWORD pdwNumConnectInfo, + LPDWORD pdwNumConnectInfo, IN OUT LPDDVIDEOPORTCONNECT pddVPConnectInfo) { #ifdef KSPROXY_TRACE @@ -214,7 +214,7 @@ CVPConfig::InformVPInputFormats( HRESULT STDMETHODCALLTYPE CVPConfig::GetVideoFormats( - LPDWORD pdwNumFormats, + LPDWORD pdwNumFormats, IN OUT LPDDPIXELFORMAT pddPixelFormats) { #ifdef KSPROXY_TRACE diff --git a/dll/directx/ksproxy/cvpvbiconfig.cpp b/dll/directx/ksproxy/cvpvbiconfig.cpp index 656b8ba5066..e300f3e644d 100644 --- a/dll/directx/ksproxy/cvpvbiconfig.cpp +++ b/dll/directx/ksproxy/cvpvbiconfig.cpp @@ -152,7 +152,7 @@ CVPVBIConfig::NotifyGraphChange() HRESULT STDMETHODCALLTYPE CVPVBIConfig::GetConnectInfo( - LPDWORD pdwNumConnectInfo, + LPDWORD pdwNumConnectInfo, IN OUT LPDDVIDEOPORTCONNECT pddVPConnectInfo) { #ifdef KSPROXY_TRACE @@ -210,7 +210,7 @@ CVPVBIConfig::InformVPInputFormats( HRESULT STDMETHODCALLTYPE CVPVBIConfig::GetVideoFormats( - LPDWORD pdwNumFormats, + LPDWORD pdwNumFormats, IN OUT LPDDPIXELFORMAT pddPixelFormats) { #ifdef KSPROXY_TRACE diff --git a/dll/directx/ksproxy/datatype.cpp b/dll/directx/ksproxy/datatype.cpp index 7f55efc06ed..10f5e7a5b9b 100644 --- a/dll/directx/ksproxy/datatype.cpp +++ b/dll/directx/ksproxy/datatype.cpp @@ -145,7 +145,7 @@ CKsDataTypeHandler::KsIsMediaTypeInRanges( if (Format->nSamplesPerSec >= AudioRange->MinimumSampleFrequency && Format->nSamplesPerSec <= AudioRange->MaximumSampleFrequency && Format->wBitsPerSample >= AudioRange->MinimumSampleFrequency && - Format->wBitsPerSample <= AudioRange->MaximumBitsPerSample && + Format->wBitsPerSample <= AudioRange->MaximumBitsPerSample && Format->nChannels <= AudioRange->MaximumChannels) { // found match diff --git a/dll/directx/ksproxy/input_pin.cpp b/dll/directx/ksproxy/input_pin.cpp index b60c09bd28f..97f952de65d 100644 --- a/dll/directx/ksproxy/input_pin.cpp +++ b/dll/directx/ksproxy/input_pin.cpp @@ -11,7 +11,7 @@ const GUID IID_IKsPinPipe = {0xe539cd90, 0xa8b4, 0x11d1, {0x81, 0x89, 0x00, 0xa0, 0xc9, 0x06, 0x28, 0x02}}; const GUID IID_IKsPinEx = {0x7bb38260L, 0xd19c, 0x11d2, {0xb3, 0x8a, 0x00, 0xa0, 0xc9, 0x5e, 0xc2, 0x2e}}; -KSPIN_INTERFACE StandardPinInterface = +KSPIN_INTERFACE StandardPinInterface = { {STATIC_KSINTERFACESETID_Standard}, KSINTERFACE_STANDARD_STREAMING, @@ -403,7 +403,7 @@ CInputPin::Render( HRESULT STDMETHODCALLTYPE CInputPin::Backout( - IPin *ppinOut, + IPin *ppinOut, IGraphBuilder *pGraph) { #ifdef KSPROXY_TRACE @@ -834,7 +834,7 @@ CInputPin::KsMediaSamplesCompleted(PKSSTREAM_SEGMENT StreamSegment) return NOERROR; } -IMemAllocator * +IMemAllocator * STDMETHODCALLTYPE CInputPin::KsPeekAllocator(KSPEEKOPERATION Operation) { diff --git a/dll/directx/ksproxy/ksproxy.cpp b/dll/directx/ksproxy/ksproxy.cpp index 9509f701ff2..52d83291b98 100644 --- a/dll/directx/ksproxy/ksproxy.cpp +++ b/dll/directx/ksproxy/ksproxy.cpp @@ -408,23 +408,23 @@ DllGetClassObject( { UINT i; HRESULT hres = E_OUTOFMEMORY; - IClassFactory * pcf = NULL; + IClassFactory * pcf = NULL; if (!ppv) return E_INVALIDARG; *ppv = NULL; - for (i = 0; InterfaceTable[i].riid; i++) + for (i = 0; InterfaceTable[i].riid; i++) { - if (IsEqualIID(*InterfaceTable[i].riid, rclsid)) + if (IsEqualIID(*InterfaceTable[i].riid, rclsid)) { pcf = CClassFactory_fnConstructor(InterfaceTable[i].lpfnCI, NULL, NULL); break; } } - if (!pcf) + if (!pcf) { return CLASS_E_CLASSNOTAVAILABLE; } diff --git a/dll/directx/ksproxy/mediasample.cpp b/dll/directx/ksproxy/mediasample.cpp index 4c1fa095f90..7d3df6c9fc4 100644 --- a/dll/directx/ksproxy/mediasample.cpp +++ b/dll/directx/ksproxy/mediasample.cpp @@ -80,7 +80,7 @@ public: CMediaSample::CMediaSample( IMemAllocator * Allocator, BYTE * Buffer, - LONG BufferSize) : + LONG BufferSize) : m_Flags(0), m_TypeFlags(0), m_Buffer(Buffer), @@ -340,7 +340,7 @@ CMediaSample::SetMediaTime(LONGLONG *pTimeStart, LONGLONG *pTimeEnd) HRESULT WINAPI CMediaSample_Constructor( - IMemAllocator* Allocator, + IMemAllocator* Allocator, BYTE* pBuffer, ULONG BufferSize, REFIID riid, diff --git a/dll/directx/ksproxy/precomp.h b/dll/directx/ksproxy/precomp.h index 9255270997a..c1667f5166a 100644 --- a/dll/directx/ksproxy/precomp.h +++ b/dll/directx/ksproxy/precomp.h @@ -52,7 +52,7 @@ typedef struct { IClassFactory * CClassFactory_fnConstructor( - LPFNCREATEINSTANCE lpfnCI, + LPFNCREATEINSTANCE lpfnCI, PLONG pcRefDll, IID * riidInst); @@ -189,7 +189,7 @@ CKsAllocator_Constructor( HRESULT WINAPI CMediaSample_Constructor( - IMemAllocator* Allocator, + IMemAllocator* Allocator, BYTE* pBuffer, ULONG BufferSize, REFIID riid, diff --git a/dll/directx/ksproxy/proxy.cpp b/dll/directx/ksproxy/proxy.cpp index 940d6e61bdd..3f38d6d5f0f 100644 --- a/dll/directx/ksproxy/proxy.cpp +++ b/dll/directx/ksproxy/proxy.cpp @@ -2431,7 +2431,7 @@ CKsProxy::GetPinName( swprintf(Buffer, L"Output%lu", PinCount); } - // allocate pin name + // allocate pin name PinName = (LPWSTR)CoTaskMemAlloc((wcslen(Buffer)+1) * sizeof(WCHAR)); if (!PinName) return E_OUTOFMEMORY; @@ -2697,7 +2697,7 @@ CKsProxy::Save(IPropertyBag *pPropBag, BOOL fClearDirty, BOOL fSaveAllProperties //------------------------------------------------------------------- // IBaseFilter interface -// +// HRESULT STDMETHODCALLTYPE diff --git a/dll/directx/ksproxy/qualityforward.cpp b/dll/directx/ksproxy/qualityforward.cpp index 7d7bb46d90f..c9fe91a8655 100644 --- a/dll/directx/ksproxy/qualityforward.cpp +++ b/dll/directx/ksproxy/qualityforward.cpp @@ -36,7 +36,7 @@ public: HANDLE STDMETHODCALLTYPE KsGetObjectHandle(); // IKsQualityForwarder - VOID STDMETHODCALLTYPE KsFlushClient(IN IKsPin *Pin); + VOID STDMETHODCALLTYPE KsFlushClient(IN IKsPin *Pin); CKsQualityForwarder(HANDLE handle) : m_Ref(0), m_Handle(handle){} virtual ~CKsQualityForwarder(){ if (m_Handle) CloseHandle(m_Handle);} diff --git a/dll/directx/ksuser/ksuser.c b/dll/directx/ksuser/ksuser.c index d59a84e8058..251a473afd4 100644 --- a/dll/directx/ksuser/ksuser.c +++ b/dll/directx/ksuser/ksuser.c @@ -94,7 +94,7 @@ KsiCreateObjectType( HANDLE hHandle, * @param PHANDLE AllocatorHandle * Our new handle that we have alloc * -* @return +* @return * Return NTSTATUS error code or sussess code. * * @remarks. @@ -124,7 +124,7 @@ KsCreateAllocator(HANDLE ConnectionHandle, * The function KsCreateClock creates handle to clock instance * * @param HANDLE ConnectionHandle -* Handle to use to create the clock +* Handle to use to create the clock * * @param PKSCLOCK_CREATE ClockCreate * parameter to use to create the clock @@ -132,7 +132,7 @@ KsCreateAllocator(HANDLE ConnectionHandle, * @param PHANDLE ClockHandle * The new handle * -* @return +* @return * Return NTSTATUS error code or sussess code. * * @remarks. @@ -164,9 +164,9 @@ KsCreateClock(HANDLE ConnectionHandle, * handle of the filter initiating the create request * * @param PKSPIN_CONNECT Connect -* Pointer to a KSPIN_CONNECT structure that contains parameters for the requested connection. +* Pointer to a KSPIN_CONNECT structure that contains parameters for the requested connection. * This should be followed in memory by a KSDATAFORMAT data structure, describing the data format -* requested for the connection. +* requested for the connection. * @param ACCESS_MASK DesiredAccess * Desired access @@ -174,13 +174,13 @@ KsCreateClock(HANDLE ConnectionHandle, * @param PHANDLE ConnectionHandle * connection handle passed * -* @return +* @return * Return NTSTATUS error code or sussess code. * * @remarks. -* The flag in PKSDATAFORMAT is not really document, +* The flag in PKSDATAFORMAT is not really document, * to find it u need api monitor allot api and figout -* how it works, only flag I have found is the +* how it works, only flag I have found is the * KSDATAFORMAT_ATTRIBUTES flag, it doing a Align * of LONLONG size, it also round up it. * @@ -212,11 +212,11 @@ KsCreatePin(HANDLE FilterHandle, * @name KsCreateTopologyNode * @implemented * -* The function KsCreateTopologyNode creates a handle to a topology node instance +* The function KsCreateTopologyNode creates a handle to a topology node instance * * @param HANDLE ParentHandle * Handle to parent when want to use when we created the node on -* +* * * @param PKSNODE_CREATE NodeCreate * topology node parameters to use when it is create @@ -227,7 +227,7 @@ KsCreatePin(HANDLE FilterHandle, * @param PHANDLE NodeHandle * Location for the topology node handle * -* @return +* @return * Return NTSTATUS error code or sussess code. * * @remarks. @@ -251,8 +251,8 @@ KsCreateTopologyNode(HANDLE ParentHandle, } -BOOL -APIENTRY +BOOL +APIENTRY DllMain(HANDLE hModule, DWORD ulreason, LPVOID lpReserved) { switch (ulreason) diff --git a/dll/directx/msdvbnp/classfactory.cpp b/dll/directx/msdvbnp/classfactory.cpp index 677e1131d14..52cea80e7f8 100644 --- a/dll/directx/msdvbnp/classfactory.cpp +++ b/dll/directx/msdvbnp/classfactory.cpp @@ -87,10 +87,10 @@ CClassFactory::LockServer( return E_NOTIMPL; } -IClassFactory * +IClassFactory * CClassFactory_fnConstructor( - LPFNCREATEINSTANCE lpfnCI, - PLONG pcRefDll, + LPFNCREATEINSTANCE lpfnCI, + PLONG pcRefDll, IID * riidInst) { CClassFactory* factory = new CClassFactory(lpfnCI, pcRefDll, riidInst); diff --git a/dll/directx/msdvbnp/msdvbnp.cpp b/dll/directx/msdvbnp/msdvbnp.cpp index 3951148b54f..a3b052712e0 100644 --- a/dll/directx/msdvbnp/msdvbnp.cpp +++ b/dll/directx/msdvbnp/msdvbnp.cpp @@ -212,9 +212,9 @@ DllGetClassObject( *ppv = NULL; - for (i = 0; InterfaceTable[i].riid; i++) + for (i = 0; InterfaceTable[i].riid; i++) { - if (IsEqualIID(*InterfaceTable[i].riid, rclsid)) + if (IsEqualIID(*InterfaceTable[i].riid, rclsid)) { pcf = CClassFactory_fnConstructor(InterfaceTable[i].lpfnCI, NULL, NULL); break; diff --git a/dll/directx/msdvbnp/networkprovider.cpp b/dll/directx/msdvbnp/networkprovider.cpp index 3561888a6ab..ec97523fc46 100644 --- a/dll/directx/msdvbnp/networkprovider.cpp +++ b/dll/directx/msdvbnp/networkprovider.cpp @@ -206,7 +206,7 @@ CNetworkProvider::QueryInterface( } CNetworkProvider::CNetworkProvider(LPCGUID ClassID) : m_Ref(0), - m_pGraph(0), + m_pGraph(0), m_ReferenceClock(0), m_FilterState(State_Stopped), m_DeviceFilters(), diff --git a/dll/directx/msdvbnp/scanningtuner.cpp b/dll/directx/msdvbnp/scanningtuner.cpp index 0fb22786487..3b86a664f23 100644 --- a/dll/directx/msdvbnp/scanningtuner.cpp +++ b/dll/directx/msdvbnp/scanningtuner.cpp @@ -151,7 +151,7 @@ CScanningTunner::put_TuneRequest( ILocator *pLocator; IDVBTLocator *pDVBTLocator; HRESULT hr; - + OutputDebugStringW(L"CScanningTunner::put_TuneRequest\n"); diff --git a/dll/directx/msvidctl/classfactory.cpp b/dll/directx/msvidctl/classfactory.cpp index 7c2abf1eb22..f47d0bbcc92 100644 --- a/dll/directx/msvidctl/classfactory.cpp +++ b/dll/directx/msvidctl/classfactory.cpp @@ -87,10 +87,10 @@ CClassFactory::LockServer( return E_NOTIMPL; } -IClassFactory * +IClassFactory * CClassFactory_fnConstructor( - LPFNCREATEINSTANCE lpfnCI, - PLONG pcRefDll, + LPFNCREATEINSTANCE lpfnCI, + PLONG pcRefDll, IID * riidInst) { CClassFactory* factory = new CClassFactory(lpfnCI, pcRefDll, riidInst); diff --git a/dll/directx/msvidctl/msvidctl.cpp b/dll/directx/msvidctl/msvidctl.cpp index b7f5627e987..54815e0ff86 100644 --- a/dll/directx/msvidctl/msvidctl.cpp +++ b/dll/directx/msvidctl/msvidctl.cpp @@ -122,23 +122,23 @@ DllGetClassObject( { UINT i; HRESULT hres = E_OUTOFMEMORY; - IClassFactory * pcf = NULL; + IClassFactory * pcf = NULL; if (!ppv) return E_INVALIDARG; *ppv = NULL; - for (i = 0; InterfaceTable[i].riid; i++) + for (i = 0; InterfaceTable[i].riid; i++) { - if (IsEqualIID(*InterfaceTable[i].riid, rclsid)) + if (IsEqualIID(*InterfaceTable[i].riid, rclsid)) { pcf = CClassFactory_fnConstructor(InterfaceTable[i].lpfnCI, NULL, NULL); break; } } - if (!pcf) + if (!pcf) { return CLASS_E_CLASSNOTAVAILABLE; } diff --git a/dll/directx/wine/readme.txt b/dll/directx/wine/readme.txt index 99308ae012e..3cb2dfddc8e 100644 --- a/dll/directx/wine/readme.txt +++ b/dll/directx/wine/readme.txt @@ -1,21 +1,20 @@ -This Is wine DirectX support. -It works in reactos and windows -When ReactOS own ReactX are inplace -this file will be remove from our SVN -for now they stay as temporary solutions +This is Wine DirectX support. +It works in Reactos and Windows. +When ReactOS own ReactX are in-place +this file will be removed from our SVN +for now they stay as temporary solutions. - -People that have help getting this thing -to working in ReactOS Building system +People that have helped getting this thing +to work in ReactOS building system: Roderick Colenbrander - thunderbird2k at gmx dot net -The informations how to build it and done -the windows port in wine (wine devloper) +The informations how to build it and done +the Windows port in Wine (Wine devloper). -Magnus Olsen aka GreatLord -Did import it to ReactOS and setupup -the build +Magnus Olsen aka GreatLord +Did import it to ReactOS and setup +the build. GedMurphy Did help with minor issue, info how to -make DllMain being call +make DllMain being called. diff --git a/dll/directx/wine/wined3d/roshacks.txt b/dll/directx/wine/wined3d/roshacks.txt index 68c40567cad..4e802d1e5a9 100644 --- a/dll/directx/wine/wined3d/roshacks.txt +++ b/dll/directx/wine/wined3d/roshacks.txt @@ -3,5 +3,5 @@ directx.c ----------- gdi32.dll to opengl32.dll comment out line 186 as well in function -WineD3D_ReleaseFakeGLContext +WineD3D_ReleaseFakeGLContext row pwglDeleteContext(glCtx); diff --git a/dll/keyboard/kbdbga/kbdbga.c b/dll/keyboard/kbdbga/kbdbga.c index 667071e021b..0d1c27ed56c 100644 --- a/dll/keyboard/kbdbga/kbdbga.c +++ b/dll/keyboard/kbdbga/kbdbga.c @@ -3,7 +3,7 @@ * Àðäà -Áúëãàðñêà êëàâèàòóðíà ïîäðåäáà '÷øåðòú' çà ÐåàêòÎÑ * Copyright (C) 2007 ReactOS * License: LGPL, see: LGPL.txt - * + * * Thanks to: http://www.barcodeman.com/altek/mule/scandoc.php * and http://win.tue.nl/~aeb/linux/kbd/scancodes-1.html */ @@ -33,7 +33,7 @@ ROSDATA USHORT scancode_to_vk[] = { /* Numbers Row Öèôðîâ ðåä*/ /* - 00 - */ - /* 1 ... 2 ... 3 ... 4 ... */ + /* 1 ... 2 ... 3 ... 4 ... */ VK_EMPTY, VK_ESCAPE, '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', @@ -42,14 +42,14 @@ ROSDATA USHORT scancode_to_vk[] = { /* First Letters Row Ïúðâè áóêâåí ðåä*/ VK_TAB, 'Q', 'W', 'E', 'R', 'T', 'Y', 'U', - 'I', 'O', 'P', + 'I', 'O', 'P', VK_OEM_4, VK_OEM_6, VK_RETURN, /* - 1d - */ /* Second Letters Row Âòîðè áóêâåí ðåä*/ - VK_LCONTROL, + VK_LCONTROL, 'A', 'S', 'D', 'F', 'G', 'H', 'J', 'K', - 'L', VK_OEM_1, VK_OEM_7, VK_OEM_3, + 'L', VK_OEM_1, VK_OEM_7, VK_OEM_3, VK_LSHIFT, VK_OEM_5, /* - 2c - */ /* Third letters row Òðåòè áóêâåí ðåä*/ @@ -59,15 +59,15 @@ ROSDATA USHORT scancode_to_vk[] = { /* - 37 - */ /* Bottom Row */ 0x26a, VK_LMENU, VK_SPACE, VK_CAPITAL, - + /* - 3b - */ /* F-Keys */ - VK_F1, VK_F2, VK_F3, VK_F4, VK_F5, VK_F6, + VK_F1, VK_F2, VK_F3, VK_F4, VK_F5, VK_F6, VK_F7, VK_F8, VK_F9, VK_F10, /* - 45 - */ /* Locks */ - VK_NUMLOCK | KMEXT, - VK_SCROLL | KBDMULTIVK, + VK_NUMLOCK | KMEXT, + VK_SCROLL | KBDMULTIVK, /* - 47 - */ /* Number-Pad Öèôðîâà ïîäëîæêà */ VK_HOME | KNUMS, VK_UP | KNUMS, VK_PRIOR | KNUMS, VK_SUBTRACT, @@ -83,11 +83,11 @@ ROSDATA USHORT scancode_to_vk[] = { /* - 59 - */ VK_CLEAR, VK_OEM_WSCTRL,VK_OEM_FINISH,VK_OEM_JUMP, VK_EREOF, /* EREOF */ VK_OEM_BACKTAB, VK_OEM_AUTO, VK_EMPTY, VK_ZOOM, /* ZOOM */ - VK_HELP, + VK_HELP, /* - 64 - */ /* Even more F-Keys (for example, NCR keyboards from the early 90's) */ VK_F13, VK_F14, VK_F15, VK_F16, VK_F17, VK_F18, VK_F19, VK_F20, - VK_F21, VK_F22, VK_F23, + VK_F21, VK_F22, VK_F23, /* - 6f - */ /* Not sure who uses these codes */ VK_OEM_PA3, VK_EMPTY, VK_OEM_RESET, @@ -239,7 +239,7 @@ ROSDATA VK_TO_WCHARS3 key_to_chars_3mod[] = { /* { VK_OEM_5, 0, {0x5c, 0x2f, 0x1c} }, */ { VK_OEM_5, CAPLOK, {0x44c, 0x42c} }, //üÜ { VK_OEM_102, 0, {0x5c, 0x7c} }, - { VK_BACK, 0, {0x8, 0x8, 0x7f} }, + { VK_BACK, 0, {0x8, 0x8, 0x7f} }, { VK_ESCAPE, 0, {0x1b, 0x1b, 0x1b} }, { VK_RETURN, 0, {'\r', '\r', '\n'} }, { VK_SPACE, 0, {' ', ' ', ' '} }, @@ -367,10 +367,10 @@ ROSDATA VSC_LPWSTR extended_key_names[] = { ROSDATA KBDTABLES keyboard_layout_table = { /* modifier assignments */ &modifier_bits, - + /* character from vk tables */ vk_to_wchar_master_table, - + /* diacritical marks */ NULL, diff --git a/dll/keyboard/kbdbgm/kbdbgm.c b/dll/keyboard/kbdbgm/kbdbgm.c index 14ca5a24713..902061c04a5 100644 --- a/dll/keyboard/kbdbgm/kbdbgm.c +++ b/dll/keyboard/kbdbgm/kbdbgm.c @@ -3,7 +3,7 @@ * Ìàðèöà - Áúëãàðñêà êëàâèàòóðíà ïîäðåäáà ïî ÁÄÑ 5237-78 çà ÐåàêòÎÑ * Copyright (C) 2007 ReactOS * License: LGPL, see: LGPL.txt - * + * * Thanks to: http://www.barcodeman.com/altek/mule/scandoc.php * and http://win.tue.nl/~aeb/linux/kbd/scancodes-1.html */ @@ -33,7 +33,7 @@ ROSDATA USHORT scancode_to_vk[] = { /* Numbers Row Öèôðîâ ðåä*/ /* - 00 - */ - /* 1 ... 2 ... 3 ... 4 ... */ + /* 1 ... 2 ... 3 ... 4 ... */ VK_EMPTY, VK_ESCAPE, '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', @@ -42,14 +42,14 @@ ROSDATA USHORT scancode_to_vk[] = { /* First Letters Row Ïúðâè áóêâåí ðåä*/ VK_TAB, 'Q', 'W', 'E', 'R', 'T', 'Y', 'U', - 'I', 'O', 'P', + 'I', 'O', 'P', VK_OEM_4, VK_OEM_6, VK_RETURN, /* - 1d - */ /* Second Letters Row Âòîðè áóêâåí ðåä*/ - VK_LCONTROL, + VK_LCONTROL, 'A', 'S', 'D', 'F', 'G', 'H', 'J', 'K', - 'L', VK_OEM_1, VK_OEM_7, VK_OEM_3, + 'L', VK_OEM_1, VK_OEM_7, VK_OEM_3, VK_LSHIFT, VK_OEM_5, /* - 2c - */ /* Third letters row Òðåòè áóêâåí ðåä*/ @@ -59,15 +59,15 @@ ROSDATA USHORT scancode_to_vk[] = { /* - 37 - */ /* Bottom Row */ 0x26a, VK_LMENU, VK_SPACE, VK_CAPITAL, - + /* - 3b - */ /* F-Keys */ - VK_F1, VK_F2, VK_F3, VK_F4, VK_F5, VK_F6, + VK_F1, VK_F2, VK_F3, VK_F4, VK_F5, VK_F6, VK_F7, VK_F8, VK_F9, VK_F10, /* - 45 - */ /* Locks */ - VK_NUMLOCK | KMEXT, - VK_SCROLL | KBDMULTIVK, + VK_NUMLOCK | KMEXT, + VK_SCROLL | KBDMULTIVK, /* - 47 - */ /* Number-Pad Öèôðîâà ïîäëîæêà */ VK_HOME | KNUMS, VK_UP | KNUMS, VK_PRIOR | KNUMS, VK_SUBTRACT, @@ -83,11 +83,11 @@ ROSDATA USHORT scancode_to_vk[] = { /* - 59 - */ VK_CLEAR, VK_OEM_WSCTRL,VK_OEM_FINISH,VK_OEM_JUMP, VK_EREOF, /* EREOF */ VK_OEM_BACKTAB, VK_OEM_AUTO, VK_EMPTY, VK_ZOOM, /* ZOOM */ - VK_HELP, + VK_HELP, /* - 64 - */ /* Even more F-Keys (for example, NCR keyboards from the early 90's) */ VK_F13, VK_F14, VK_F15, VK_F16, VK_F17, VK_F18, VK_F19, VK_F20, - VK_F21, VK_F22, VK_F23, + VK_F21, VK_F22, VK_F23, /* - 6f - */ /* Not sure who uses these codes */ VK_OEM_PA3, VK_EMPTY, VK_OEM_RESET, @@ -240,7 +240,7 @@ ROSDATA VK_TO_WCHARS3 key_to_chars_3mod[] = { /* { VK_OEM_5, 0, {0x5c, 0x2f, 0x1c} }, Ñòàðàòà ñòîéíîñò, íàäÿâàì ñå òóê äà å áÁ */ { VK_OEM_5, CAPLOK, {0x431, 0x411} }, { VK_OEM_102, 0, {0x5c, 0x2f, 0x1c} }, /* Òóê îñâåí äà å äîïúëíèòåëíîòî êîï÷å äî ëÿâàòà ñìÿíà */ - { VK_BACK, 0, {0x8, 0x8, 0x7f} }, + { VK_BACK, 0, {0x8, 0x8, 0x7f} }, { VK_ESCAPE, 0, {0x1b, 0x1b, 0x1b} }, { VK_RETURN, 0, {'\r', '\r', '\n'} }, { VK_SPACE, 0, {' ', ' ', ' '} }, @@ -368,10 +368,10 @@ ROSDATA VSC_LPWSTR extended_key_names[] = { ROSDATA KBDTABLES keyboard_layout_table = { /* modifier assignments */ &modifier_bits, - + /* character from vk tables */ vk_to_wchar_master_table, - + /* diacritical marks */ NULL, diff --git a/dll/keyboard/kbdbgt/kbdbgt.c b/dll/keyboard/kbdbgt/kbdbgt.c index c1e85be7c25..80b4b011d42 100644 --- a/dll/keyboard/kbdbgt/kbdbgt.c +++ b/dll/keyboard/kbdbgt/kbdbgt.c @@ -3,7 +3,7 @@ * Òóíäæà - Áúëãàðñêà êëàâèàòóðíà ïîçâóêîâà ïîäðåäáà 'ÿâåðòú' çà ÐåàêòÎÑ * Copyright (C) 2007 ReactOS * License: LGPL, see: LGPL.txt - * + * * Thanks to: http://www.barcodeman.com/altek/mule/scandoc.php * and http://win.tue.nl/~aeb/linux/kbd/scancodes-1.html */ @@ -33,7 +33,7 @@ ROSDATA USHORT scancode_to_vk[] = { /* Numbers Row Öèôðîâ ðåä*/ /* - 00 - */ - /* 1 ... 2 ... 3 ... 4 ... */ + /* 1 ... 2 ... 3 ... 4 ... */ VK_EMPTY, VK_ESCAPE, '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', @@ -42,14 +42,14 @@ ROSDATA USHORT scancode_to_vk[] = { /* First Letters Row Ïúðâè áóêâåí ðåä*/ VK_TAB, 'Q', 'W', 'E', 'R', 'T', 'Y', 'U', - 'I', 'O', 'P', + 'I', 'O', 'P', VK_OEM_4, VK_OEM_6, VK_RETURN, /* - 1d - */ /* Second Letters Row Âòîðè áóêâåí ðåä*/ - VK_LCONTROL, + VK_LCONTROL, 'A', 'S', 'D', 'F', 'G', 'H', 'J', 'K', - 'L', VK_OEM_1, VK_OEM_7, VK_OEM_3, + 'L', VK_OEM_1, VK_OEM_7, VK_OEM_3, VK_LSHIFT, VK_OEM_5, /* - 2c - */ /* Third letters row Òðåòè áóêâåí ðåä*/ @@ -59,15 +59,15 @@ ROSDATA USHORT scancode_to_vk[] = { /* - 37 - */ /* Bottom Row */ 0x26a, VK_LMENU, VK_SPACE, VK_CAPITAL, - + /* - 3b - */ /* F-Keys */ - VK_F1, VK_F2, VK_F3, VK_F4, VK_F5, VK_F6, + VK_F1, VK_F2, VK_F3, VK_F4, VK_F5, VK_F6, VK_F7, VK_F8, VK_F9, VK_F10, /* - 45 - */ /* Locks */ - VK_NUMLOCK | KMEXT, - VK_SCROLL | KBDMULTIVK, + VK_NUMLOCK | KMEXT, + VK_SCROLL | KBDMULTIVK, /* - 47 - */ /* Number-Pad Öèôðîâà ïîäëîæêà */ VK_HOME | KNUMS, VK_UP | KNUMS, VK_PRIOR | KNUMS, VK_SUBTRACT, @@ -83,11 +83,11 @@ ROSDATA USHORT scancode_to_vk[] = { /* - 59 - */ VK_CLEAR, VK_OEM_WSCTRL,VK_OEM_FINISH,VK_OEM_JUMP, VK_EREOF, /* EREOF */ VK_OEM_BACKTAB, VK_OEM_AUTO, VK_EMPTY, VK_ZOOM, /* ZOOM */ - VK_HELP, + VK_HELP, /* - 64 - */ /* Even more F-Keys (for example, NCR keyboards from the early 90's) */ VK_F13, VK_F14, VK_F15, VK_F16, VK_F17, VK_F18, VK_F19, VK_F20, - VK_F21, VK_F22, VK_F23, + VK_F21, VK_F22, VK_F23, /* - 6f - */ /* Not sure who uses these codes */ VK_OEM_PA3, VK_EMPTY, VK_OEM_RESET, @@ -238,7 +238,7 @@ ROSDATA VK_TO_WCHARS3 key_to_chars_3mod[] = { /* Legacy (telnet-style) ascii escapes */ { VK_OEM_5, CAPLOK, {0x44e, 0x42e} }, //þÞ { VK_OEM_102, 0, {0x5c, 0x7c} }, // \| Òîçè êëàâèø ëèïñâà íà ìíîãî êëàâèàòóðè - { VK_BACK, 0, {0x8, 0x8, 0x7f} }, + { VK_BACK, 0, {0x8, 0x8, 0x7f} }, { VK_ESCAPE, 0, {0x1b, 0x1b, 0x1b} }, { VK_RETURN, 0, {'\r', '\r', '\n'} }, { VK_SPACE, 0, {' ', ' ', ' '} }, @@ -263,7 +263,7 @@ ROSDATA VK_TO_WCHARS5 key_to_chars_5mod[] = { { 'I', CAPLOK, {0x438, 0x418, WCH_NONE, 0x44b, 0x42b} }, //èÈûÛ { 'O', CAPLOK, {0x43e, 0x41e, WCH_NONE, 0x451, 0x401} }, //oO¸¨ { 'J', CAPLOK, {0x439, 0x419, WCH_NONE, 0x45d, 0x40d} }, //éÉ ìàëêî è ãëàâíî „è” ñ óäàðåíèå -//Ñëåäâàùèòå ðåäîâå ìîãàò äà ñà è â ROSDATA VK_TO_WCHARS4, +//Ñëåäâàùèòå ðåäîâå ìîãàò äà ñà è â ROSDATA VK_TO_WCHARS4, //êàòî ïîñëåäíîòî èì ïîïúëíåíèå òðÿáâà äà ñå ìàõíå { '3', 0, {'3', '#', WCH_NONE, 0x2116, 0x2116} }, //3#¹¹ { '6', 0, {'6', '^', WCH_NONE, 0x20AC,0x20AC } }, //6^ˆˆ @@ -383,10 +383,10 @@ ROSDATA VSC_LPWSTR extended_key_names[] = { ROSDATA KBDTABLES keyboard_layout_table = { /* modifier assignments */ &modifier_bits, - + /* character from vk tables */ vk_to_wchar_master_table, - + /* diacritical marks */ NULL, diff --git a/dll/keyboard/kbdheb/kbdheb.c b/dll/keyboard/kbdheb/kbdheb.c index 00c5b209326..daf1d0c130b 100644 --- a/dll/keyboard/kbdheb/kbdheb.c +++ b/dll/keyboard/kbdheb/kbdheb.c @@ -94,7 +94,7 @@ enum RESH, SHIN, TAV, - + // symbols SHEQEL = 0x20AA }; diff --git a/dll/keyboard/kbdko/kbdko.c b/dll/keyboard/kbdko/kbdko.c index d6b10143f87..e3553a9342d 100644 --- a/dll/keyboard/kbdko/kbdko.c +++ b/dll/keyboard/kbdko/kbdko.c @@ -7,9 +7,9 @@ * and http://win.tue.nl/~aeb/linux/kbd/scancodes-1.html */ -/* +/* * Important Note / TODO: - * This file is a copy of kbdus.c and needs to adapt to Korean + * This file is a copy of kbdus.c and needs to adapt to Korean * keyboard layout! */ diff --git a/dll/keyboard/kbdpl/kbdpl.c b/dll/keyboard/kbdpl/kbdpl.c index d7b0e353644..b2557bf34a6 100644 --- a/dll/keyboard/kbdpl/kbdpl.c +++ b/dll/keyboard/kbdpl/kbdpl.c @@ -187,7 +187,7 @@ ROSDATA VK_TO_WCHARS2 key_to_chars_2mod[] = { /* Specials */ { VK_OEM_PLUS, 0, {'+', '?'} }, - + { VK_OEM_3, 0, {WCH_DEAD,WCH_DEAD} }, { 0xff, 0, {0x02db,0xb7} }, { VK_OEM_2, 0, {'\'','*'} }, diff --git a/dll/keyboard/kbdsk/kbdsk.c b/dll/keyboard/kbdsk/kbdsk.c index 4f636ab1e7e..e01e6521482 100644 --- a/dll/keyboard/kbdsk/kbdsk.c +++ b/dll/keyboard/kbdsk/kbdsk.c @@ -222,7 +222,7 @@ ROSDATA VK_TO_WCHARS4 key_to_chars_4mod[] = { { VK_OEM_7, 0, {0x0148, ')', WCH_NONE, 0x00a4} }, // n with caron { VK_OEM_COMMA, 0, {',', '?', WCH_NONE, '<'} }, { VK_OEM_PERIOD, 0, {'.', ':', WCH_NONE, '>'} }, - + /* The alphabet */ { 'A', CAPLOK, {'a', 'A', 0x01, WCH_NONE} }, { 'B', CAPLOK, {'b', 'B', 0x02, '{'} }, diff --git a/dll/keyboard/kbdsk1/kbdsk1.c b/dll/keyboard/kbdsk1/kbdsk1.c index ec02c8aa221..7f505a4bd25 100644 --- a/dll/keyboard/kbdsk1/kbdsk1.c +++ b/dll/keyboard/kbdsk1/kbdsk1.c @@ -222,7 +222,7 @@ ROSDATA VK_TO_WCHARS4 key_to_chars_4mod[] = { { VK_OEM_7, 0, {0x0148, ')', WCH_NONE, 0x00a4} }, // n with caron { VK_OEM_COMMA, 0, {',', '?', WCH_NONE, '<'} }, { VK_OEM_PERIOD, 0, {'.', ':', WCH_NONE, '>'} }, - + /* The alphabet */ { 'A', CAPLOK, {'a', 'A', 0x01, WCH_NONE} }, { 'B', CAPLOK, {'b', 'B', 0x02, '{'} }, diff --git a/dll/nls/normaliz/CMakeLists.txt b/dll/nls/normaliz/CMakeLists.txt index ee51a44aca3..a1b7087da83 100644 --- a/dll/nls/normaliz/CMakeLists.txt +++ b/dll/nls/normaliz/CMakeLists.txt @@ -10,7 +10,7 @@ list(APPEND SOURCE nameprep.c normalize.c ${CMAKE_CURRENT_BINARY_DIR}/normaliz.def) - + add_library(normaliz MODULE ${SOURCE}) set_module_type(normaliz win32dll ENTRYPOINT 0) add_importlibs(normaliz msvcrt kernel32 ntdll) diff --git a/dll/ntdll/dbg/dbgui.c b/dll/ntdll/dbg/dbgui.c index ccc89fb89b8..87545530fef 100644 --- a/dll/ntdll/dbg/dbgui.c +++ b/dll/ntdll/dbg/dbgui.c @@ -64,7 +64,7 @@ DbgUiConvertStateChangeStructure(IN PDBGUI_WAIT_STATE_CHANGE WaitStateChange, NTSTATUS Status; THREAD_BASIC_INFORMATION ThreadBasicInfo; LPDEBUG_EVENT DebugEvent = Win32DebugEvent; - + /* Write common data */ DebugEvent->dwProcessId = PtrToUlong(WaitStateChange->AppClientId.UniqueProcess); DebugEvent->dwThreadId = PtrToUlong(WaitStateChange->AppClientId.UniqueThread); diff --git a/dll/ntdll/dispatch/amd64/dispatch.S b/dll/ntdll/dispatch/amd64/dispatch.S index a78ca687c23..ea08389c919 100644 --- a/dll/ntdll/dispatch/amd64/dispatch.S +++ b/dll/ntdll/dispatch/amd64/dispatch.S @@ -218,7 +218,7 @@ Exit: mov dword ptr [rsp + ErExceptionFlags], EXCEPTION_NONCONTINUABLE mov [rsp + ErExceptionRecord], rcx mov [rsp + ErExceptionCode], edx - + /* Raise the exception */ mov rcx, rsp call RtlRaiseException diff --git a/dll/ntdll/include/ntdllp.h b/dll/ntdll/include/ntdllp.h index 2ec4f44d778..418e4a394d2 100644 --- a/dll/ntdll/include/ntdllp.h +++ b/dll/ntdll/include/ntdllp.h @@ -211,7 +211,7 @@ LdrpLoadImportModule(IN PWSTR DllPath OPTIONAL, IN LPSTR ImportName, OUT PLDR_DATA_TABLE_ENTRY *DataTableEntry, OUT PBOOLEAN Existing); - + VOID NTAPI LdrpFinalizeAndDeallocateDataTableEntry(IN PLDR_DATA_TABLE_ENTRY Entry); diff --git a/dll/ntdll/ldr/ldrutils.c b/dll/ntdll/ldr/ldrutils.c index 5b1ec30e525..37b2ecf44d2 100644 --- a/dll/ntdll/ldr/ldrutils.c +++ b/dll/ntdll/ldr/ldrutils.c @@ -452,7 +452,7 @@ LdrpUpdateLoadCount3(IN PLDR_DATA_TABLE_ENTRY LdrEntry, done: /* Release the context */ - RtlDeactivateActivationContextUnsafeFast(&ActCtx); + RtlDeactivateActivationContextUnsafeFast(&ActCtx); } VOID diff --git a/dll/ntdll/ldr/verifier.c b/dll/ntdll/ldr/verifier.c index 6a44572a199..2affe04dc80 100644 --- a/dll/ntdll/ldr/verifier.c +++ b/dll/ntdll/ldr/verifier.c @@ -173,7 +173,7 @@ AVrfpSnapDllImports(IN PLDR_DATA_TABLE_ENTRY LdrEntry) PVOID Ptr = &FirstThunk->u1.Function; SIZE_T Size = sizeof(FirstThunk->u1.Function) * AVrfpCountThunks(FirstThunk); NTSTATUS Status; - + UnprotectedPtr = Ptr; UnprotectedSize = Size; diff --git a/dll/ntdll/rtl/libsupp.c b/dll/ntdll/rtl/libsupp.c index c16f243cec4..e25892e4001 100644 --- a/dll/ntdll/rtl/libsupp.c +++ b/dll/ntdll/rtl/libsupp.c @@ -755,7 +755,7 @@ NTSTATUS find_actctx_dll( PUNICODE_STRING pnameW, LPWSTR *fullname, PUNICODE_STR { status = STATUS_SXS_KEY_NOT_FOUND; goto done; - } + } if ((p = wcsrchr( info->lpAssemblyManifestPath, '\\' ))) { diff --git a/dll/opengl/mesa/CMakeLists.txt b/dll/opengl/mesa/CMakeLists.txt index 20f8d31137c..f7decf1e2cd 100644 --- a/dll/opengl/mesa/CMakeLists.txt +++ b/dll/opengl/mesa/CMakeLists.txt @@ -68,4 +68,4 @@ list(APPEND SOURCE add_library(mesa STATIC ${SOURCE} ${mesa_asm}) add_dependencies(mesa psdk) - + diff --git a/dll/opengl/opengl32/glfuncs.h b/dll/opengl/opengl32/glfuncs.h index b170d79aac0..fc93401356e 100644 --- a/dll/opengl/opengl32/glfuncs.h +++ b/dll/opengl/opengl32/glfuncs.h @@ -1,4 +1,4 @@ -/* +/* * List of all GL functions exported by opengl32.dll. * Usage: USE_GL_FUNC(name, return type, prototype arguments, call arguments, icd offset, x86 stack size) */ diff --git a/dll/opengl/opengl32/icd.h b/dll/opengl/opengl32/icd.h index 2e1764e3cb9..c04ab6f5c57 100644 --- a/dll/opengl/opengl32/icd.h +++ b/dll/opengl/opengl32/icd.h @@ -368,7 +368,7 @@ struct ICD_Data WCHAR DriverName[256]; /* The DLL handle */ HMODULE hModule; - + /* The ICD DLL exports */ BOOL (WINAPI *DrvCopyContext)( DHGLRC, DHGLRC, UINT ); DHGLRC (WINAPI *DrvCreateContext)( HDC ); @@ -386,10 +386,10 @@ struct ICD_Data BOOL (WINAPI *DrvShareLists)( DHGLRC, DHGLRC ); BOOL (WINAPI *DrvSwapBuffers)( HDC ); BOOL (WINAPI *DrvSwapLayerBuffers)( HDC, UINT ); - + /* Make this a linked list */ struct ICD_Data* next; }; struct ICD_Data* IntGetIcdData(HDC hdc); - + diff --git a/dll/opengl/opengl32/icdload.c b/dll/opengl/opengl32/icdload.c index fc86d863631..8868bef2504 100644 --- a/dll/opengl/opengl32/icdload.c +++ b/dll/opengl/opengl32/icdload.c @@ -153,10 +153,10 @@ custom_end: pDrvInfo = &DrvInfo; } - + /* Protect the list while we are loading*/ EnterCriticalSection(&icdload_cs); - + /* Search for it in the list of already loaded modules */ data = ICD_Data_List; while(data) @@ -170,7 +170,7 @@ custom_end: } data = data->next; } - + /* It was still not loaded, look for it in the registry */ ret = RegOpenKeyExW(HKEY_LOCAL_MACHINE, OpenGLDrivers_Key, 0, KEY_READ, &OglKey); if(ret != ERROR_SUCCESS) @@ -207,7 +207,7 @@ custom_end: RegCloseKey(OglKey); goto end; } - + dwInput = sizeof(Version); ret = RegQueryValueExW(DrvKey, L"Version", 0, &dwValueType, (LPBYTE)&Version, &dwInput); if((ret != ERROR_SUCCESS) || (dwValueType != REG_DWORD)) @@ -221,7 +221,7 @@ custom_end: RegCloseKey(OglKey); goto end; } - + dwInput = sizeof(DriverVersion); ret = RegQueryValueExW(DrvKey, L"DriverVersion", 0, &dwValueType, (LPBYTE)&DriverVersion, &dwInput); if((ret != ERROR_SUCCESS) || (dwValueType != REG_DWORD)) @@ -235,7 +235,7 @@ custom_end: RegCloseKey(OglKey); goto end; } - + dwInput = sizeof(Flags); ret = RegQueryValueExW(DrvKey, L"Flags", 0, &dwValueType, (LPBYTE)&Flags, &dwInput); if((ret != ERROR_SUCCESS) || (dwValueType != REG_DWORD)) @@ -243,14 +243,14 @@ custom_end: WARN("No driver version in driver subkey\n"); Flags = 0; } - + /* We're done */ RegCloseKey(DrvKey); TRACE("DLL name is %S, Version %lx, DriverVersion %lx, Flags %lx.\n", DllName, Version, DriverVersion, Flags); } /* No need for this anymore */ RegCloseKey(OglKey); - + /* So far so good, allocate data */ data = HeapAlloc(GetProcessHeap(), 0, sizeof(*data)); if(!data) @@ -258,7 +258,7 @@ custom_end: ERR("Unable to allocate ICD data!\n"); goto end; } - + /* Load the library */ data->hModule = LoadLibraryW(DllName); if(!data->hModule) @@ -268,8 +268,8 @@ custom_end: data = NULL; goto end; } - - /* + + /* * Validate version, if needed. * Some drivers (at least VBOX), initialize stuff upon this call. */ @@ -282,7 +282,7 @@ custom_end: goto fail; } } - + /* Pass the callbacks */ DrvSetCallbackProcs = (void*)GetProcAddress(data->hModule, "DrvSetCallbackProcs"); if(DrvSetCallbackProcs) @@ -293,7 +293,7 @@ custom_end: (PROC)wglGetDHGLRC}; DrvSetCallbackProcs(ARRAYSIZE(callbacks), callbacks); } - + /* Get the DLL exports */ #define DRV_LOAD(x) do \ { \ @@ -320,7 +320,7 @@ custom_end: DRV_LOAD(DrvSwapBuffers); DRV_LOAD(DrvSwapLayerBuffers); #undef DRV_LOAD - + /* Let's see if GDI should handle this instead of the ICD DLL */ // FIXME: maybe there is a better way if (GdiDescribePixelFormat(hdc, 0, 0, NULL) != 0) @@ -334,14 +334,14 @@ custom_end: /* Copy the DriverName */ wcscpy(data->DriverName, pDrvInfo->DriverName); - + /* Push the list */ data->next = ICD_Data_List; ICD_Data_List = data; - + TRACE("Returning %p.\n", data); TRACE("ICD driver %S (%S) successfully loaded.\n", pDrvInfo->DriverName, DllName); - + end: /* Unlock and return */ LeaveCriticalSection(&icdload_cs); diff --git a/dll/opengl/opengl32/opengl32.h b/dll/opengl/opengl32/opengl32.h index 32b4f35b32e..0395fe00a66 100644 --- a/dll/opengl/opengl32/opengl32.h +++ b/dll/opengl/opengl32/opengl32.h @@ -92,18 +92,18 @@ struct wgl_dc_data HANDLE u; } owner; ULONG flags; - + /* Pixel format */ INT pixelformat; - + /* ICD */ struct ICD_Data* icd_data; INT nb_icd_formats; - + /* Software implementation */ INT nb_sw_formats; void* sw_data; - + /* Linked list */ struct wgl_dc_data* next; }; diff --git a/dll/opengl/opengl32/opengl32.spec b/dll/opengl/opengl32/opengl32.spec index 8e393c9c292..869db281249 100644 --- a/dll/opengl/opengl32/opengl32.spec +++ b/dll/opengl/opengl32/opengl32.spec @@ -7,340 +7,340 @@ @ stdcall glAccum( long long ) @ stdcall glAlphaFunc( long long ) @ stdcall glAreTexturesResident( long ptr ptr ) -@ stdcall glArrayElement( long ) -@ stdcall glBegin( long ) -@ stdcall glBindTexture( long long ) -@ stdcall glBitmap( long long long long long long ptr ) -@ stdcall glBlendFunc( long long ) -@ stdcall glCallList( long ) -@ stdcall glCallLists( long long ptr ) -@ stdcall glClear( long ) -@ stdcall glClearAccum( long long long long ) -@ stdcall glClearColor( long long long long ) -@ stdcall glClearDepth( double ) -@ stdcall glClearIndex( long ) -@ stdcall glClearStencil( long ) -@ stdcall glClipPlane( long ptr ) -@ stdcall glColor3b( long long long ) -@ stdcall glColor3bv( ptr ) -@ stdcall glColor3d( double double double ) -@ stdcall glColor3dv( ptr ) -@ stdcall glColor3f( long long long ) -@ stdcall glColor3fv( ptr ) -@ stdcall glColor3i( long long long ) -@ stdcall glColor3iv( ptr ) -@ stdcall glColor3s( long long long ) -@ stdcall glColor3sv( ptr ) -@ stdcall glColor3ub( long long long ) -@ stdcall glColor3ubv( ptr ) -@ stdcall glColor3ui( long long long ) -@ stdcall glColor3uiv( ptr ) -@ stdcall glColor3us( long long long ) -@ stdcall glColor3usv( ptr ) -@ stdcall glColor4b( long long long long ) -@ stdcall glColor4bv( ptr ) -@ stdcall glColor4d( double double double double ) -@ stdcall glColor4dv( ptr ) -@ stdcall glColor4f( long long long long ) -@ stdcall glColor4fv( ptr ) -@ stdcall glColor4i( long long long long ) -@ stdcall glColor4iv( ptr ) -@ stdcall glColor4s( long long long long ) -@ stdcall glColor4sv( ptr ) -@ stdcall glColor4ub( long long long long ) -@ stdcall glColor4ubv( ptr ) -@ stdcall glColor4ui( long long long long ) -@ stdcall glColor4uiv( ptr ) -@ stdcall glColor4us( long long long long ) -@ stdcall glColor4usv( ptr ) -@ stdcall glColorMask( long long long long ) -@ stdcall glColorMaterial( long long ) -@ stdcall glColorPointer( long long long ptr ) -@ stdcall glCopyPixels( long long long long long ) -@ stdcall glCopyTexImage1D( long long long long long long long ) -@ stdcall glCopyTexImage2D( long long long long long long long long ) -@ stdcall glCopyTexSubImage1D( long long long long long long ) -@ stdcall glCopyTexSubImage2D( long long long long long long long long ) +@ stdcall glArrayElement( long ) +@ stdcall glBegin( long ) +@ stdcall glBindTexture( long long ) +@ stdcall glBitmap( long long long long long long ptr ) +@ stdcall glBlendFunc( long long ) +@ stdcall glCallList( long ) +@ stdcall glCallLists( long long ptr ) +@ stdcall glClear( long ) +@ stdcall glClearAccum( long long long long ) +@ stdcall glClearColor( long long long long ) +@ stdcall glClearDepth( double ) +@ stdcall glClearIndex( long ) +@ stdcall glClearStencil( long ) +@ stdcall glClipPlane( long ptr ) +@ stdcall glColor3b( long long long ) +@ stdcall glColor3bv( ptr ) +@ stdcall glColor3d( double double double ) +@ stdcall glColor3dv( ptr ) +@ stdcall glColor3f( long long long ) +@ stdcall glColor3fv( ptr ) +@ stdcall glColor3i( long long long ) +@ stdcall glColor3iv( ptr ) +@ stdcall glColor3s( long long long ) +@ stdcall glColor3sv( ptr ) +@ stdcall glColor3ub( long long long ) +@ stdcall glColor3ubv( ptr ) +@ stdcall glColor3ui( long long long ) +@ stdcall glColor3uiv( ptr ) +@ stdcall glColor3us( long long long ) +@ stdcall glColor3usv( ptr ) +@ stdcall glColor4b( long long long long ) +@ stdcall glColor4bv( ptr ) +@ stdcall glColor4d( double double double double ) +@ stdcall glColor4dv( ptr ) +@ stdcall glColor4f( long long long long ) +@ stdcall glColor4fv( ptr ) +@ stdcall glColor4i( long long long long ) +@ stdcall glColor4iv( ptr ) +@ stdcall glColor4s( long long long long ) +@ stdcall glColor4sv( ptr ) +@ stdcall glColor4ub( long long long long ) +@ stdcall glColor4ubv( ptr ) +@ stdcall glColor4ui( long long long long ) +@ stdcall glColor4uiv( ptr ) +@ stdcall glColor4us( long long long long ) +@ stdcall glColor4usv( ptr ) +@ stdcall glColorMask( long long long long ) +@ stdcall glColorMaterial( long long ) +@ stdcall glColorPointer( long long long ptr ) +@ stdcall glCopyPixels( long long long long long ) +@ stdcall glCopyTexImage1D( long long long long long long long ) +@ stdcall glCopyTexImage2D( long long long long long long long long ) +@ stdcall glCopyTexSubImage1D( long long long long long long ) +@ stdcall glCopyTexSubImage2D( long long long long long long long long ) @ stdcall glCullFace( long ) @ stdcall glDebugEntry(long long) -@ stdcall glDeleteLists( long long ) -@ stdcall glDeleteTextures( long ptr ) -@ stdcall glDepthFunc( long ) -@ stdcall glDepthMask( long ) -@ stdcall glDepthRange( double double ) -@ stdcall glDisable( long ) -@ stdcall glDisableClientState( long ) -@ stdcall glDrawArrays( long long long ) -@ stdcall glDrawBuffer( long ) -@ stdcall glDrawElements( long long long ptr ) -@ stdcall glDrawPixels( long long long long ptr ) -@ stdcall glEdgeFlag( long ) -@ stdcall glEdgeFlagPointer( long ptr ) -@ stdcall glEdgeFlagv( ptr ) -@ stdcall glEnable( long ) -@ stdcall glEnableClientState( long ) -@ stdcall glEnd( ) -@ stdcall glEndList( ) -@ stdcall glEvalCoord1d( double ) -@ stdcall glEvalCoord1dv( ptr ) -@ stdcall glEvalCoord1f( long ) -@ stdcall glEvalCoord1fv( ptr ) +@ stdcall glDeleteLists( long long ) +@ stdcall glDeleteTextures( long ptr ) +@ stdcall glDepthFunc( long ) +@ stdcall glDepthMask( long ) +@ stdcall glDepthRange( double double ) +@ stdcall glDisable( long ) +@ stdcall glDisableClientState( long ) +@ stdcall glDrawArrays( long long long ) +@ stdcall glDrawBuffer( long ) +@ stdcall glDrawElements( long long long ptr ) +@ stdcall glDrawPixels( long long long long ptr ) +@ stdcall glEdgeFlag( long ) +@ stdcall glEdgeFlagPointer( long ptr ) +@ stdcall glEdgeFlagv( ptr ) +@ stdcall glEnable( long ) +@ stdcall glEnableClientState( long ) +@ stdcall glEnd( ) +@ stdcall glEndList( ) +@ stdcall glEvalCoord1d( double ) +@ stdcall glEvalCoord1dv( ptr ) +@ stdcall glEvalCoord1f( long ) +@ stdcall glEvalCoord1fv( ptr ) @ stdcall glEvalCoord2d( double double ) -@ stdcall glEvalCoord2dv( ptr ) -@ stdcall glEvalCoord2f( long long ) -@ stdcall glEvalCoord2fv( ptr ) -@ stdcall glEvalMesh1( long long long ) -@ stdcall glEvalMesh2( long long long long long ) -@ stdcall glEvalPoint1( long ) -@ stdcall glEvalPoint2( long long ) -@ stdcall glFeedbackBuffer( long long ptr ) -@ stdcall glFinish( ) -@ stdcall glFlush( ) -@ stdcall glFogf( long long ) -@ stdcall glFogfv( long ptr ) -@ stdcall glFogi( long long ) -@ stdcall glFogiv( long ptr ) -@ stdcall glFrontFace( long ) -@ stdcall glFrustum( double double double double double double ) -@ stdcall glGenLists( long ) -@ stdcall glGenTextures( long ptr ) -@ stdcall glGetBooleanv( long ptr ) +@ stdcall glEvalCoord2dv( ptr ) +@ stdcall glEvalCoord2f( long long ) +@ stdcall glEvalCoord2fv( ptr ) +@ stdcall glEvalMesh1( long long long ) +@ stdcall glEvalMesh2( long long long long long ) +@ stdcall glEvalPoint1( long ) +@ stdcall glEvalPoint2( long long ) +@ stdcall glFeedbackBuffer( long long ptr ) +@ stdcall glFinish( ) +@ stdcall glFlush( ) +@ stdcall glFogf( long long ) +@ stdcall glFogfv( long ptr ) +@ stdcall glFogi( long long ) +@ stdcall glFogiv( long ptr ) +@ stdcall glFrontFace( long ) +@ stdcall glFrustum( double double double double double double ) +@ stdcall glGenLists( long ) +@ stdcall glGenTextures( long ptr ) +@ stdcall glGetBooleanv( long ptr ) @ stdcall glGetClipPlane( long ptr ) -@ stdcall glGetDoublev( long ptr ) -@ stdcall glGetError( ) +@ stdcall glGetDoublev( long ptr ) +@ stdcall glGetError( ) @ stdcall glGetFloatv( long ptr ) -@ stdcall glGetIntegerv( long ptr ) -@ stdcall glGetLightfv( long long ptr ) -@ stdcall glGetLightiv( long long ptr ) -@ stdcall glGetMapdv( long long ptr ) -@ stdcall glGetMapfv( long long ptr ) -@ stdcall glGetMapiv( long long ptr ) -@ stdcall glGetMaterialfv( long long ptr ) +@ stdcall glGetIntegerv( long ptr ) +@ stdcall glGetLightfv( long long ptr ) +@ stdcall glGetLightiv( long long ptr ) +@ stdcall glGetMapdv( long long ptr ) +@ stdcall glGetMapfv( long long ptr ) +@ stdcall glGetMapiv( long long ptr ) +@ stdcall glGetMaterialfv( long long ptr ) @ stdcall glGetMaterialiv( long long ptr ) -@ stdcall glGetPixelMapfv( long ptr ) -@ stdcall glGetPixelMapuiv( long ptr ) -@ stdcall glGetPixelMapusv( long ptr ) -@ stdcall glGetPointerv( long ptr ) +@ stdcall glGetPixelMapfv( long ptr ) +@ stdcall glGetPixelMapuiv( long ptr ) +@ stdcall glGetPixelMapusv( long ptr ) +@ stdcall glGetPointerv( long ptr ) @ stdcall glGetPolygonStipple( ptr ) -@ stdcall glGetString( long ) -@ stdcall glGetTexEnvfv( long long ptr ) -@ stdcall glGetTexEnviv( long long ptr ) -@ stdcall glGetTexGendv( long long ptr ) -@ stdcall glGetTexGenfv( long long ptr ) -@ stdcall glGetTexGeniv( long long ptr ) -@ stdcall glGetTexImage( long long long long ptr ) -@ stdcall glGetTexLevelParameterfv( long long long ptr ) -@ stdcall glGetTexLevelParameteriv( long long long ptr ) -@ stdcall glGetTexParameterfv( long long ptr ) -@ stdcall glGetTexParameteriv( long long ptr ) +@ stdcall glGetString( long ) +@ stdcall glGetTexEnvfv( long long ptr ) +@ stdcall glGetTexEnviv( long long ptr ) +@ stdcall glGetTexGendv( long long ptr ) +@ stdcall glGetTexGenfv( long long ptr ) +@ stdcall glGetTexGeniv( long long ptr ) +@ stdcall glGetTexImage( long long long long ptr ) +@ stdcall glGetTexLevelParameterfv( long long long ptr ) +@ stdcall glGetTexLevelParameteriv( long long long ptr ) +@ stdcall glGetTexParameterfv( long long ptr ) +@ stdcall glGetTexParameteriv( long long ptr ) @ stdcall glHint( long long ) -@ stdcall glIndexMask( long ) -@ stdcall glIndexPointer( long long ptr ) -@ stdcall glIndexd( double ) -@ stdcall glIndexdv( ptr ) -@ stdcall glIndexf( long ) -@ stdcall glIndexfv( ptr ) -@ stdcall glIndexi( long ) +@ stdcall glIndexMask( long ) +@ stdcall glIndexPointer( long long ptr ) +@ stdcall glIndexd( double ) +@ stdcall glIndexdv( ptr ) +@ stdcall glIndexf( long ) +@ stdcall glIndexfv( ptr ) +@ stdcall glIndexi( long ) @ stdcall glIndexiv( ptr ) -@ stdcall glIndexs( long ) -@ stdcall glIndexsv( ptr ) -@ stdcall glIndexub( long ) -@ stdcall glIndexubv( ptr ) -@ stdcall glInitNames( ) -@ stdcall glInterleavedArrays( long long ptr ) -@ stdcall glIsEnabled( long ) -@ stdcall glIsList( long ) -@ stdcall glIsTexture( long ) -@ stdcall glLightModelf( long long ) -@ stdcall glLightModelfv( long ptr ) -@ stdcall glLightModeli( long long ) -@ stdcall glLightModeliv( long ptr ) -@ stdcall glLightf( long long long ) -@ stdcall glLightfv( long long ptr ) -@ stdcall glLighti( long long long ) -@ stdcall glLightiv( long long ptr ) -@ stdcall glLineStipple( long long ) -@ stdcall glLineWidth( long ) -@ stdcall glListBase( long ) -@ stdcall glLoadIdentity( ) -@ stdcall glLoadMatrixd( ptr ) -@ stdcall glLoadMatrixf( ptr ) -@ stdcall glLoadName( long ) -@ stdcall glLogicOp( long ) -@ stdcall glMap1d( long double double long long ptr ) -@ stdcall glMap1f( long long long long long ptr ) -@ stdcall glMap2d( long double double long long double double long long ptr ) -@ stdcall glMap2f( long long long long long long long long long ptr ) -@ stdcall glMapGrid1d( long double double ) +@ stdcall glIndexs( long ) +@ stdcall glIndexsv( ptr ) +@ stdcall glIndexub( long ) +@ stdcall glIndexubv( ptr ) +@ stdcall glInitNames( ) +@ stdcall glInterleavedArrays( long long ptr ) +@ stdcall glIsEnabled( long ) +@ stdcall glIsList( long ) +@ stdcall glIsTexture( long ) +@ stdcall glLightModelf( long long ) +@ stdcall glLightModelfv( long ptr ) +@ stdcall glLightModeli( long long ) +@ stdcall glLightModeliv( long ptr ) +@ stdcall glLightf( long long long ) +@ stdcall glLightfv( long long ptr ) +@ stdcall glLighti( long long long ) +@ stdcall glLightiv( long long ptr ) +@ stdcall glLineStipple( long long ) +@ stdcall glLineWidth( long ) +@ stdcall glListBase( long ) +@ stdcall glLoadIdentity( ) +@ stdcall glLoadMatrixd( ptr ) +@ stdcall glLoadMatrixf( ptr ) +@ stdcall glLoadName( long ) +@ stdcall glLogicOp( long ) +@ stdcall glMap1d( long double double long long ptr ) +@ stdcall glMap1f( long long long long long ptr ) +@ stdcall glMap2d( long double double long long double double long long ptr ) +@ stdcall glMap2f( long long long long long long long long long ptr ) +@ stdcall glMapGrid1d( long double double ) @ stdcall glMapGrid1f( long long long ) -@ stdcall glMapGrid2d( long double double long double double ) -@ stdcall glMapGrid2f( long long long long long long ) -@ stdcall glMaterialf( long long long ) -@ stdcall glMaterialfv( long long ptr ) -@ stdcall glMateriali( long long long ) -@ stdcall glMaterialiv( long long ptr ) +@ stdcall glMapGrid2d( long double double long double double ) +@ stdcall glMapGrid2f( long long long long long long ) +@ stdcall glMaterialf( long long long ) +@ stdcall glMaterialfv( long long ptr ) +@ stdcall glMateriali( long long long ) +@ stdcall glMaterialiv( long long ptr ) @ stdcall glMatrixMode( long ) -@ stdcall glMultMatrixd( ptr ) -@ stdcall glMultMatrixf( ptr ) -@ stdcall glNewList( long long ) -@ stdcall glNormal3b( long long long ) -@ stdcall glNormal3bv( ptr ) -@ stdcall glNormal3d( double double double ) -@ stdcall glNormal3dv( ptr ) -@ stdcall glNormal3f( long long long ) -@ stdcall glNormal3fv( ptr ) -@ stdcall glNormal3i( long long long ) +@ stdcall glMultMatrixd( ptr ) +@ stdcall glMultMatrixf( ptr ) +@ stdcall glNewList( long long ) +@ stdcall glNormal3b( long long long ) +@ stdcall glNormal3bv( ptr ) +@ stdcall glNormal3d( double double double ) +@ stdcall glNormal3dv( ptr ) +@ stdcall glNormal3f( long long long ) +@ stdcall glNormal3fv( ptr ) +@ stdcall glNormal3i( long long long ) @ stdcall glNormal3iv( ptr ) -@ stdcall glNormal3s( long long long ) -@ stdcall glNormal3sv( ptr ) -@ stdcall glNormalPointer( long long ptr ) -@ stdcall glOrtho( double double double double double double ) -@ stdcall glPassThrough( long ) -@ stdcall glPixelMapfv( long long ptr ) -@ stdcall glPixelMapuiv( long long ptr ) -@ stdcall glPixelMapusv( long long ptr ) -@ stdcall glPixelStoref( long long ) -@ stdcall glPixelStorei( long long ) -@ stdcall glPixelTransferf( long long ) -@ stdcall glPixelTransferi( long long ) -@ stdcall glPixelZoom( long long ) -@ stdcall glPointSize( long ) -@ stdcall glPolygonMode( long long ) -@ stdcall glPolygonOffset( long long ) -@ stdcall glPolygonStipple( ptr ) -@ stdcall glPopAttrib( ) -@ stdcall glPopClientAttrib( ) -@ stdcall glPopMatrix( ) -@ stdcall glPopName( ) -@ stdcall glPrioritizeTextures( long ptr ptr ) -@ stdcall glPushAttrib( long ) -@ stdcall glPushClientAttrib( long ) -@ stdcall glPushMatrix( ) -@ stdcall glPushName( long ) -@ stdcall glRasterPos2d( double double ) -@ stdcall glRasterPos2dv( ptr ) -@ stdcall glRasterPos2f( long long ) -@ stdcall glRasterPos2fv( ptr ) -@ stdcall glRasterPos2i( long long ) -@ stdcall glRasterPos2iv( ptr ) -@ stdcall glRasterPos2s( long long ) -@ stdcall glRasterPos2sv( ptr ) -@ stdcall glRasterPos3d( double double double ) -@ stdcall glRasterPos3dv( ptr ) -@ stdcall glRasterPos3f( long long long ) -@ stdcall glRasterPos3fv( ptr ) -@ stdcall glRasterPos3i( long long long ) -@ stdcall glRasterPos3iv( ptr ) -@ stdcall glRasterPos3s( long long long ) -@ stdcall glRasterPos3sv( ptr ) -@ stdcall glRasterPos4d( double double double double ) -@ stdcall glRasterPos4dv( ptr ) -@ stdcall glRasterPos4f( long long long long ) -@ stdcall glRasterPos4fv( ptr ) -@ stdcall glRasterPos4i( long long long long ) -@ stdcall glRasterPos4iv( ptr ) -@ stdcall glRasterPos4s( long long long long ) -@ stdcall glRasterPos4sv( ptr ) -@ stdcall glReadBuffer( long ) -@ stdcall glReadPixels( long long long long long long ptr ) -@ stdcall glRectd( double double double double ) -@ stdcall glRectdv( ptr ptr ) -@ stdcall glRectf( long long long long ) -@ stdcall glRectfv( ptr ptr ) -@ stdcall glRecti( long long long long ) -@ stdcall glRectiv( ptr ptr ) -@ stdcall glRects( long long long long ) -@ stdcall glRectsv( ptr ptr ) -@ stdcall glRenderMode( long ) -@ stdcall glRotated( double double double double ) -@ stdcall glRotatef( long long long long ) -@ stdcall glScaled( double double double ) -@ stdcall glScalef( long long long ) -@ stdcall glScissor( long long long long ) -@ stdcall glSelectBuffer( long ptr ) -@ stdcall glShadeModel( long ) -@ stdcall glStencilFunc( long long long ) -@ stdcall glStencilMask( long ) -@ stdcall glStencilOp( long long long ) -@ stdcall glTexCoord1d( double ) -@ stdcall glTexCoord1dv( ptr ) -@ stdcall glTexCoord1f( long ) -@ stdcall glTexCoord1fv( ptr ) -@ stdcall glTexCoord1i( long ) -@ stdcall glTexCoord1iv( ptr ) -@ stdcall glTexCoord1s( long ) -@ stdcall glTexCoord1sv( ptr ) -@ stdcall glTexCoord2d( double double ) -@ stdcall glTexCoord2dv( ptr ) -@ stdcall glTexCoord2f( long long ) -@ stdcall glTexCoord2fv( ptr ) -@ stdcall glTexCoord2i( long long ) -@ stdcall glTexCoord2iv( ptr ) -@ stdcall glTexCoord2s( long long ) -@ stdcall glTexCoord2sv( ptr ) -@ stdcall glTexCoord3d( double double double ) -@ stdcall glTexCoord3dv( ptr ) -@ stdcall glTexCoord3f( long long long ) -@ stdcall glTexCoord3fv( ptr ) -@ stdcall glTexCoord3i( long long long ) -@ stdcall glTexCoord3iv( ptr ) -@ stdcall glTexCoord3s( long long long ) -@ stdcall glTexCoord3sv( ptr ) -@ stdcall glTexCoord4d( double double double double ) -@ stdcall glTexCoord4dv( ptr ) -@ stdcall glTexCoord4f( long long long long ) -@ stdcall glTexCoord4fv( ptr ) -@ stdcall glTexCoord4i( long long long long ) -@ stdcall glTexCoord4iv( ptr ) -@ stdcall glTexCoord4s( long long long long ) -@ stdcall glTexCoord4sv( ptr ) -@ stdcall glTexCoordPointer( long long long ptr ) -@ stdcall glTexEnvf( long long long ) -@ stdcall glTexEnvfv( long long ptr ) -@ stdcall glTexEnvi( long long long ) -@ stdcall glTexEnviv( long long ptr ) -@ stdcall glTexGend( long long double ) -@ stdcall glTexGendv( long long ptr ) -@ stdcall glTexGenf( long long long ) -@ stdcall glTexGenfv( long long ptr ) -@ stdcall glTexGeni( long long long ) -@ stdcall glTexGeniv( long long ptr ) -@ stdcall glTexImage1D( long long long long long long long ptr ) +@ stdcall glNormal3s( long long long ) +@ stdcall glNormal3sv( ptr ) +@ stdcall glNormalPointer( long long ptr ) +@ stdcall glOrtho( double double double double double double ) +@ stdcall glPassThrough( long ) +@ stdcall glPixelMapfv( long long ptr ) +@ stdcall glPixelMapuiv( long long ptr ) +@ stdcall glPixelMapusv( long long ptr ) +@ stdcall glPixelStoref( long long ) +@ stdcall glPixelStorei( long long ) +@ stdcall glPixelTransferf( long long ) +@ stdcall glPixelTransferi( long long ) +@ stdcall glPixelZoom( long long ) +@ stdcall glPointSize( long ) +@ stdcall glPolygonMode( long long ) +@ stdcall glPolygonOffset( long long ) +@ stdcall glPolygonStipple( ptr ) +@ stdcall glPopAttrib( ) +@ stdcall glPopClientAttrib( ) +@ stdcall glPopMatrix( ) +@ stdcall glPopName( ) +@ stdcall glPrioritizeTextures( long ptr ptr ) +@ stdcall glPushAttrib( long ) +@ stdcall glPushClientAttrib( long ) +@ stdcall glPushMatrix( ) +@ stdcall glPushName( long ) +@ stdcall glRasterPos2d( double double ) +@ stdcall glRasterPos2dv( ptr ) +@ stdcall glRasterPos2f( long long ) +@ stdcall glRasterPos2fv( ptr ) +@ stdcall glRasterPos2i( long long ) +@ stdcall glRasterPos2iv( ptr ) +@ stdcall glRasterPos2s( long long ) +@ stdcall glRasterPos2sv( ptr ) +@ stdcall glRasterPos3d( double double double ) +@ stdcall glRasterPos3dv( ptr ) +@ stdcall glRasterPos3f( long long long ) +@ stdcall glRasterPos3fv( ptr ) +@ stdcall glRasterPos3i( long long long ) +@ stdcall glRasterPos3iv( ptr ) +@ stdcall glRasterPos3s( long long long ) +@ stdcall glRasterPos3sv( ptr ) +@ stdcall glRasterPos4d( double double double double ) +@ stdcall glRasterPos4dv( ptr ) +@ stdcall glRasterPos4f( long long long long ) +@ stdcall glRasterPos4fv( ptr ) +@ stdcall glRasterPos4i( long long long long ) +@ stdcall glRasterPos4iv( ptr ) +@ stdcall glRasterPos4s( long long long long ) +@ stdcall glRasterPos4sv( ptr ) +@ stdcall glReadBuffer( long ) +@ stdcall glReadPixels( long long long long long long ptr ) +@ stdcall glRectd( double double double double ) +@ stdcall glRectdv( ptr ptr ) +@ stdcall glRectf( long long long long ) +@ stdcall glRectfv( ptr ptr ) +@ stdcall glRecti( long long long long ) +@ stdcall glRectiv( ptr ptr ) +@ stdcall glRects( long long long long ) +@ stdcall glRectsv( ptr ptr ) +@ stdcall glRenderMode( long ) +@ stdcall glRotated( double double double double ) +@ stdcall glRotatef( long long long long ) +@ stdcall glScaled( double double double ) +@ stdcall glScalef( long long long ) +@ stdcall glScissor( long long long long ) +@ stdcall glSelectBuffer( long ptr ) +@ stdcall glShadeModel( long ) +@ stdcall glStencilFunc( long long long ) +@ stdcall glStencilMask( long ) +@ stdcall glStencilOp( long long long ) +@ stdcall glTexCoord1d( double ) +@ stdcall glTexCoord1dv( ptr ) +@ stdcall glTexCoord1f( long ) +@ stdcall glTexCoord1fv( ptr ) +@ stdcall glTexCoord1i( long ) +@ stdcall glTexCoord1iv( ptr ) +@ stdcall glTexCoord1s( long ) +@ stdcall glTexCoord1sv( ptr ) +@ stdcall glTexCoord2d( double double ) +@ stdcall glTexCoord2dv( ptr ) +@ stdcall glTexCoord2f( long long ) +@ stdcall glTexCoord2fv( ptr ) +@ stdcall glTexCoord2i( long long ) +@ stdcall glTexCoord2iv( ptr ) +@ stdcall glTexCoord2s( long long ) +@ stdcall glTexCoord2sv( ptr ) +@ stdcall glTexCoord3d( double double double ) +@ stdcall glTexCoord3dv( ptr ) +@ stdcall glTexCoord3f( long long long ) +@ stdcall glTexCoord3fv( ptr ) +@ stdcall glTexCoord3i( long long long ) +@ stdcall glTexCoord3iv( ptr ) +@ stdcall glTexCoord3s( long long long ) +@ stdcall glTexCoord3sv( ptr ) +@ stdcall glTexCoord4d( double double double double ) +@ stdcall glTexCoord4dv( ptr ) +@ stdcall glTexCoord4f( long long long long ) +@ stdcall glTexCoord4fv( ptr ) +@ stdcall glTexCoord4i( long long long long ) +@ stdcall glTexCoord4iv( ptr ) +@ stdcall glTexCoord4s( long long long long ) +@ stdcall glTexCoord4sv( ptr ) +@ stdcall glTexCoordPointer( long long long ptr ) +@ stdcall glTexEnvf( long long long ) +@ stdcall glTexEnvfv( long long ptr ) +@ stdcall glTexEnvi( long long long ) +@ stdcall glTexEnviv( long long ptr ) +@ stdcall glTexGend( long long double ) +@ stdcall glTexGendv( long long ptr ) +@ stdcall glTexGenf( long long long ) +@ stdcall glTexGenfv( long long ptr ) +@ stdcall glTexGeni( long long long ) +@ stdcall glTexGeniv( long long ptr ) +@ stdcall glTexImage1D( long long long long long long long ptr ) @ stdcall glTexImage2D( long long long long long long long long ptr ) -@ stdcall glTexParameterf( long long long ) -@ stdcall glTexParameterfv( long long ptr ) -@ stdcall glTexParameteri( long long long ) -@ stdcall glTexParameteriv( long long ptr ) -@ stdcall glTexSubImage1D( long long long long long long ptr ) -@ stdcall glTexSubImage2D( long long long long long long long long ptr ) -@ stdcall glTranslated( double double double ) -@ stdcall glTranslatef( long long long ) -@ stdcall glVertex2d( double double ) -@ stdcall glVertex2dv( ptr ) -@ stdcall glVertex2f( long long ) -@ stdcall glVertex2fv( ptr ) -@ stdcall glVertex2i( long long ) -@ stdcall glVertex2iv( ptr ) -@ stdcall glVertex2s( long long ) -@ stdcall glVertex2sv( ptr ) -@ stdcall glVertex3d( double double double ) -@ stdcall glVertex3dv( ptr ) -@ stdcall glVertex3f( long long long ) -@ stdcall glVertex3fv( ptr ) -@ stdcall glVertex3i( long long long ) -@ stdcall glVertex3iv( ptr ) -@ stdcall glVertex3s( long long long ) -@ stdcall glVertex3sv( ptr ) -@ stdcall glVertex4d( double double double double ) -@ stdcall glVertex4dv( ptr ) -@ stdcall glVertex4f( long long long long ) -@ stdcall glVertex4fv( ptr ) -@ stdcall glVertex4i( long long long long ) -@ stdcall glVertex4iv( ptr ) -@ stdcall glVertex4s( long long long long ) -@ stdcall glVertex4sv( ptr ) -@ stdcall glVertexPointer( long long long ptr ) -@ stdcall glViewport( long long long long ) +@ stdcall glTexParameterf( long long long ) +@ stdcall glTexParameterfv( long long ptr ) +@ stdcall glTexParameteri( long long long ) +@ stdcall glTexParameteriv( long long ptr ) +@ stdcall glTexSubImage1D( long long long long long long ptr ) +@ stdcall glTexSubImage2D( long long long long long long long long ptr ) +@ stdcall glTranslated( double double double ) +@ stdcall glTranslatef( long long long ) +@ stdcall glVertex2d( double double ) +@ stdcall glVertex2dv( ptr ) +@ stdcall glVertex2f( long long ) +@ stdcall glVertex2fv( ptr ) +@ stdcall glVertex2i( long long ) +@ stdcall glVertex2iv( ptr ) +@ stdcall glVertex2s( long long ) +@ stdcall glVertex2sv( ptr ) +@ stdcall glVertex3d( double double double ) +@ stdcall glVertex3dv( ptr ) +@ stdcall glVertex3f( long long long ) +@ stdcall glVertex3fv( ptr ) +@ stdcall glVertex3i( long long long ) +@ stdcall glVertex3iv( ptr ) +@ stdcall glVertex3s( long long long ) +@ stdcall glVertex3sv( ptr ) +@ stdcall glVertex4d( double double double double ) +@ stdcall glVertex4dv( ptr ) +@ stdcall glVertex4f( long long long long ) +@ stdcall glVertex4fv( ptr ) +@ stdcall glVertex4i( long long long long ) +@ stdcall glVertex4iv( ptr ) +@ stdcall glVertex4s( long long long long ) +@ stdcall glVertex4sv( ptr ) +@ stdcall glVertexPointer( long long long ptr ) +@ stdcall glViewport( long long long long ) @ stdcall wglChoosePixelFormat(long ptr) @ stdcall wglCopyContext(long long long) diff --git a/dll/opengl/opengl32/swimpl.c b/dll/opengl/opengl32/swimpl.c index ec008b54e16..bdd60facb4f 100644 --- a/dll/opengl/opengl32/swimpl.c +++ b/dll/opengl/opengl32/swimpl.c @@ -276,7 +276,7 @@ static const struct pixel_format* get_format(INT pf_index, INT* pf_count) HDC hdc; INT bpp, nb_format; const struct pixel_format* ret; - + hdc = GetDC(NULL); bpp = GetDeviceCaps(hdc, BITSPIXEL); ReleaseDC(NULL, hdc); @@ -316,7 +316,7 @@ INT sw_DescribePixelFormat(HDC hdc, INT format, UINT size, PIXELFORMATDESCRIPTOR { INT ret; const struct pixel_format *pixel_format; - + TRACE("Describing format %i.\n", format); pixel_format = get_format(format, &ret); @@ -363,7 +363,7 @@ BOOL sw_SetPixelFormat(HDC hdc, struct wgl_dc_data* dc_data, INT format) /* So, someone is crazy enough to ask for sw implementation. Announce it. */ TRACE("OpenGL software implementation START for hdc %p, format %i!\n", hdc, format); - + pixel_format = get_format(format, NULL); if (!pixel_format) return FALSE; @@ -394,14 +394,14 @@ BOOL sw_SetPixelFormat(HDC hdc, struct wgl_dc_data* dc_data, INT format) pixel_format->cGreenBits, pixel_format->cBlueBits, pixel_format->cAlphaBits); - + if(!fb->gl_visual) { ERR("Failed to allocate a GL visual.\n"); HeapFree(GetProcessHeap(), 0, fb); return FALSE; } - + /* Allocate the framebuffer structure */ fb->gl_buffer = gl_create_framebuffer(fb->gl_visual); if (!fb->gl_buffer) { @@ -427,7 +427,7 @@ DHGLRC sw_CreateContext(struct wgl_dc_data* dc_data) sw_ctx = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*sw_ctx)); if(!sw_ctx) return NULL; - + /* Initialize the context */ sw_ctx->gl_ctx = gl_create_context(fb->gl_visual, NULL, sw_ctx); if(!sw_ctx->gl_ctx) @@ -436,7 +436,7 @@ DHGLRC sw_CreateContext(struct wgl_dc_data* dc_data) HeapFree(GetProcessHeap(), 0, sw_ctx); return NULL; } - + sw_ctx->fb = fb; /* Choose relevant default */ @@ -451,12 +451,12 @@ BOOL sw_DeleteContext(DHGLRC dhglrc) /* Those get clobbered by _mesa_free_context_data via _glapi_set{context,dispath_table} */ void* icd_save = IntGetCurrentICDPrivate(); const GLDISPATCHTABLE* table_save = IntGetCurrentDispatchTable(); - + /* Destroy everything */ gl_destroy_context(sw_ctx->gl_ctx); HeapFree(GetProcessHeap(), 0, sw_ctx); - + /* Restore this */ IntSetCurrentDispatchTable(table_save); IntSetCurrentICDPrivate(icd_save); @@ -506,7 +506,7 @@ BOOL sw_ShareLists(DHGLRC dhglrcSrc, DHGLRC dhglrcDst) #if 0 struct sw_context* sw_ctx_src = (struct sw_context*)dhglrcSrc; struct sw_context* sw_ctx_dst = (struct sw_context*)dhglrcDst; - + /* See if it was already shared */ if(sw_ctx_dst->gl_ctx->Shared->RefCount > 1) return FALSE; @@ -533,25 +533,25 @@ sw_call_window_proc( if((!dc_data) || (!ctx)) return 0; - + if(!(dc_data->flags & WGL_DC_OBJ_DC)) return 0; - + if((nCode < 0) || (dc_data->owner.hwnd != pParams->hwnd) || (dc_data->sw_data == NULL)) return CallNextHookEx(ctx->hook, nCode, wParam, lParam); if (pParams->message == WM_WINDOWPOSCHANGED) { /* We handle WM_WINDOWPOSCHANGED instead of WM_SIZE because according to - * http://blogs.msdn.com/oldnewthing/archive/2008/01/15/7113860.aspx - * WM_SIZE is generated from WM_WINDOWPOSCHANGED by DefWindowProc so it + * http://blogs.msdn.com/oldnewthing/archive/2008/01/15/7113860.aspx + * WM_SIZE is generated from WM_WINDOWPOSCHANGED by DefWindowProc so it * can be masked out by the application. */ LPWINDOWPOS lpWindowPos = (LPWINDOWPOS)pParams->lParam; - if((lpWindowPos->flags & SWP_SHOWWINDOW) || + if((lpWindowPos->flags & SWP_SHOWWINDOW) || !(lpWindowPos->flags & SWP_NOMOVE) || !(lpWindowPos->flags & SWP_NOSIZE)) { - /* Size in WINDOWPOS includes the window frame, so get the size + /* Size in WINDOWPOS includes the window frame, so get the size * of the client area via GetClientRect. */ RECT client_rect; UINT width, height; @@ -1392,7 +1392,7 @@ BOOL sw_SetContext(struct wgl_dc_data* dc_data, DHGLRC dhglrc) struct sw_context* sw_ctx = (struct sw_context*)dhglrc; struct sw_framebuffer* fb = dc_data->sw_data; UINT width, height; - + /* Get framebuffer size */ if(dc_data->flags & WGL_DC_OBJ_DC) { @@ -1424,13 +1424,13 @@ BOOL sw_SetContext(struct wgl_dc_data* dc_data, DHGLRC dhglrc) BITMAP bm; HBITMAP hbmp; HDC hdc = dc_data->owner.hdc; - + if(fb->gl_visual->DBflag) { ERR("Memory DC called with a double buffered format.\n"); return FALSE; } - + hbmp = GetCurrentObject( hdc, OBJ_BITMAP ); if(!hbmp) { @@ -1445,10 +1445,10 @@ BOOL sw_SetContext(struct wgl_dc_data* dc_data, DHGLRC dhglrc) width = bm.bmWidth; height = bm.bmHeight; } - + if(!width) width = 1; if(!height) height = 1; - + /* Also make the mesa context current to mesa */ gl_make_current(sw_ctx->gl_ctx, fb->gl_buffer); @@ -1477,10 +1477,10 @@ BOOL sw_SetContext(struct wgl_dc_data* dc_data, DHGLRC dhglrc) void sw_ReleaseContext(DHGLRC dhglrc) { struct sw_context* sw_ctx = (struct sw_context*)dhglrc; - + /* Forward to mesa */ gl_make_current(NULL, NULL); - + /* Unhook */ if(sw_ctx->hook) { @@ -1498,7 +1498,7 @@ BOOL sw_SwapBuffers(HDC hdc, struct wgl_dc_data* dc_data) if (!fb->gl_visual->DBflag) return TRUE; - + if (!fb->BackBuffer) return FALSE; diff --git a/dll/opengl/opengl32/wgl.c b/dll/opengl/opengl32/wgl.c index 67be0c52dd4..2beee39c263 100644 --- a/dll/opengl/opengl32/wgl.c +++ b/dll/opengl/opengl32/wgl.c @@ -31,7 +31,7 @@ get_dc_data_ex(HDC hdc, INT format, UINT size, PIXELFORMATDESCRIPTOR *descr) HDC hdc; HANDLE u; } id; - + /* Look for the right data identifier */ if(objType == OBJ_DC) { @@ -102,10 +102,10 @@ void release_dc_data(struct wgl_dc_data* dc_data) struct wgl_context* get_context(HGLRC hglrc) { struct wgl_context* context = (struct wgl_context*)hglrc; - + if(!hglrc) return NULL; - + _SEH2_TRY { if(context->magic != 'GLRC') @@ -116,7 +116,7 @@ struct wgl_context* get_context(HGLRC hglrc) context = NULL; } _SEH2_END; - + return context; } @@ -124,15 +124,15 @@ INT WINAPI wglDescribePixelFormat(HDC hdc, INT format, UINT size, PIXELFORMATDES { struct wgl_dc_data* dc_data = get_dc_data_ex(hdc, format, size, descr); INT ret; - + if(!dc_data) { SetLastError(ERROR_INVALID_HANDLE); return 0; } - + ret = dc_data->nb_icd_formats + dc_data->nb_sw_formats; - + if(!descr) { release_dc_data(dc_data); @@ -144,7 +144,7 @@ INT WINAPI wglDescribePixelFormat(HDC hdc, INT format, UINT size, PIXELFORMATDES SetLastError(ERROR_INVALID_PARAMETER); return 0; } - + /* Query ICD if needed */ if(format <= dc_data->nb_icd_formats) { @@ -166,7 +166,7 @@ INT WINAPI wglDescribePixelFormat(HDC hdc, INT format, UINT size, PIXELFORMATDES ret = 0; } } - + release_dc_data(dc_data); return ret; } @@ -359,13 +359,13 @@ BOOL WINAPI wglCopyContext(HGLRC hglrcSrc, HGLRC hglrcDst, UINT mask) { struct wgl_context* ctx_src = get_context(hglrcSrc); struct wgl_context* ctx_dst = get_context(hglrcDst); - + if(!ctx_src || !ctx_dst) { SetLastError(ERROR_INVALID_HANDLE); return FALSE; } - + /* Check this is the same pixel format */ if((ctx_dst->icd_data != ctx_src->icd_data) || (ctx_dst->pixelformat != ctx_src->pixelformat)) @@ -373,10 +373,10 @@ BOOL WINAPI wglCopyContext(HGLRC hglrcSrc, HGLRC hglrcDst, UINT mask) SetLastError(ERROR_INVALID_PIXEL_FORMAT); return FALSE; } - + if(ctx_src->icd_data) return ctx_src->icd_data->DrvCopyContext(ctx_src->dhglrc, ctx_dst->dhglrc, mask); - + return sw_CopyContext(ctx_src->dhglrc, ctx_dst->dhglrc, mask); } @@ -385,23 +385,23 @@ HGLRC WINAPI wglCreateContext(HDC hdc) struct wgl_dc_data* dc_data = get_dc_data(hdc); struct wgl_context* context; DHGLRC dhglrc; - + TRACE("Creating context for %p.\n", hdc); - + if(!dc_data) { WARN("Not a DC handle!\n"); SetLastError(ERROR_INVALID_HANDLE); return NULL; } - + if(!dc_data->pixelformat) { WARN("Pixel format not set!\n"); SetLastError(ERROR_INVALID_PIXEL_FORMAT); return NULL; } - + if(!dc_data->icd_data) { TRACE("Calling SW implementation.\n"); @@ -413,14 +413,14 @@ HGLRC WINAPI wglCreateContext(HDC hdc) TRACE("Calling ICD.\n"); dhglrc = dc_data->icd_data->DrvCreateContext(hdc); } - + if(!dhglrc) { WARN("Failed!\n"); SetLastError(ERROR_INVALID_PIXEL_FORMAT); return NULL; } - + context = HeapAlloc(GetProcessHeap(), 0, sizeof(*context)); if(!context) { @@ -437,7 +437,7 @@ HGLRC WINAPI wglCreateContext(HDC hdc) context->icd_data = dc_data->icd_data; context->pixelformat = dc_data->pixelformat; context->thread_id = 0; - + /* Insert into the list */ InsertTailList(&ContextListHead, &context->ListEntry); @@ -451,20 +451,20 @@ HGLRC WINAPI wglCreateLayerContext(HDC hdc, int iLayerPlane) struct wgl_dc_data* dc_data = get_dc_data(hdc); struct wgl_context* context; DHGLRC dhglrc; - + if(!dc_data) { SetLastError(ERROR_INVALID_HANDLE); return NULL; } - + if(!dc_data->pixelformat) { release_dc_data(dc_data); SetLastError(ERROR_INVALID_PIXEL_FORMAT); return NULL; } - + if(!dc_data->icd_data) { if(iLayerPlane != 0) @@ -480,14 +480,14 @@ HGLRC WINAPI wglCreateLayerContext(HDC hdc, int iLayerPlane) { dhglrc = dc_data->icd_data->DrvCreateLayerContext(hdc, iLayerPlane); } - + if(!dhglrc) { release_dc_data(dc_data); SetLastError(ERROR_INVALID_PIXEL_FORMAT); return NULL; } - + context = HeapAlloc(GetProcessHeap(), 0, sizeof(*context)); if(!context) { @@ -504,9 +504,9 @@ HGLRC WINAPI wglCreateLayerContext(HDC hdc, int iLayerPlane) context->icd_data = dc_data->icd_data; context->pixelformat = dc_data->pixelformat; context->thread_id = 0; - + context->magic = 'GLRC'; - + release_dc_data(dc_data); return (HGLRC)context; } @@ -515,13 +515,13 @@ BOOL WINAPI wglDeleteContext(HGLRC hglrc) { struct wgl_context* context = get_context(hglrc); LONG thread_id = GetCurrentThreadId(); - + if(!context) { SetLastError(ERROR_INVALID_HANDLE); return FALSE; } - + /* Own this context before touching it */ if(InterlockedCompareExchange(&context->thread_id, thread_id, 0) != 0) { @@ -531,22 +531,22 @@ BOOL WINAPI wglDeleteContext(HGLRC hglrc) SetLastError(ERROR_BUSY); return FALSE; } - + /* This is in our thread. Release and try again */ if(!wglMakeCurrent(NULL, NULL)) return FALSE; return wglDeleteContext(hglrc); } - + if(context->icd_data) context->icd_data->DrvDeleteContext(context->dhglrc); else sw_DeleteContext(context->dhglrc); - + context->magic = 0; RemoveEntryList(&context->ListEntry); HeapFree(GetProcessHeap(), 0, context); - + return TRUE; } @@ -557,16 +557,16 @@ BOOL WINAPI wglDescribeLayerPlane(HDC hdc, LPLAYERPLANEDESCRIPTOR plpd) { struct wgl_dc_data* dc_data = get_dc_data(hdc); - + if(!dc_data) { SetLastError(ERROR_INVALID_HANDLE); return FALSE; } - + if(iPixelFormat <= dc_data->nb_icd_formats) return dc_data->icd_data->DrvDescribeLayerPlane(hdc, iPixelFormat, iLayerPlane, nBytes, plpd); - + /* SW implementation doesn't support this */ return FALSE; } @@ -590,22 +590,22 @@ PROC WINAPI wglGetDefaultProcAddress(LPCSTR lpszProc) int WINAPI wglGetLayerPaletteEntries(HDC hdc, int iLayerPlane, int iStart, int cEntries, COLORREF* pcr ) { struct wgl_dc_data* dc_data = get_dc_data(hdc); - + if(!dc_data) { SetLastError(ERROR_INVALID_HANDLE); return 0; } - + if(!dc_data->pixelformat) { SetLastError(ERROR_INVALID_PIXEL_FORMAT); return 0; } - + if(dc_data->icd_data) return dc_data->icd_data->DrvGetLayerPaletteEntries(hdc, iLayerPlane, iStart, cEntries, pcr); - + /* SW implementation doesn't support this */ return 0; } @@ -614,13 +614,13 @@ INT WINAPI wglGetPixelFormat(HDC hdc) { INT ret; struct wgl_dc_data* dc_data = get_dc_data(hdc); - + if(!dc_data) { SetLastError(ERROR_INVALID_HANDLE); return 0; } - + ret = dc_data->pixelformat; release_dc_data(dc_data); return ret; @@ -631,11 +631,11 @@ PROC WINAPI wglGetProcAddress(LPCSTR name) struct wgl_context* context = get_context(IntGetCurrentRC()); if(!context) return NULL; - + /* This shall fail for opengl 1.1 functions */ #define USE_GL_FUNC(func, w, x, y, z) if(!strcmp(name, "gl" #func)) return NULL; #include "glfuncs.h" - + /* Forward */ if(context->icd_data) return context->icd_data->DrvGetProcAddress(name); @@ -646,14 +646,14 @@ void APIENTRY set_api_table(const GLCLTPROCTABLE* table) { IntSetCurrentDispatchTable(&table->glDispatchTable); } - + BOOL WINAPI wglMakeCurrent(HDC hdc, HGLRC hglrc) { struct wgl_context* ctx = get_context(hglrc); struct wgl_context* old_ctx = get_context(IntGetCurrentRC()); const GLCLTPROCTABLE* apiTable; LONG thread_id = (LONG)GetCurrentThreadId(); - + if(ctx) { struct wgl_dc_data* dc_data = get_dc_data(hdc); @@ -663,17 +663,17 @@ BOOL WINAPI wglMakeCurrent(HDC hdc, HGLRC hglrc) SetLastError(ERROR_INVALID_HANDLE); return FALSE; } - + /* Check compatibility */ if((ctx->icd_data != dc_data->icd_data) || (ctx->pixelformat != dc_data->pixelformat)) { /* That's bad, man */ - ERR("HGLRC %p and HDC %p are not compatible.\n", hglrc, hdc); + ERR("HGLRC %p and HDC %p are not compatible.\n", hglrc, hdc); release_dc_data(dc_data); SetLastError(ERROR_INVALID_HANDLE); return FALSE; } - + /* Set the thread ID */ if(InterlockedCompareExchange(&ctx->thread_id, thread_id, 0) != 0) { @@ -683,7 +683,7 @@ BOOL WINAPI wglMakeCurrent(HDC hdc, HGLRC hglrc) SetLastError(ERROR_BUSY); return (ctx->thread_id == thread_id); } - + if(old_ctx) { /* Unset it */ @@ -693,7 +693,7 @@ BOOL WINAPI wglMakeCurrent(HDC hdc, HGLRC hglrc) sw_ReleaseContext(old_ctx->dhglrc); InterlockedExchange(&old_ctx->thread_id, 0); } - + /* Call the ICD or SW implementation */ if(ctx->icd_data) { @@ -762,22 +762,22 @@ BOOL WINAPI wglRealizeLayerPalette(HDC hdc, BOOL bRealize) { struct wgl_dc_data* dc_data = get_dc_data(hdc); - + if(!dc_data) { SetLastError(ERROR_INVALID_HANDLE); return FALSE; } - + if(!dc_data->pixelformat) { SetLastError(ERROR_INVALID_PIXEL_FORMAT); return FALSE; } - + if(dc_data->icd_data) return dc_data->icd_data->DrvRealizeLayerPalette(hdc, iLayerPlane, bRealize); - + /* SW implementation doesn't support this */ return FALSE; } @@ -789,22 +789,22 @@ int WINAPI wglSetLayerPaletteEntries(HDC hdc, const COLORREF *pcr) { struct wgl_dc_data* dc_data = get_dc_data(hdc); - + if(!dc_data) { SetLastError(ERROR_INVALID_HANDLE); return 0; } - + if(!dc_data->pixelformat) { SetLastError(ERROR_INVALID_PIXEL_FORMAT); return 0; } - + if(dc_data->icd_data) return dc_data->icd_data->DrvSetLayerPaletteEntries(hdc, iLayerPlane, iStart, cEntries, pcr); - + /* SW implementation doesn't support this */ return 0; } @@ -814,16 +814,16 @@ BOOL WINAPI wglSetPixelFormat(HDC hdc, INT format, const PIXELFORMATDESCRIPTOR * struct wgl_dc_data* dc_data = get_dc_data(hdc); INT sw_format; BOOL ret; - + TRACE("HDC %p, format %i.\n", hdc, format); - + if(!dc_data) { WARN("Not a valid DC!.\n"); SetLastError(ERROR_INVALID_HANDLE); return FALSE; } - + if(!format) { WARN("format == 0!\n"); @@ -836,7 +836,7 @@ BOOL WINAPI wglSetPixelFormat(HDC hdc, INT format, const PIXELFORMATDESCRIPTOR * TRACE("DC format already set, %i.\n", dc_data->pixelformat); return (format == dc_data->pixelformat); } - + if(format <= dc_data->nb_icd_formats) { TRACE("Calling ICD.\n"); @@ -848,7 +848,7 @@ BOOL WINAPI wglSetPixelFormat(HDC hdc, INT format, const PIXELFORMATDESCRIPTOR * } return ret; } - + sw_format = format - dc_data->nb_icd_formats; if(sw_format <= dc_data->nb_sw_formats) { @@ -873,13 +873,13 @@ BOOL WINAPI wglShareLists(HGLRC hglrcSrc, HGLRC hglrcDst) { struct wgl_context* ctx_src = get_context(hglrcSrc); struct wgl_context* ctx_dst = get_context(hglrcDst); - + if(!ctx_src || !ctx_dst) { SetLastError(ERROR_INVALID_HANDLE); return FALSE; } - + /* Check this is the same pixel format */ if((ctx_dst->icd_data != ctx_src->icd_data) || (ctx_dst->pixelformat != ctx_src->pixelformat)) @@ -887,32 +887,32 @@ BOOL WINAPI wglShareLists(HGLRC hglrcSrc, HGLRC hglrcDst) SetLastError(ERROR_INVALID_PIXEL_FORMAT); return FALSE; } - + if(ctx_src->icd_data) return ctx_src->icd_data->DrvShareLists(ctx_src->dhglrc, ctx_dst->dhglrc); - + return sw_ShareLists(ctx_src->dhglrc, ctx_dst->dhglrc); } BOOL WINAPI DECLSPEC_HOTPATCH wglSwapBuffers(HDC hdc) { struct wgl_dc_data* dc_data = get_dc_data(hdc); - + if(!dc_data) { SetLastError(ERROR_INVALID_HANDLE); return FALSE; } - + if(!dc_data->pixelformat) { SetLastError(ERROR_INVALID_PIXEL_FORMAT); return FALSE; } - + if(dc_data->icd_data) return dc_data->icd_data->DrvSwapBuffers(hdc); - + return sw_SwapBuffers(hdc, dc_data); } diff --git a/dll/shellext/fontext/CEnumFonts.cpp b/dll/shellext/fontext/CEnumFonts.cpp index 1b81a09318b..3897a73debd 100644 --- a/dll/shellext/fontext/CEnumFonts.cpp +++ b/dll/shellext/fontext/CEnumFonts.cpp @@ -77,7 +77,7 @@ public: public: DECLARE_NOT_AGGREGATABLE(CEnumFonts) DECLARE_PROTECT_FINAL_CONSTRUCT() - + BEGIN_COM_MAP(CEnumFonts) COM_INTERFACE_ENTRY_IID(IID_IEnumIDList, IEnumIDList) END_COM_MAP() diff --git a/dll/shellext/netshell/README b/dll/shellext/netshell/README index 0cb8c737541..d0fc735594d 100644 --- a/dll/shellext/netshell/README +++ b/dll/shellext/netshell/README @@ -12,11 +12,11 @@ The user interface is exposed by implementing the IShellFolder interface as requ namespace extension. The code is currently placed in shfldr_netconnect.c The enumeration of the available network connections is performed by the IShellFolder::EnumObjects -(ISF_NetConnect_fnEnumObjects). It uses the INetConnectionManager interface implemented by netshell +(ISF_NetConnect_fnEnumObjects). It uses the INetConnectionManager interface implemented by netshell in connectmanager.c to enumerate all available network connections. -The context menu of network connection items is populated by the IContextMenu::QueryContextMenu -(ISF_NetConnect_IContextMenu3_QueryContextMenu) which is obtained by IShellFolder::GetUIObjectOf. The actions are performed by the +The context menu of network connection items is populated by the IContextMenu::QueryContextMenu +(ISF_NetConnect_IContextMenu3_QueryContextMenu) which is obtained by IShellFolder::GetUIObjectOf. The actions are performed by the IContextMenu::InvokeCommand function (ISF_NetConnect_IContextMenu3_InvokeCommand). At the moment the actions "Status" / "Properties" are implemented. @@ -24,7 +24,7 @@ the actions "Status" / "Properties" are implemented. The status dialog is implemented by IOleCommandTarget interface(CLSID_ConnectionTray). This interface manages all status dialogs for all available dialogs. The interface is implemented as a singleton to avoid multiple notification icons -appearing in the Notification area of the explorer. Every time the IShellFolder object is created (ISF_NetConnect_Constructor), +appearing in the Notification area of the explorer. Every time the IShellFolder object is created (ISF_NetConnect_Constructor), it creates a reference to IOleCommandTarget interface and calls its IOleCommandTarget::Exec function with CGID_ShellServiceObject. This causes IOleCommandTarget interface to enumerate all available network connections, check if they should be shown (NCCF_SHOW_ICON flag set in the NETCON_PROPERTIES dwCharacter), and add them to notification area with Shell_NotifyIcon. For that purpose a hidden window is created (dialog @@ -38,9 +38,9 @@ the WM_SHOWSTATUSDLG msg to specific window. The network connections property dialog is implemented by the INetConnectionPropertyUi2 interface. The class id is obtained by calling INetConnection::GetUiObjectClassId of the current selected network connection. After obtaining the interface by calling CoCreateInstance, the -selected network connection is stored as reference by calling INetConnectionPropertyUi::SetConnection. The next step is to call +selected network connection is stored as reference by calling INetConnectionPropertyUi::SetConnection. The next step is to call INetConnectionPropertyUi::AddPages to add custom property pages to the property sheet set. If the function succeeds, the caller can then invoke -PropertySheetW function to display the properties. +PropertySheetW function to display the properties. Note: If the context doesn't match, i.e. the INetConnectionPropertyUi2 cannot work together with current INetConnection, then it should fail INetConnectionPropertyUi::AddPages Note: The function ShowNetConnectionProperties in shlfdr_netconnect.c shows how to invoke the Network Connections Property Dialog @@ -54,15 +54,15 @@ function. When a user accepts changes, it calls INetCfg::Apply or when it aborts === Testing in windows === -Unfortunately in windows the CLSID_ConnectionManager class is implemented in the netman +Unfortunately in windows the CLSID_ConnectionManager class is implemented in the netman service and netshell contains the rpc proxy stubs for it. This means that until we are able to reimplement these stubs alongside all its unimplemented interfaces and objects, we can't replace the system netshell with ours (INetConnectionManager and IEnumNetConnection are only the tip -of the iceberg). -However it is perfectly fine if one copies our netshell in a different folder and change the +of the iceberg). +However it is perfectly fine if one copies our netshell in a different folder and change the registry settings to make it handle CLSID_ConnectionFolder, CLSID_LanConnectionUi and CLSID_ConnectionTray. When doing so there are actually two options about how to test. One is leaving #define USE_CUSTOM_CONMGR 1 -as is and the other is setting is to 0. What this does is that when 0, the connections will be enumerated +as is and the other is setting is to 0. What this does is that when 0, the connections will be enumerated in the shell folder and the tray using the system's INetConnectionManager (which resides in the system's netman service and is accessible through the system's netshell.dll). This allows us to implement and test our three components against the correct implementation of INetConnectionManager. diff --git a/dll/shellext/netshell/lanconnectui.cpp b/dll/shellext/netshell/lanconnectui.cpp index eaa1904b7d6..3d9e0f48a50 100644 --- a/dll/shellext/netshell/lanconnectui.cpp +++ b/dll/shellext/netshell/lanconnectui.cpp @@ -402,12 +402,12 @@ CNetConnectionPropertyUi::GetDeviceInstanceID( StringCbPrintfW(szKeyName, sizeof(szKeyName), L"SYSTEM\\CurrentControlSet\\Control\\Network\\{4D36E972-E325-11CE-BFC1-08002BE10318}\\%s\\Connection", pStr); CoTaskMemFree(pStr); - if (RegOpenKeyExW(HKEY_LOCAL_MACHINE, szKeyName, 0, KEY_READ, &hKey) != ERROR_SUCCESS) + if (RegOpenKeyExW(HKEY_LOCAL_MACHINE, szKeyName, 0, KEY_READ, &hKey) != ERROR_SUCCESS) { // failed to open key return FALSE; } - + dwInstanceID = sizeof(szInstanceID); if (RegGetValueW(hKey, NULL, L"PnpInstanceId", RRF_RT_REG_SZ, NULL, (PVOID)szInstanceID, &dwInstanceID) == ERROR_SUCCESS) { diff --git a/dll/shellext/netshell/lanconnectui.h b/dll/shellext/netshell/lanconnectui.h index 6e8b927187b..0dd7fdc0384 100644 --- a/dll/shellext/netshell/lanconnectui.h +++ b/dll/shellext/netshell/lanconnectui.h @@ -47,7 +47,7 @@ class CNetConnectionPropertyUi: VOID EnumComponents(HWND hDlgCtrl, INetCfg *pNCfg, const GUID *CompGuid, UINT Type); VOID InitializeLANPropertiesUIDlg(HWND hwndDlg); VOID ShowNetworkComponentProperties(HWND hwndDlg); - BOOL GetDeviceInstanceID(OUT LPOLESTR *DeviceInstanceID); + BOOL GetDeviceInstanceID(OUT LPOLESTR *DeviceInstanceID); static INT_PTR CALLBACK LANPropertiesUIDlg(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam); CComPtr m_pCon; diff --git a/dll/shellext/netshell/lanstatusui.cpp b/dll/shellext/netshell/lanstatusui.cpp index 19b0e676a2b..f6e88ea9d51 100644 --- a/dll/shellext/netshell/lanstatusui.cpp +++ b/dll/shellext/netshell/lanstatusui.cpp @@ -146,7 +146,7 @@ UpdateLanStatus(HWND hwndDlg, LANSTATUSUI_CONTEXT * pContext) else if (pContext->dwInOctets != IfEntry.dwInOctets && pContext->Status != 2) { hIcon = (HICON)LoadImage(netshell_hInstance, MAKEINTRESOURCE(IDI_NET_REC), IMAGE_ICON, 32, 32, LR_SHARED); - pContext->Status = 2; + pContext->Status = 2; } else if (pContext->dwOutOctets != IfEntry.dwOutOctets && pContext->Status != 3) { @@ -295,7 +295,7 @@ InsertColumnToListView( static VOID AddIPAddressToListView( - HWND hDlgCtrl, + HWND hDlgCtrl, PIP_ADDR_STRING pAddr, INT Index) { @@ -660,7 +660,7 @@ LANStatusUiDlg( { if (pContext) { - ShowNetConnectionProperties(pContext->pNet, GetParent(pContext->hwndDlg)); + ShowNetConnectionProperties(pContext->pNet, GetParent(pContext->hwndDlg)); BringWindowToTop(GetParent(pContext->hwndDlg)); } break; @@ -700,7 +700,7 @@ InitializePropertyDialog( /* get the IfTable */ dwSize = 0; - dwResult = GetAdaptersInfo(NULL, &dwSize); + dwResult = GetAdaptersInfo(NULL, &dwSize); if (dwResult!= ERROR_BUFFER_OVERFLOW) { CoTaskMemFree(pStr); diff --git a/dll/shellext/netshell/shfldr_netconnect.cpp b/dll/shellext/netshell/shfldr_netconnect.cpp index 07d2c1c068d..f4f1986d0d6 100644 --- a/dll/shellext/netshell/shfldr_netconnect.cpp +++ b/dll/shellext/netshell/shfldr_netconnect.cpp @@ -363,17 +363,17 @@ HRESULT WINAPI CNetworkConnections::GetDetailsOf( case COLUMN_STATUS: switch(pdata->Status) { - case NCS_HARDWARE_DISABLED: + case NCS_HARDWARE_DISABLED: return SHSetStrRet(&psd->str, netshell_hInstance, IDS_STATUS_NON_OPERATIONAL); - case NCS_DISCONNECTED: + case NCS_DISCONNECTED: return SHSetStrRet(&psd->str, netshell_hInstance, IDS_STATUS_UNREACHABLE); - case NCS_MEDIA_DISCONNECTED: + case NCS_MEDIA_DISCONNECTED: return SHSetStrRet(&psd->str, netshell_hInstance, IDS_STATUS_DISCONNECTED); - case NCS_CONNECTING: + case NCS_CONNECTING: return SHSetStrRet(&psd->str, netshell_hInstance, IDS_STATUS_CONNECTING); - case NCS_CONNECTED: + case NCS_CONNECTED: return SHSetStrRet(&psd->str, netshell_hInstance, IDS_STATUS_CONNECTED); - default: + default: return SHSetStrRet(&psd->str, ""); } break; diff --git a/dll/shellext/ntobjshex/foldercommon.h b/dll/shellext/ntobjshex/foldercommon.h index 23c2fed3a1a..3a6b472ce8c 100644 --- a/dll/shellext/ntobjshex/foldercommon.h +++ b/dll/shellext/ntobjshex/foldercommon.h @@ -77,7 +77,7 @@ public: if (m_shellPidl) ILFree(m_shellPidl); } - + // IShellFolder virtual HRESULT STDMETHODCALLTYPE ParseDisplayName( HWND hwndOwner, @@ -215,8 +215,8 @@ protected: PWSTR path, const TItemId * info, LPITEMIDLIST first, - LPCITEMIDLIST rest, - LPITEMIDLIST fullPidl, + LPCITEMIDLIST rest, + LPITEMIDLIST fullPidl, LPBC pbcReserved, IShellFolder** ppsfChild) PURE; @@ -448,7 +448,7 @@ public: apidl = &child; } - + if (cidl == 1 && IsFolder(apidl[0])) { res = RegOpenKey(HKEY_CLASSES_ROOT, L"Folder", keys + 0); @@ -653,8 +653,8 @@ public: // Internal protected: virtual HRESULT STDMETHODCALLTYPE CompareIDs( - LPARAM lParam, - const TItemId * first, + LPARAM lParam, + const TItemId * first, const TItemId * second) PURE; virtual ULONG STDMETHODCALLTYPE ConvertAttributes( diff --git a/dll/shellext/ntobjshex/ntobjenum.h b/dll/shellext/ntobjshex/ntobjenum.h index 253c483c12e..2f683696006 100644 --- a/dll/shellext/ntobjshex/ntobjenum.h +++ b/dll/shellext/ntobjshex/ntobjenum.h @@ -73,7 +73,7 @@ struct RegPidlEntry USHORT magic; // 0x5364 ~~~ "REGK" REG_ENTRY_TYPE entryType; - + USHORT entryNameLength; union { diff --git a/dll/shellext/ntobjshex/ntobjfolder.cpp b/dll/shellext/ntobjshex/ntobjfolder.cpp index fa0526dd2bb..056bf67ca87 100644 --- a/dll/shellext/ntobjshex/ntobjfolder.cpp +++ b/dll/shellext/ntobjshex/ntobjfolder.cpp @@ -171,7 +171,7 @@ HRESULT STDMETHODCALLTYPE CNtObjectFolder::ResolveSymLink( hr = psfDesktop->ParseDisplayName(NULL, NULL, path, NULL, &pidl, NULL); if (FAILED(hr)) return hr; - + *fullPidl = pidl; DumpIdList(pidl); @@ -193,7 +193,7 @@ HRESULT STDMETHODCALLTYPE CNtObjectFolder::InternalBindToObject( { return ShellObjectCreatorInit(fullPidl, path, (HKEY) NULL, IID_PPV_ARG(IShellFolder, ppsfChild)); } - + return ShellObjectCreatorInit(fullPidl, path, IID_PPV_ARG(IShellFolder, ppsfChild)); } diff --git a/dll/shellext/ntobjshex/regfolder.cpp b/dll/shellext/ntobjshex/regfolder.cpp index 420091edb3d..70f1575d513 100644 --- a/dll/shellext/ntobjshex/regfolder.cpp +++ b/dll/shellext/ntobjshex/regfolder.cpp @@ -93,7 +93,7 @@ HRESULT STDMETHODCALLTYPE CRegistryFolderExtractIcon::Extract( return SHDefExtractIconW(pszFile, nIconIndex, 0, phiconLarge, phiconSmall, nIconSize); } -// CRegistryFolder +// CRegistryFolder CRegistryFolder::CRegistryFolder() { diff --git a/dll/shellext/stobject/hotplug.cpp b/dll/shellext/stobject/hotplug.cpp index a8968818236..c62d3d88047 100644 --- a/dll/shellext/stobject/hotplug.cpp +++ b/dll/shellext/stobject/hotplug.cpp @@ -3,7 +3,7 @@ * LICENSE: GPL - See COPYING in the top level directory * FILE: dll/shellext/stobject/hotplug.cpp * PURPOSE: Removable devices notification icon handler - * PROGRAMMERS: Shriraj Sawant a.k.a SR13 + * PROGRAMMERS: Shriraj Sawant a.k.a SR13 */ #include "precomp.h" diff --git a/dll/shellext/stobject/power.cpp b/dll/shellext/stobject/power.cpp index 932dc47dea5..9d80665dc87 100644 --- a/dll/shellext/stobject/power.cpp +++ b/dll/shellext/stobject/power.cpp @@ -32,9 +32,9 @@ static HICON g_hIconBattery = NULL; /*++ * @name Quantize -* +* * This function quantizes the mentioned quantity to nearest level. -* +* * @param p * Should be a quantity in percentage. * @@ -93,7 +93,7 @@ static HICON DynamicLoadIcon(HINSTANCE hinst) ((PowerStatus.BatteryFlag & BATTERY_FLAG_CHARGING) == BATTERY_FLAG_CHARGING)) { index = Quantize(PowerStatus.BatteryLifePercent); - hBatIcon = LoadIcon(hinst, MAKEINTRESOURCE(bc_icons[index])); + hBatIcon = LoadIcon(hinst, MAKEINTRESOURCE(bc_icons[index])); g_strTooltip.Format(IDS_PWR_CHARGING, PowerStatus.BatteryLifePercent); } else if (((PowerStatus.BatteryFlag & BATTERY_FLAG_NO_BATTERY) == 0) && @@ -113,7 +113,7 @@ static HICON DynamicLoadIcon(HINSTANCE hinst) } HRESULT STDMETHODCALLTYPE Power_Init(_In_ CSysTray * pSysTray) -{ +{ TRACE("Power_Init\n"); g_hIconBattery = DynamicLoadIcon(g_hInstance); @@ -213,7 +213,7 @@ ShowPowerSchemesPopupMenu( SetForegroundWindow(pSysTray->GetHWnd()); GetCursorPos(&pt); - + id = TrackPopupMenuEx(PowerSchemeContext.hPopup, TPM_RETURNCMD | TPM_NONOTIFY | TPM_RIGHTALIGN | TPM_BOTTOMALIGN, pt.x, diff --git a/dll/shellext/zipfldr/CEnumZipContents.cpp b/dll/shellext/zipfldr/CEnumZipContents.cpp index f135fe756fa..0899468f9d7 100644 --- a/dll/shellext/zipfldr/CEnumZipContents.cpp +++ b/dll/shellext/zipfldr/CEnumZipContents.cpp @@ -81,7 +81,7 @@ public: public: DECLARE_NOT_AGGREGATABLE(CEnumZipContents) DECLARE_PROTECT_FINAL_CONSTRUCT() - + BEGIN_COM_MAP(CEnumZipContents) COM_INTERFACE_ENTRY_IID(IID_IEnumIDList, IEnumIDList) END_COM_MAP() diff --git a/dll/shellext/zipfldr/CZipExtract.cpp b/dll/shellext/zipfldr/CZipExtract.cpp index 1ccba19b226..bd7dbb7f005 100644 --- a/dll/shellext/zipfldr/CZipExtract.cpp +++ b/dll/shellext/zipfldr/CZipExtract.cpp @@ -180,7 +180,7 @@ public: return 0; } - + BOOL OnQueryCancel() { if (m_hExtractionThread != NULL) diff --git a/dll/shellext/zipfldr/CZipFolder.hpp b/dll/shellext/zipfldr/CZipFolder.hpp index af70c9cb406..e89aeb81d87 100644 --- a/dll/shellext/zipfldr/CZipFolder.hpp +++ b/dll/shellext/zipfldr/CZipFolder.hpp @@ -17,7 +17,7 @@ struct FolderViewColumns int fmt; }; -static FolderViewColumns g_ColumnDefs[] = +static FolderViewColumns g_ColumnDefs[] = { { IDS_COL_NAME, SHCOLSTATE_TYPE_STR | SHCOLSTATE_ONBYDEFAULT, 25, LVCFMT_LEFT }, { IDS_COL_TYPE, SHCOLSTATE_TYPE_STR | SHCOLSTATE_ONBYDEFAULT, 20, LVCFMT_LEFT }, diff --git a/dll/win32/advapi32/misc/hwprofiles.c b/dll/win32/advapi32/misc/hwprofiles.c index 88a0188cf33..ff4b54580fd 100644 --- a/dll/win32/advapi32/misc/hwprofiles.c +++ b/dll/win32/advapi32/misc/hwprofiles.c @@ -161,11 +161,11 @@ GetCurrentHwProfileW(LPHW_PROFILE_INFOW lpHwProfileInfo) swprintf( lpHwProfileInfo->szHwProfileGuid, L"{%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X}", - uuid.Data1, - uuid.Data2, + uuid.Data1, + uuid.Data2, uuid.Data3, uuid.Data4[0], uuid.Data4[1], - uuid.Data4[2], uuid.Data4[3], uuid.Data4[4], uuid.Data4[5], + uuid.Data4[2], uuid.Data4[3], uuid.Data4[4], uuid.Data4[5], uuid.Data4[6], uuid.Data4[7]); dwLength = (wcslen(lpHwProfileInfo->szHwProfileGuid) + 1) * sizeof(WCHAR); diff --git a/dll/win32/advapi32/sec/sec.c b/dll/win32/advapi32/sec/sec.c index 9b84496a1b7..bccd78798c7 100644 --- a/dll/win32/advapi32/sec/sec.c +++ b/dll/win32/advapi32/sec/sec.c @@ -240,7 +240,7 @@ SetSecurityDescriptorControl(PSECURITY_DESCRIPTOR pSecurityDescriptor, SECURITY_DESCRIPTOR_CONTROL ControlBitsToSet) { NTSTATUS Status; - + Status = RtlSetControlSecurityDescriptor(pSecurityDescriptor, ControlBitsOfInterest, ControlBitsToSet); diff --git a/dll/win32/avicap32/avicap32.c b/dll/win32/avicap32/avicap32.c index c5457471f1c..12912ca2e0d 100644 --- a/dll/win32/avicap32/avicap32.c +++ b/dll/win32/avicap32/avicap32.c @@ -218,7 +218,7 @@ capGetDriverDescriptionW(WORD wDriverIndex, if (dwInfoSize) { Version = HeapAlloc(GetProcessHeap(), 0, dwInfoSize); - + if (Version != NULL) { GetFileVersionInfo(szFileName, 0, dwInfoSize, Version); diff --git a/dll/win32/browseui/CProgressDialog.cpp b/dll/win32/browseui/CProgressDialog.cpp index fbd3f40b3c3..6d32d01ecb2 100644 --- a/dll/win32/browseui/CProgressDialog.cpp +++ b/dll/win32/browseui/CProgressDialog.cpp @@ -176,7 +176,7 @@ static INT_PTR CALLBACK dialog_proc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM l This->isCancelled = FALSE; SetTimer(hwnd, ID_3SECONDS, 3 * 1000, NULL); - + SetEvent(params->hEvent); return TRUE; } @@ -217,11 +217,11 @@ static INT_PTR CALLBACK dialog_proc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM l EnterCriticalSection(&This->cs); if (This->progressClock[29].ullMark != 0ull) { // We have enough info to take a guess - ULONGLONG sizeDiff = This->progressClock[This->clockHand].ullMark - + ULONGLONG sizeDiff = This->progressClock[This->clockHand].ullMark - This->progressClock[(This->clockHand + 29) % 30].ullMark; - DWORD timeDiff = This->progressClock[This->clockHand].dwTime - + DWORD timeDiff = This->progressClock[This->clockHand].dwTime - This->progressClock[(This->clockHand + 29) % 30].dwTime; - DWORD runDiff = This->progressClock[This->clockHand].dwTime - + DWORD runDiff = This->progressClock[This->clockHand].dwTime - This->dwStartTime; ULONGLONG sizeLeft = This->ullTotal - This->progressClock[This->clockHand].ullMark; @@ -250,8 +250,8 @@ static DWORD WINAPI dialog_thread(LPVOID lpParameter) hwnd = CreateDialogParamW(_AtlBaseModule.GetResourceInstance(), MAKEINTRESOURCEW(IDD_PROGRESS_DLG), - params->hwndParent, - dialog_proc, + params->hwndParent, + dialog_proc, (LPARAM)params); while (GetMessageW(&msg, NULL, 0, 0) > 0) @@ -359,7 +359,7 @@ BOOL WINAPI CProgressDialog::HasUserCancelled() } HRESULT WINAPI CProgressDialog::SetProgress64(ULONGLONG ullCompleted, ULONGLONG ullTotal) -{ +{ HWND hwnd; EnterCriticalSection(&this->cs); @@ -411,7 +411,7 @@ HRESULT WINAPI CProgressDialog::SetLine(DWORD dwLineNum, LPCWSTR pwzLine, BOOL b } HRESULT WINAPI CProgressDialog::SetCancelMsg(LPCWSTR pwzMsg, LPCVOID reserved) -{ +{ HWND hwnd; if (reserved) diff --git a/dll/win32/browseui/addresseditbox.cpp b/dll/win32/browseui/addresseditbox.cpp index f1e9131d607..4d7b3dc7c57 100644 --- a/dll/win32/browseui/addresseditbox.cpp +++ b/dll/win32/browseui/addresseditbox.cpp @@ -52,7 +52,7 @@ HRESULT STDMETHODCALLTYPE CAddressEditBox::SetOwner(IUnknown *pOwner) HRESULT hResult = IUnknown_QueryService(fSite, SID_SShellBrowser, IID_PPV_ARG(IBrowserService, &browserService)); if (SUCCEEDED(hResult)) AtlUnadvise(browserService, DIID_DWebBrowserEvents, fAdviseCookie); - fSite = NULL; + fSite = NULL; } // connect to browser connection point return 0; @@ -191,7 +191,7 @@ HRESULT STDMETHODCALLTYPE CAddressEditBox::Execute(long paramC) { HRESULT hr; - /* + /* * Parse the path is it wasn't parsed */ if (!pidlLastParsed) @@ -206,8 +206,8 @@ HRESULT STDMETHODCALLTYPE CAddressEditBox::Execute(long paramC) if (!pidlLastParsed) return E_FAIL; - /* - * Get the IShellBrowser and IBrowserService interfaces of the shell browser + /* + * Get the IShellBrowser and IBrowserService interfaces of the shell browser */ CComPtr pisb; hr = IUnknown_QueryService(fSite, SID_SShellBrowser, IID_PPV_ARG(IShellBrowser, &pisb)); @@ -238,14 +238,14 @@ HRESULT STDMETHODCALLTYPE CAddressEditBox::Execute(long paramC) if (hr == 0) return S_OK; - /* - * Attempt to browse to the parsed pidl + /* + * Attempt to browse to the parsed pidl */ hr = pisb->BrowseObject(pidlLastParsed, 0); if (SUCCEEDED(hr)) return hr; - /* + /* * Browsing to the pidl failed so it's not a folder. So invoke its defaule command. */ HWND topLevelWindow; diff --git a/dll/win32/browseui/basebarsite.cpp b/dll/win32/browseui/basebarsite.cpp index 0677e2a9e4f..352e8c4a03f 100644 --- a/dll/win32/browseui/basebarsite.cpp +++ b/dll/win32/browseui/basebarsite.cpp @@ -323,7 +323,7 @@ HRESULT STDMETHODCALLTYPE CBaseBarSite::OnWinEvent( // RECT newBounds; HRESULT hResult; LRESULT result; - + hResult = S_OK; if (uMsg == WM_NOTIFY) { @@ -339,7 +339,7 @@ HRESULT STDMETHODCALLTYPE CBaseBarSite::OnWinEvent( hResult = fDeskBarSite->QueryInterface(IID_PPV_ARG(IDeskBar, &deskBar)); GetClientRect(&newBounds); hResult = deskBar->OnPosRectChangeDB(&newBounds); - + #endif break; case NM_CUSTOMDRAW: @@ -375,9 +375,9 @@ HRESULT STDMETHODCALLTYPE CBaseBarSite::SetDeskBarSite(IUnknown *punkSite) { CComPtr oleWindow; HWND ownerWindow; - HRESULT hResult; + HRESULT hResult; DWORD dwBandID; - + if (punkSite == NULL) { @@ -426,7 +426,7 @@ HRESULT STDMETHODCALLTYPE CBaseBarSite::SetDeskBarSite(IUnknown *punkSite) /* Create close toolbar and imagelist */ toolbarWnd = CreateWindowW(TOOLBARCLASSNAMEW, NULL, WS_VISIBLE | WS_CHILD | WS_CLIPSIBLINGS | WS_CLIPCHILDREN | - TBSTYLE_FLAT | TBSTYLE_TRANSPARENT | TBSTYLE_TOOLTIPS | + TBSTYLE_FLAT | TBSTYLE_TRANSPARENT | TBSTYLE_TOOLTIPS | CCS_NOMOVEY | CCS_NORESIZE | CCS_NOPARENTALIGN | CCS_NODIVIDER , 0, 0, 0, 0, m_hWnd, NULL, _AtlBaseModule.GetModuleInstance(), NULL); @@ -440,7 +440,7 @@ HRESULT STDMETHODCALLTYPE CBaseBarSite::SetDeskBarSite(IUnknown *punkSite) DeleteObject(hBmp); SendMessage(toolbarWnd, TB_SETIMAGELIST, 0, (LPARAM)toolImageList); - + /* Add button to toolbar */ closeBtn.iBitmap = MAKELONG(1, 0); closeBtn.idCommand = IDM_BASEBAR_CLOSE; diff --git a/dll/win32/browseui/browseui.cpp b/dll/win32/browseui/browseui.cpp index ea5b000365f..8634429bfc9 100644 --- a/dll/win32/browseui/browseui.cpp +++ b/dll/win32/browseui/browseui.cpp @@ -113,7 +113,7 @@ HRESULT CMenuBand_CreateInstance(REFIID iid, LPVOID *ppv) #if USE_CUSTOM_MENUBAND HMODULE hRShell = GetModuleHandleW(L"rshell.dll"); - if (!hRShell) + if (!hRShell) hRShell = LoadLibraryW(L"rshell.dll"); if (hRShell) diff --git a/dll/win32/browseui/desktopipc.cpp b/dll/win32/browseui/desktopipc.cpp index 152ae050eb8..fe5d5c2a8b8 100644 --- a/dll/win32/browseui/desktopipc.cpp +++ b/dll/win32/browseui/desktopipc.cpp @@ -358,7 +358,7 @@ static HRESULT ExplorerMessageLoop(IEThreadParamBlock * parameters) /* Handle /select parameter */ PUITEMID_CHILD pidlSelect = NULL; - if ((parameters->dwFlags & SH_EXPLORER_CMDLINE_FLAG_SELECT) && + if ((parameters->dwFlags & SH_EXPLORER_CMDLINE_FLAG_SELECT) && (ILGetNext(parameters->directoryPIDL) != NULL)) { pidlSelect = ILClone(ILFindLastID(parameters->directoryPIDL)); @@ -597,11 +597,11 @@ extern "C" HRESULT WINAPI SHOpenNewFrame(LPITEMIDLIST pidl, IUnknown *paramC, lo parameters->offset10 = param10; parameters->directoryPIDL = pidl; parameters->dwFlags = dwFlags; - + HRESULT hr = SHOpenFolderWindow(parameters); - + SHDestroyIETHREADPARAM(parameters); - + return hr; } diff --git a/dll/win32/browseui/explorerband.cpp b/dll/win32/browseui/explorerband.cpp index fa915c8d89b..535ba404f97 100644 --- a/dll/win32/browseui/explorerband.cpp +++ b/dll/win32/browseui/explorerband.cpp @@ -82,7 +82,7 @@ HRESULT GetDisplayName(LPCITEMIDLIST pidlDirectory,TCHAR *szDisplayName,UINT cch } /* - This is a Windows hack, because shell event messages in Windows gives an + This is a Windows hack, because shell event messages in Windows gives an ill-formed PIDL stripped from useful data that parses incorrectly with SHGetFileInfo. So we need to re-enumerate subfolders until we find one with the same name. */ @@ -348,7 +348,7 @@ BOOL CExplorerBand::OnTreeItemDeleted(LPNMTREEVIEW pnmtv) /* Destroy memory associated to our node */ NodeInfo* ptr = GetNodeInfo(pnmtv->itemNew.hItem); if (ptr) - { + { ILFree(ptr->relativePidl); ILFree(ptr->absolutePidl); delete ptr; @@ -776,7 +776,7 @@ BOOL CExplorerBand::NavigateToPIDL(LPITEMIDLIST dest, HTREEITEM *item, BOOL bExp // Try to get a child tmp = TreeView_GetChild(m_hWnd, current); if (tmp) - { + { // We have a child, let's continue with it parent = current; current = tmp; @@ -820,7 +820,7 @@ BOOL CExplorerBand::NavigateToCurrentFolder() CComPtr pBrowserService; HRESULT hr; HTREEITEM dummy; - BOOL result; + BOOL result; explorerPidl = NULL; hr = IUnknown_QueryService(m_pSite, SID_STopLevelBrowser, IID_PPV_ARG(IBrowserService, &pBrowserService)); diff --git a/dll/win32/browseui/explorerband.h b/dll/win32/browseui/explorerband.h index 29c6160431f..a4d5aa98666 100644 --- a/dll/win32/browseui/explorerband.h +++ b/dll/win32/browseui/explorerband.h @@ -96,7 +96,7 @@ private: HRESULT UpdateBrowser(LPITEMIDLIST pidlGoto); HTREEITEM InsertItem(HTREEITEM hParent, IShellFolder *psfParent, LPITEMIDLIST pElt, LPITEMIDLIST pEltRelative, BOOL bSort); HTREEITEM InsertItem(HTREEITEM hParent, LPITEMIDLIST pElt, LPITEMIDLIST pEltRelative, BOOL bSort); - BOOL InsertSubitems(HTREEITEM hItem, NodeInfo *pNodeInfo); + BOOL InsertSubitems(HTREEITEM hItem, NodeInfo *pNodeInfo); BOOL NavigateToPIDL(LPITEMIDLIST dest, HTREEITEM *item, BOOL bExpand, BOOL bInsert, BOOL bSelect); BOOL DeleteItem(LPITEMIDLIST toDelete); BOOL RenameItem(HTREEITEM toRename, LPITEMIDLIST newPidl); diff --git a/dll/win32/browseui/internettoolbar.cpp b/dll/win32/browseui/internettoolbar.cpp index ea67bd576d5..5c35bfdcaa3 100644 --- a/dll/win32/browseui/internettoolbar.cpp +++ b/dll/win32/browseui/internettoolbar.cpp @@ -396,7 +396,7 @@ static HRESULT GetFavoritesFolder(IShellFolder ** ppsfFavorites, LPITEMIDLIST * if (ppsfFavorites) *ppsfFavorites = NULL; - + if (ppidl) *ppidl = NULL; @@ -515,7 +515,7 @@ HRESULT STDMETHODCALLTYPE CMenuCallback::GetObject(LPSMDATA psmd, REFIID riid, v if (FAILED(hResult)) return hResult; - + fFavoritesMenu = newMenu; } @@ -666,7 +666,7 @@ HRESULT CInternetToolbar::CreateMenuBar(IShellMenu **pMenuBar) hResult = CMenuBand_CreateInstance(IID_PPV_ARG(IShellMenu, &menubar)); if (FAILED_UNEXPECTEDLY(hResult)) return hResult; - + hResult = fMenuCallback->QueryInterface(IID_PPV_ARG(IShellMenuCallback, &callback)); if (FAILED_UNEXPECTEDLY(hResult)) return hResult; @@ -976,7 +976,7 @@ HRESULT STDMETHODCALLTYPE CInternetToolbar::ResizeBorderDW(LPCRECT prcBorder, neededBorderSpace.bottom = 0; CComPtr dockingWindowSite; - + HRESULT hResult = fSite->QueryInterface(IID_PPV_ARG(IDockingWindowSite, &dockingWindowSite)); if (FAILED_UNEXPECTEDLY(hResult)) return hResult; @@ -1522,7 +1522,7 @@ LRESULT CInternetToolbar::OnUpLevel(WORD wNotifyCode, WORD wID, HWND hWndCtl, BO LRESULT CInternetToolbar::OnSearch(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL &bHandled) { - IUnknown_Exec(fSite, CGID_Explorer, 0x1c, 1, NULL, NULL); + IUnknown_Exec(fSite, CGID_Explorer, 0x1c, 1, NULL, NULL); return 1; } @@ -1546,7 +1546,7 @@ LRESULT CInternetToolbar::OnForwardToCommandTarget(WORD wNotifyCode, WORD wID, H } return 1; } - + LRESULT CInternetToolbar::OnMenuDropDown(UINT idControl, NMHDR *pNMHDR, BOOL &bHandled) { CComPtr browserService; @@ -1849,10 +1849,10 @@ LRESULT CInternetToolbar::OnLDown(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL fSizing = TRUE; DWORD msgp = GetMessagePos(); - + fStartPosition.x = GET_X_LPARAM(msgp); fStartPosition.y = GET_Y_LPARAM(msgp); - + RECT rc; GetWindowRect(&rc); diff --git a/dll/win32/browseui/shellbars/CBandSite.cpp b/dll/win32/browseui/shellbars/CBandSite.cpp index fea22c39879..09844fd48f2 100644 --- a/dll/win32/browseui/shellbars/CBandSite.cpp +++ b/dll/win32/browseui/shellbars/CBandSite.cpp @@ -718,7 +718,7 @@ HRESULT STDMETHODCALLTYPE CBandSiteBase::OnWinEvent(HWND hWnd, UINT uMsg, WPARAM HRESULT hr = _OnContextMenu(hWnd, uMsg, wParam, lParam, plrResult); if (FAILED_UNEXPECTEDLY(hr)) return hr; - + return S_OK; } else if (uMsg == WM_COMMAND && lParam) diff --git a/dll/win32/browseui/shellbars/CBandSiteMenu.cpp b/dll/win32/browseui/shellbars/CBandSiteMenu.cpp index 4f7af9b28f1..dd7c8f03174 100644 --- a/dll/win32/browseui/shellbars/CBandSiteMenu.cpp +++ b/dll/win32/browseui/shellbars/CBandSiteMenu.cpp @@ -26,7 +26,7 @@ /* The menu consists of 3 parts. The first is loaded from the resources, the second is populated with the classes of the CATID_DeskBand comcat and the third part consists of the entries for each CISFBand in the band side. - The first 5 ids are reserved for the resource menu, the following ids will be + The first 5 ids are reserved for the resource menu, the following ids will be for the CATID_DeskBand classes and the rest for the CISFBands. The ids for the CISFBand menu items are not continuous, in this range each menu id is calculated by adding the band id to the last id for the CATID_DeskBand range */ @@ -330,7 +330,7 @@ UINT CBandSiteMenu::_GetBandIdForBuiltinISFBand(UINT uID) HRESULT STDMETHODCALLTYPE CBandSiteMenu::SetOwner(IUnknown *pOwner) { TRACE("CBandSiteMenu::SetOwner(%p, %p)\n", this, pOwner); - + /* Cache the menu that will be merged every time QueryContextMenu is called */ _CreateMenuPart(); @@ -384,7 +384,7 @@ HRESULT STDMETHODCALLTYPE CBandSiteMenu::QueryContextMenu( CheckMenuItem(hmenuToolbars, menuID + idCmdFirst, MF_CHECKED); } - return MAKE_HRESULT(SEVERITY_SUCCESS, 0, USHORT(idMax - idCmdFirst +1)); + return MAKE_HRESULT(SEVERITY_SUCCESS, 0, USHORT(idMax - idCmdFirst +1)); } HRESULT CBandSiteMenu::_ShowToolbarError(HRESULT hRet) diff --git a/dll/win32/browseui/shellbars/CISFBand.cpp b/dll/win32/browseui/shellbars/CISFBand.cpp index 722d72b60a3..2d8c7d4500b 100644 --- a/dll/win32/browseui/shellbars/CISFBand.cpp +++ b/dll/win32/browseui/shellbars/CISFBand.cpp @@ -23,10 +23,10 @@ TODO: */ //***************************************************************************************** -// *** CISFBand *** +// *** CISFBand *** CISFBand::CISFBand() : - m_BandID(0), + m_BandID(0), m_pidl(NULL), m_textFlag(true), m_iconFlag(true), @@ -34,7 +34,7 @@ CISFBand::CISFBand() : { } -CISFBand::~CISFBand() +CISFBand::~CISFBand() { CloseDW(0); } @@ -53,35 +53,35 @@ CISFBand::~CISFBand() *--*/ HRESULT CISFBand::CreateSimpleToolbar(HWND hWndParent) { - // Declare and initialize local constants. + // Declare and initialize local constants. const DWORD buttonStyles = BTNS_AUTOSIZE; // Create the toolbar. m_hWnd = CreateWindowEx(0, TOOLBARCLASSNAME, NULL, WS_CHILD | TBSTYLE_FLAT | TBSTYLE_LIST | CCS_NORESIZE | CCS_NODIVIDER, CW_USEDEFAULT, CW_USEDEFAULT, 0, 0, - hWndParent, NULL, 0, NULL); + hWndParent, NULL, 0, NULL); if (m_hWnd == NULL) - return E_FAIL; + return E_FAIL; if (!m_textFlag) SendMessage(m_hWnd, TB_SETEXTENDEDSTYLE, 0, TBSTYLE_EX_MIXEDBUTTONS); // Set the image list. HIMAGELIST* piml; - HRESULT hr = SHGetImageList(SHIL_SMALL, IID_IImageList, (void**)&piml); + HRESULT hr = SHGetImageList(SHIL_SMALL, IID_IImageList, (void**)&piml); if (FAILED_UNEXPECTEDLY(hr)) { DestroyWindow(); return hr; - } + } SendMessage(m_hWnd, TB_SETIMAGELIST, 0, (LPARAM)piml); // Enumerate objects - CComPtr pEndl; + CComPtr pEndl; LPITEMIDLIST pidl; - STRRET stret; + STRRET stret; hr = m_pISF->EnumObjects(0, SHCONTF_FOLDERS|SHCONTF_NONFOLDERS, &pEndl); - if (FAILED_UNEXPECTEDLY(hr)) + if (FAILED_UNEXPECTEDLY(hr)) { DestroyWindow(); return hr; @@ -90,18 +90,18 @@ HRESULT CISFBand::CreateSimpleToolbar(HWND hWndParent) for (int i=0; pEndl->Next(1, &pidl, NULL) != S_FALSE; i++) { WCHAR sz[MAX_PATH]; - int index = SHMapPIDLToSystemImageListIndex(m_pISF, pidl, NULL); - hr = m_pISF->GetDisplayNameOf(pidl, SHGDN_NORMAL, &stret); + int index = SHMapPIDLToSystemImageListIndex(m_pISF, pidl, NULL); + hr = m_pISF->GetDisplayNameOf(pidl, SHGDN_NORMAL, &stret); if (FAILED_UNEXPECTEDLY(hr)) { StringCchCopyW(sz, MAX_PATH, L""); } - else - StrRetToBuf(&stret, pidl, sz, _countof(sz)); + else + StrRetToBuf(&stret, pidl, sz, _countof(sz)); TBBUTTON tb = { MAKELONG(index, 0), i, TBSTATE_ENABLED, buttonStyles,{ 0 }, (DWORD_PTR)pidl, (INT_PTR)sz }; - SendMessage(m_hWnd, TB_INSERTBUTTONW, i, (LPARAM)&tb); - } + SendMessage(m_hWnd, TB_INSERTBUTTONW, i, (LPARAM)&tb); + } // Resize the toolbar, and then show it. SendMessage(m_hWnd, TB_AUTOSIZE, 0, 0); @@ -111,7 +111,7 @@ HRESULT CISFBand::CreateSimpleToolbar(HWND hWndParent) /*****************************************************************************/ -// *** IObjectWithSite *** +// *** IObjectWithSite *** STDMETHODIMP CISFBand::SetSite(IUnknown *pUnkSite) { HRESULT hr; @@ -125,17 +125,17 @@ HRESULT CISFBand::CreateSimpleToolbar(HWND hWndParent) TRACE("Querying site window failed: 0x%x\n", hr); return hr; } - m_Site = pUnkSite; - + m_Site = pUnkSite; + hr = CreateSimpleToolbar(hwndParent); if (FAILED_UNEXPECTEDLY(hr)) - return hr; + return hr; return S_OK; } STDMETHODIMP CISFBand::GetSite(IN REFIID riid, OUT VOID **ppvSite) - { + { TRACE("CISFBand::GetSite(0x%p,0x%p)\n", riid, ppvSite); HRESULT hr; @@ -143,44 +143,44 @@ HRESULT CISFBand::CreateSimpleToolbar(HWND hWndParent) { hr = m_Site->QueryInterface(riid, ppvSite); if (FAILED(hr)) return hr; - } + } *ppvSite = NULL; return E_FAIL; } /*****************************************************************************/ -// *** IDeskBand *** +// *** IDeskBand *** STDMETHODIMP CISFBand::GetWindow(OUT HWND *phwnd) { if (!m_hWnd) return E_FAIL; if (!phwnd) return E_POINTER; - *phwnd = m_hWnd; + *phwnd = m_hWnd; return S_OK; } STDMETHODIMP CISFBand::ContextSensitiveHelp(IN BOOL fEnterMode) { - /* FIXME: Implement */ + /* FIXME: Implement */ return E_NOTIMPL; } STDMETHODIMP CISFBand::ShowDW(IN BOOL bShow) - { + { if (m_hWnd) { ShowWindow(bShow ? SW_SHOW : SW_HIDE); return S_OK; } - - return E_FAIL; + + return E_FAIL; } STDMETHODIMP CISFBand::CloseDW(IN DWORD dwReserved) - { + { if (m_hWnd) { ShowWindow(SW_HIDE); @@ -189,7 +189,7 @@ HRESULT CISFBand::CreateSimpleToolbar(HWND hWndParent) for (int i = 0; SendMessage(m_hWnd, TB_GETBUTTON, i, (LPARAM)&tb); i++) { CoTaskMemFree((LPITEMIDLIST)tb.dwData); - } + } DestroyWindow(); m_hWnd = NULL; @@ -199,7 +199,7 @@ HRESULT CISFBand::CreateSimpleToolbar(HWND hWndParent) return E_FAIL; } - STDMETHODIMP CISFBand::ResizeBorderDW(LPCRECT prcBorder, IUnknown *punkToolbarSite, BOOL fReserved) + STDMETHODIMP CISFBand::ResizeBorderDW(LPCRECT prcBorder, IUnknown *punkToolbarSite, BOOL fReserved) { /* No need to implement this method */ @@ -207,31 +207,31 @@ HRESULT CISFBand::CreateSimpleToolbar(HWND hWndParent) } STDMETHODIMP CISFBand::GetBandInfo(IN DWORD dwBandID, IN DWORD dwViewMode, IN OUT DESKBANDINFO *pdbi) - { + { TRACE("CTaskBand::GetBandInfo(0x%x,0x%x,0x%p) hWnd=0x%p\n", dwBandID, dwViewMode, pdbi, m_hWnd); - + if (m_hWnd && pdbi) { m_BandID = dwBandID; - + RECT actualRect; POINTL actualSize; POINTL idealSize; POINTL maxSize; - POINTL itemSize; + POINTL itemSize; GetWindowRect(&actualRect); actualSize.x = actualRect.right - actualRect.left; actualSize.y = actualRect.bottom - actualRect.top; - // Obtain the ideal size, to be used as min and max + // Obtain the ideal size, to be used as min and max SendMessageW(m_hWnd, TB_AUTOSIZE, 0, 0); - SendMessageW(m_hWnd, TB_GETMAXSIZE, 0, reinterpret_cast(&maxSize)); + SendMessageW(m_hWnd, TB_GETMAXSIZE, 0, reinterpret_cast(&maxSize)); idealSize = maxSize; - SendMessageW(m_hWnd, TB_GETIDEALSIZE, FALSE, reinterpret_cast(&idealSize)); + SendMessageW(m_hWnd, TB_GETIDEALSIZE, FALSE, reinterpret_cast(&idealSize)); - // Obtain the button size, to be used as the integral size + // Obtain the button size, to be used as the integral size DWORD size = SendMessageW(m_hWnd, TB_GETBUTTONSIZE, 0, 0); itemSize.x = GET_X_LPARAM(size); itemSize.y = GET_Y_LPARAM(size); @@ -274,16 +274,16 @@ HRESULT CISFBand::CreateSimpleToolbar(HWND hWndParent) if (pdbi->dwMask & DBIM_BKCOLOR) pdbi->dwMask &= ~DBIM_BKCOLOR; - return S_OK; + return S_OK; } return E_FAIL; - } + } /*****************************************************************************/ -// *** IPersistStream *** +// *** IPersistStream *** STDMETHODIMP CISFBand::GetClassID(OUT CLSID *pClassID) - { + { *pClassID = CLSID_ISFBand; return S_OK; @@ -313,15 +313,15 @@ HRESULT CISFBand::CreateSimpleToolbar(HWND hWndParent) STDMETHODIMP CISFBand::GetSizeMax(OUT ULARGE_INTEGER *pcbSize) { - TRACE("CISFBand::GetSizeMax called\n"); + TRACE("CISFBand::GetSizeMax called\n"); return S_OK; - } + } /*****************************************************************************/ -// *** IWinEventHandler *** +// *** IWinEventHandler *** STDMETHODIMP CISFBand::ContainsWindow(IN HWND hWnd) - { + { if (hWnd == m_hWnd || IsChild(hWnd)) { TRACE("CISFBand::ContainsWindow(0x%p) returns S_OK\n", hWnd); @@ -332,12 +332,12 @@ HRESULT CISFBand::CreateSimpleToolbar(HWND hWndParent) } STDMETHODIMP CISFBand::OnWinEvent(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam, LRESULT *theResult) - { + { switch (uMsg) { case WM_COMMAND: { - TBBUTTON tb; + TBBUTTON tb; bool chk = SendMessage(m_hWnd, TB_GETBUTTON, LOWORD(wParam), (LPARAM)&tb); if (chk) SHInvokeDefaultCommand(m_hWnd, m_pISF, (LPITEMIDLIST)tb.dwData); @@ -345,13 +345,13 @@ HRESULT CISFBand::CreateSimpleToolbar(HWND hWndParent) if (theResult) *theResult = TRUE; break; - } + } case WM_NOTIFY: { switch (((LPNMHDR)lParam)->code) { case NM_RCLICK: - { + { HRESULT hr; POINT pt = ((LPNMMOUSE)lParam)->pt; CComPtr picm; @@ -387,7 +387,7 @@ HRESULT CISFBand::CreateSimpleToolbar(HWND hWndParent) info.fMask |= CMIC_MASK_SHIFT_DOWN; } info.hwnd = m_hWnd; - info.lpVerb = MAKEINTRESOURCEA(id - 1); + info.lpVerb = MAKEINTRESOURCEA(id - 1); info.nShow = SW_SHOWNORMAL; info.ptInvoke = pt; picm->InvokeCommand((LPCMINVOKECOMMANDINFO)&info); @@ -411,25 +411,25 @@ HRESULT CISFBand::CreateSimpleToolbar(HWND hWndParent) *theResult = FALSE; } - return S_OK; + return S_OK; } STDMETHODIMP CISFBand::IsWindowOwner(HWND hWnd) - { - return (hWnd == m_hWnd) ? S_OK : S_FALSE; - } + { + return (hWnd == m_hWnd) ? S_OK : S_FALSE; + } /*****************************************************************************/ // *** IOleCommandTarget methods *** STDMETHODIMP CISFBand::QueryStatus(const GUID *pguidCmdGroup, ULONG cCmds, OLECMD prgCmds [], OLECMDTEXT *pCmdText) - { + { UNIMPLEMENTED; return E_NOTIMPL; } STDMETHODIMP CISFBand::Exec(const GUID *pguidCmdGroup, DWORD nCmdID, DWORD nCmdexecopt, VARIANT *pvaIn, VARIANT *pvaOut) - { + { if (IsEqualIID(*pguidCmdGroup, IID_IBandSite)) { return S_OK; @@ -446,7 +446,7 @@ HRESULT CISFBand::CreateSimpleToolbar(HWND hWndParent) } return S_OK; } - + UNIMPLEMENTED; return E_NOTIMPL; @@ -511,20 +511,20 @@ HRESULT CISFBand::CreateSimpleToolbar(HWND hWndParent) m_pISF = psf; } - + return S_OK; } STDMETHODIMP CISFBand::SetBandInfoSFB( PBANDINFOSFB pbi) { - if ((pbi->dwMask & ISFB_MASK_STATE) && + if ((pbi->dwMask & ISFB_MASK_STATE) && (pbi->dwState & ISFB_STATE_QLINKSMODE) && (pbi->dwStateMask & ISFB_STATE_QLINKSMODE)) { m_QLaunch = true; m_textFlag = false; if (m_hWnd) - SendMessage(m_hWnd, TB_SETEXTENDEDSTYLE, 0, TBSTYLE_EX_MIXEDBUTTONS); + SendMessage(m_hWnd, TB_SETEXTENDEDSTYLE, 0, TBSTYLE_EX_MIXEDBUTTONS); } return E_NOTIMPL; @@ -533,7 +533,7 @@ HRESULT CISFBand::CreateSimpleToolbar(HWND hWndParent) /*****************************************************************************/ // *** IContextMenu *** STDMETHODIMP CISFBand::GetCommandString(UINT_PTR idCmd, UINT uFlags, UINT *pwReserved, LPSTR pszName, UINT cchMax) - { + { /*HRESULT hr = E_INVALIDARG; if (idCmd == IDM_DISPLAY) @@ -541,7 +541,7 @@ HRESULT CISFBand::CreateSimpleToolbar(HWND hWndParent) switch (uFlags) { case GCS_HELPTEXTW: - // Only useful for pre-Vista versions of Windows that + // Only useful for pre-Vista versions of Windows that // have a Status bar. hr = StringCchCopyW(reinterpret_cast(pszName), cchMax, @@ -564,13 +564,13 @@ HRESULT CISFBand::CreateSimpleToolbar(HWND hWndParent) } STDMETHODIMP CISFBand::InvokeCommand(LPCMINVOKECOMMANDINFO pici) - { + { if (!HIWORD(pici->lpVerb)) { switch (LOWORD(pici->lpVerb)) { case IDM_LARGE_ICONS: - { + { m_iconFlag = false; HIMAGELIST* piml = (HIMAGELIST*) SendMessage(m_hWnd, TB_GETIMAGELIST, 0, 0); @@ -582,7 +582,7 @@ HRESULT CISFBand::CreateSimpleToolbar(HWND hWndParent) break; } case IDM_SMALL_ICONS: - { + { m_iconFlag = true; HIMAGELIST* piml = (HIMAGELIST*)SendMessage(m_hWnd, TB_GETIMAGELIST, 0, 0); @@ -611,17 +611,17 @@ HRESULT CISFBand::CreateSimpleToolbar(HWND hWndParent) break; } case IDM_SHOW_TEXT: - { + { if (m_textFlag) - { + { m_textFlag = false; - SendMessage(m_hWnd, TB_SETEXTENDEDSTYLE, 0, TBSTYLE_EX_MIXEDBUTTONS); + SendMessage(m_hWnd, TB_SETEXTENDEDSTYLE, 0, TBSTYLE_EX_MIXEDBUTTONS); HRESULT hr = IUnknown_Exec(m_Site, IID_IDeskBand, DBID_BANDINFOCHANGED, 0, NULL, NULL); if (FAILED_UNEXPECTEDLY(hr)) return hr; } else - { - m_textFlag = true; + { + m_textFlag = true; SendMessage(m_hWnd, TB_SETEXTENDEDSTYLE, 0, 0); HRESULT hr = IUnknown_Exec(m_Site, IID_IDeskBand, DBID_BANDINFOCHANGED, 0, NULL, NULL); if (FAILED_UNEXPECTEDLY(hr)) return hr; @@ -637,12 +637,12 @@ HRESULT CISFBand::CreateSimpleToolbar(HWND hWndParent) } STDMETHODIMP CISFBand::QueryContextMenu(HMENU hmenu, UINT indexMenu, UINT idCmdFirst, UINT idCmdLast, UINT uFlags) - { + { HMENU qMenu = LoadMenu(GetModuleHandleW(L"browseui.dll"), MAKEINTRESOURCE(IDM_POPUPMENU)); - if(m_textFlag) + if(m_textFlag) CheckMenuItem(qMenu, IDM_SHOW_TEXT, MF_CHECKED); - else + else CheckMenuItem(qMenu, IDM_SHOW_TEXT, MF_UNCHECKED); if (m_iconFlag) @@ -661,7 +661,7 @@ HRESULT CISFBand::CreateSimpleToolbar(HWND hWndParent) UINT idMax = Shell_MergeMenus(hmenu, GetSubMenu(qMenu, 0), indexMenu, idCmdFirst, idCmdLast, MM_SUBMENUSHAVEIDS); DestroyMenu(qMenu); - return MAKE_HRESULT(SEVERITY_SUCCESS, 0, USHORT(idMax - idCmdFirst +1)); + return MAKE_HRESULT(SEVERITY_SUCCESS, 0, USHORT(idMax - idCmdFirst +1)); } /*****************************************************************************/ diff --git a/dll/win32/browseui/shellbars/CISFBand.h b/dll/win32/browseui/shellbars/CISFBand.h index 73882c3d85f..88526adfc4b 100644 --- a/dll/win32/browseui/shellbars/CISFBand.h +++ b/dll/win32/browseui/shellbars/CISFBand.h @@ -13,7 +13,7 @@ class CISFBand : public CComCoClass, public CComObjectRootEx, public IObjectWithSite, - public IDeskBand, + public IDeskBand, public IPersistStream, public IWinEventHandler, public IOleCommandTarget, @@ -24,15 +24,15 @@ class CISFBand : DWORD m_BandID; CComPtr m_Site; - // Toolbar - CComPtr m_pISF; + // Toolbar + CComPtr m_pISF; PIDLIST_ABSOLUTE m_pidl; - // Menu + // Menu BOOL m_textFlag; BOOL m_iconFlag; BOOL m_QLaunch; - + public: CISFBand(); @@ -40,7 +40,7 @@ public: // Personal Methods HRESULT CreateSimpleToolbar(HWND hWndParent); - + // IObjectWithSite virtual STDMETHODIMP GetSite( @@ -51,30 +51,30 @@ public: virtual STDMETHODIMP SetSite( IN IUnknown *pUnkSite ); - + // IDeskBand virtual STDMETHODIMP GetWindow( OUT HWND *phwnd - ); + ); virtual STDMETHODIMP ContextSensitiveHelp( IN BOOL fEnterMode - ); + ); virtual STDMETHODIMP ShowDW( IN BOOL bShow - ); + ); virtual STDMETHODIMP CloseDW( IN DWORD dwReserved - ); + ); virtual STDMETHODIMP ResizeBorderDW( LPCRECT prcBorder, IUnknown *punkToolbarSite, BOOL fReserved - ); + ); virtual STDMETHODIMP GetBandInfo( IN DWORD dwBandID, @@ -103,17 +103,17 @@ public: IN BOOL fClearDirty ); -// IWinEventHandler +// IWinEventHandler virtual STDMETHODIMP ContainsWindow( IN HWND hWnd ); virtual STDMETHODIMP OnWinEvent( - HWND hWnd, - UINT uMsg, - WPARAM wParam, - LPARAM lParam, + HWND hWnd, + UINT uMsg, + WPARAM wParam, + LPARAM lParam, LRESULT *theResult ); @@ -139,7 +139,7 @@ public: ); // IShellFolderBand - virtual STDMETHODIMP GetBandInfoSFB( + virtual STDMETHODIMP GetBandInfoSFB( PBANDINFOSFB pbi ); @@ -172,8 +172,8 @@ public: UINT idCmdLast, UINT uFlags ); - -//***************************************************************************************************** + +//***************************************************************************************************** DECLARE_REGISTRY_RESOURCEID(IDR_ISFBAND) DECLARE_NOT_AGGREGATABLE(CISFBand) @@ -190,7 +190,7 @@ public: COM_INTERFACE_ENTRY_IID(IID_IOleCommandTarget, IOleCommandTarget) COM_INTERFACE_ENTRY_IID(IID_IShellFolderBand, IShellFolderBand) COM_INTERFACE_ENTRY_IID(IID_IContextMenu, IContextMenu) - END_COM_MAP() + END_COM_MAP() }; extern "C" HRESULT WINAPI RSHELL_CISFBand_CreateInstance(REFIID riid, void** ppv); diff --git a/dll/win32/browseui/shellbrowser.cpp b/dll/win32/browseui/shellbrowser.cpp index c559c2ed5fb..2704f2bdfca 100644 --- a/dll/win32/browseui/shellbrowser.cpp +++ b/dll/win32/browseui/shellbrowser.cpp @@ -1118,11 +1118,11 @@ HRESULT CShellBrowser::GetBaseBar(bool vertical, REFIID riid, void **theBaseBar) hResult = CBaseBarSite_CreateInstance(IID_PPV_ARG(IUnknown, &newBaseBarSite), vertical); if (FAILED_UNEXPECTEDLY(hResult)) return hResult; - + // we have to store our basebar into cache now *cache = newBaseBar; newBaseBar->AddRef(); - + // tell the new base bar about the shell browser hResult = IUnknown_SetSite(newBaseBar, static_cast(this)); if (FAILED_UNEXPECTEDLY(hResult)) @@ -1210,7 +1210,7 @@ HRESULT CShellBrowser::ShowBand(const CLSID &classID, bool vertical) hResult = GetBaseBar(vertical, IID_PPV_ARG(IDeskBar, &deskBar)); if (FAILED_UNEXPECTEDLY(hResult)) return hResult; - + hResult = deskBar->GetClient(&baseBarSite); if (FAILED_UNEXPECTEDLY(hResult)) return hResult; @@ -1218,7 +1218,7 @@ HRESULT CShellBrowser::ShowBand(const CLSID &classID, bool vertical) hResult = deskBar->QueryInterface(IID_PPV_ARG(IDockingWindow, &dockingWindow)); if (FAILED_UNEXPECTEDLY(hResult)) return hResult; - + if (!IsBandLoaded(classID, vertical, &dwBandID)) { TRACE("ShowBand called for CLSID %s, vertical=%d...\n", wine_dbgstr_guid(&classID), vertical); @@ -1753,7 +1753,7 @@ HRESULT CShellBrowser::BuildExplorerBandMenu() if (!nbFound) { // Remove separator - DeleteMenu(hBandsMenu, IDM_EXPLORERBAR_SEPARATOR, MF_BYCOMMAND); + DeleteMenu(hBandsMenu, IDM_EXPLORERBAR_SEPARATOR, MF_BYCOMMAND); } // Remove media menu since XP does it (according to API Monitor) DeleteMenu(hBandsMenu, IDM_EXPLORERBAR_MEDIA, MF_BYCOMMAND); @@ -3428,14 +3428,14 @@ LRESULT CShellBrowser::OnDestroy(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL & CComPtr bar; CComPtr pBarSite; CComPtr pClient; - + if (fClientBars[i].clientBar == NULL) continue; hr = fClientBars[i].clientBar->QueryInterface(IID_PPV_ARG(IDockingWindow, &pdw)); if (FAILED_UNEXPECTEDLY(hr)) continue; - + /* We should destroy our basebarsite too */ hr = pdw->QueryInterface(IID_PPV_ARG(IDeskBar, &bar)); if (SUCCEEDED(hr)) diff --git a/dll/win32/browseui/shellfind/CFindFolder.cpp b/dll/win32/browseui/shellfind/CFindFolder.cpp index 3517cc2e2ef..63ff66247c4 100644 --- a/dll/win32/browseui/shellfind/CFindFolder.cpp +++ b/dll/win32/browseui/shellfind/CFindFolder.cpp @@ -252,7 +252,7 @@ IsDataUnicode( IS_TEXT_UNICODE_REVERSE_MASK | IS_TEXT_UNICODE_UNICODE_MASK) & ~IS_TEXT_UNKNOWN_FLAGS_MASK; INT Results; - + IsTextUnicode(Buffer, BufferSize, &Tests); Results = Tests; diff --git a/dll/win32/browseui/toolsband.cpp b/dll/win32/browseui/toolsband.cpp index d0eb76a0dc7..cf167422420 100644 --- a/dll/win32/browseui/toolsband.cpp +++ b/dll/win32/browseui/toolsband.cpp @@ -289,11 +289,11 @@ HRESULT STDMETHODCALLTYPE CToolsBand::SetSite(IUnknown* pUnkSite){ SendMessage(TB_SETMAXTEXTROWS, 1, 0); SendMessage(TB_SETEXTENDEDSTYLE, 0, TBSTYLE_EX_HIDECLIPPEDBUTTONS | TBSTYLE_EX_MIXEDBUTTONS | TBSTYLE_EX_DRAWDDARROWS); - m_himlNormal = ImageList_LoadImageW(_AtlBaseModule.GetResourceInstance(), + m_himlNormal = ImageList_LoadImageW(_AtlBaseModule.GetResourceInstance(), MAKEINTRESOURCEW(IDB_SHELL_EXPLORER_LG), 0, 0, RGB(255, 0, 255), IMAGE_BITMAP, LR_DEFAULTSIZE | LR_CREATEDIBSECTION); - m_himlHot = ImageList_LoadImageW(_AtlBaseModule.GetResourceInstance(), + m_himlHot = ImageList_LoadImageW(_AtlBaseModule.GetResourceInstance(), MAKEINTRESOURCEW(IDB_SHELL_EXPLORER_LG_HOT), 0, 0, RGB(255, 0, 255), IMAGE_BITMAP, LR_DEFAULTSIZE | LR_CREATEDIBSECTION); @@ -338,7 +338,7 @@ HRESULT STDMETHODCALLTYPE CToolsBand::CloseDW(DWORD dwReserved) if (m_himlNormal) ImageList_Destroy(m_himlNormal); - + if (m_himlHot) ImageList_Destroy(m_himlHot); diff --git a/dll/win32/browseui/travellog.cpp b/dll/win32/browseui/travellog.cpp index cb14139f4f5..be27ae8ee6a 100644 --- a/dll/win32/browseui/travellog.cpp +++ b/dll/win32/browseui/travellog.cpp @@ -279,7 +279,7 @@ HRESULT CTravelLog::FindRelativeEntry(int _offset, CTravelEntry **foundEntry) } if (curEntry == NULL) return E_INVALIDARG; - + *foundEntry = curEntry; TRACE("CTravelLog::FindRelativeEntry for offset %d, returning %p\n", offset, *foundEntry); @@ -398,7 +398,7 @@ HRESULT STDMETHODCALLTYPE CTravelLog::GetTravelEntry(IUnknown *punk, int iOffset { CTravelEntry *destinationEntry; HRESULT hResult; - + hResult = FindRelativeEntry(iOffset, &destinationEntry); if (FAILED(hResult)) return hResult; diff --git a/dll/win32/cards/COPYING b/dll/win32/cards/COPYING index 228093ffbc7..45ea5433d7f 100644 --- a/dll/win32/cards/COPYING +++ b/dll/win32/cards/COPYING @@ -16,16 +16,16 @@ French back sides: Background_1: Our own logo. Background_2: Based on a French Tournament illustration. -Background_3: -Background_4: -Background_5: +Background_3: +Background_4: +Background_5: Background_6: Illustration by DesignDevil. Source see above. -Background_7: -Background_8: -Background_9: +Background_7: +Background_8: +Background_9: Background_10: Based on one of the more common french Romme card game backgrounds. -Background_11: -Background_12: +Background_11: +Background_12: ------------------------------------------------------------------------------- @@ -48,4 +48,4 @@ Ruecken8: Based on the historical "Gaigel Binokel Bild" mainly found in Bavaria. Ruecken9: Typical diamond pattern found on many old and new Skat and "Kurze Scharfe" cards. Ruecken10: Typical diamond pattern found on many old and new Skat and "Kurze Scharfe" cards. Ruecken11: Based on one of the more common french Skat card game backgrounds. -Ruecken12: Based on the historical "Schafkopf Bild" mainly found in Bavaria. \ No newline at end of file +Ruecken12: Based on the historical "Schafkopf Bild" mainly found in Bavaria. diff --git a/dll/win32/dbghelp/rosstubs.c b/dll/win32/dbghelp/rosstubs.c index 7ac6026aea3..ee3bd0cb9e5 100644 --- a/dll/win32/dbghelp/rosstubs.c +++ b/dll/win32/dbghelp/rosstubs.c @@ -164,9 +164,9 @@ SymEnumSymbolsForAddrW(HANDLE hProcess, } BOOL WINAPI -SymEnumerateSymbolsW64(HANDLE hProcess, - DWORD64 ModBase, - PSYM_ENUMSYMBOLS_CALLBACK64W Callback, +SymEnumerateSymbolsW64(HANDLE hProcess, + DWORD64 ModBase, + PSYM_ENUMSYMBOLS_CALLBACK64W Callback, PVOID pUserContext) { UNIMPLEMENTED; diff --git a/dll/win32/devmgr/api.cpp b/dll/win32/devmgr/api.cpp index 679e6b43b08..fa331474ae0 100644 --- a/dll/win32/devmgr/api.cpp +++ b/dll/win32/devmgr/api.cpp @@ -6,7 +6,7 @@ * PURPOSE: devmgr.dll interface * PROGRAMMER: Thomas Weidenmueller (w3seek@users.sourceforge.net) * Ged Murphy (gedmurphy@reactos.org) -* NOTES: +* NOTES: * Some helpful resources: * http://support.microsoft.com/default.aspx?scid=kb;%5BLN%5D;815320 * http://www.jsiinc.com/SUBO/tip7400/rh7482.htm diff --git a/dll/win32/devmgr/devmgmt/ClassNode.cpp b/dll/win32/devmgr/devmgmt/ClassNode.cpp index 17cb7edaae0..04ff192075f 100644 --- a/dll/win32/devmgr/devmgmt/ClassNode.cpp +++ b/dll/win32/devmgr/devmgmt/ClassNode.cpp @@ -2,7 +2,7 @@ * PROJECT: ReactOS Device Manager * LICENSE: GPL - See COPYING in the top level directory * FILE: dll/win32/devmgr/devmgmt/ClassNode.cpp -* PURPOSE: Class object for +* PURPOSE: Class object for * COPYRIGHT: Copyright 2015 Ged Murphy * */ diff --git a/dll/win32/devmgr/devmgmt/DeviceNode.cpp b/dll/win32/devmgr/devmgmt/DeviceNode.cpp index 905fc61e759..bcafd87c986 100644 --- a/dll/win32/devmgr/devmgmt/DeviceNode.cpp +++ b/dll/win32/devmgr/devmgmt/DeviceNode.cpp @@ -374,7 +374,7 @@ CDeviceNode::UninstallDevice() RemoveDevParams.HwProfile = 0; // - // We probably need to walk all the siblings of this + // We probably need to walk all the siblings of this // device and ask if they're happy with the uninstall // diff --git a/dll/win32/devmgr/devmgmt/DeviceNode.h b/dll/win32/devmgr/devmgmt/DeviceNode.h index 443b88ce726..55e8646fe9f 100644 --- a/dll/win32/devmgr/devmgmt/DeviceNode.h +++ b/dll/win32/devmgr/devmgmt/DeviceNode.h @@ -14,7 +14,7 @@ private: SP_DEVINFO_DATA m_DevinfoData; DEVINST m_DevInst; HDEVINFO m_hDevInfo; - + ULONG m_Status; ULONG m_ProblemNumber; int m_OverlayImage; diff --git a/dll/win32/devmgr/devmgmt/DeviceView.cpp b/dll/win32/devmgr/devmgmt/DeviceView.cpp index a0906e1657a..0f8bebe05e5 100644 --- a/dll/win32/devmgr/devmgmt/DeviceView.cpp +++ b/dll/win32/devmgr/devmgmt/DeviceView.cpp @@ -554,10 +554,10 @@ CDeviceView::ListDevicesByType() bool CDeviceView::ListDevicesByConnection() { - // Walk the device tree and add all the devices + // Walk the device tree and add all the devices (void)RecurseChildDevices(m_RootNode->GetDeviceInst(), m_hTreeRoot); - // Expand the root item + // Expand the root item (void)TreeView_Expand(m_hTreeView, m_hTreeRoot, TVE_EXPAND); @@ -576,7 +576,7 @@ CDeviceView::RecurseChildDevices( bool HasProblem = false; bool bSuccess; - // Check if the parent has any child devices + // Check if the parent has any child devices if (GetChildDevice(ParentDevice, &Device) == FALSE) return true; @@ -591,12 +591,12 @@ CDeviceView::RecurseChildDevices( // Don't show hidden devices if not requested if ((m_ShowHidden == TRUE) || (!(DeviceNode->IsHidden()))) { - // Add this device to the tree under its parent + // Add this device to the tree under its parent hDevItem = InsertIntoTreeView(hParentTreeItem, DeviceNode); if (hDevItem) { - // Check if this child has any children itself + // Check if this child has any children itself if (!RecurseChildDevices(Device, hDevItem)) HasProblem = true; } @@ -611,7 +611,7 @@ CDeviceView::RecurseChildDevices( // Check for siblings for (;;) { - // Check if the parent device has anything at the same level + // Check if the parent device has anything at the same level bSuccess = GetSiblingDevice(Device, &Device); if (bSuccess == FALSE) break; @@ -630,12 +630,12 @@ CDeviceView::RecurseChildDevices( HasProblem = true; } - // Add this device to the tree under its parent + // Add this device to the tree under its parent hDevItem = InsertIntoTreeView(hParentTreeItem, DeviceNode); if (hDevItem) { - // Check if this child has any children itself + // Check if this child has any children itself if (!RecurseChildDevices(Device, hDevItem)) HasProblem = true; } @@ -824,12 +824,12 @@ CDeviceView::BuildActionMenuForNode( _In_ bool MainMenu ) { - // Create a separator structure + // Create a separator structure MENUITEMINFOW MenuSeparator = { 0 }; MenuSeparator.cbSize = sizeof(MENUITEMINFOW); MenuSeparator.fType = MFT_SEPARATOR; - // Setup the + // Setup the MENUITEMINFOW MenuItemInfo = { 0 }; MenuItemInfo.cbSize = sizeof(MENUITEMINFOW); MenuItemInfo.fMask = MIIM_ID | MIIM_STRING | MIIM_DATA | MIIM_SUBMENU; @@ -982,7 +982,7 @@ CDeviceView::RecurseFindDevice( } } - // This node may have its own children + // This node may have its own children FoundItem = RecurseFindDevice(hItem, Node); if (FoundItem) return FoundItem; diff --git a/dll/win32/devmgr/devmgmt/MainWindow.cpp b/dll/win32/devmgr/devmgmt/MainWindow.cpp index 697a176c2b2..a687d7d9788 100644 --- a/dll/win32/devmgr/devmgmt/MainWindow.cpp +++ b/dll/win32/devmgr/devmgmt/MainWindow.cpp @@ -36,7 +36,7 @@ static const MENU_HINT MainMenuHintTable[] = { IDM_SCAN_HARDWARE, IDS_HINT_SCAN }, { IDM_ENABLE_DRV, IDS_HINT_ENABLE }, { IDM_DISABLE_DRV, IDS_HINT_DISABLE }, - { IDM_UPDATE_DRV, IDS_HINT_UPDATE }, + { IDM_UPDATE_DRV, IDS_HINT_UPDATE }, { IDM_UNINSTALL_DRV, IDS_HINT_UNINSTALL }, { IDM_ADD_HARDWARE, IDS_HINT_ADD }, @@ -175,14 +175,14 @@ CDeviceManager::Initialize(_In_z_ LPCTSTR lpCaption, this); } - // Return creation result + // Return creation result return !!(m_hMainWnd); } void CDeviceManager::Uninitialize(void) { - // Unregister the window class + // Unregister the window class UnregisterClassW(m_szMainWndClass, g_hThisInstance); } @@ -191,7 +191,7 @@ CDeviceManager::Run(void) { MSG Msg; - // Pump the message queue + // Pump the message queue while (GetMessageW(&Msg, NULL, 0, 0 ) != 0) { TranslateMessage(&Msg); diff --git a/dll/win32/devmgr/devmgmt/RootNode.cpp b/dll/win32/devmgr/devmgmt/RootNode.cpp index 841001f0985..0b9f6a51839 100644 --- a/dll/win32/devmgr/devmgmt/RootNode.cpp +++ b/dll/win32/devmgr/devmgmt/RootNode.cpp @@ -41,7 +41,7 @@ CRootNode::SetupNode() DeleteObject(hRootImage); - // Get the root instance + // Get the root instance CONFIGRET cr; cr = CM_Locate_DevNodeW(&m_DevInst, NULL, @@ -51,7 +51,7 @@ CRootNode::SetupNode() return false; } - // The root name is the computer name + // The root name is the computer name DWORD Size = _countof(m_DisplayName); GetComputerNameW(m_DisplayName, &Size); diff --git a/dll/win32/devmgr/properties/hwpage.cpp b/dll/win32/devmgr/properties/hwpage.cpp index b313c62e725..8fb4161c910 100644 --- a/dll/win32/devmgr/properties/hwpage.cpp +++ b/dll/win32/devmgr/properties/hwpage.cpp @@ -963,7 +963,7 @@ HardwareDlgProc(IN HWND hwndDlg, { /* zero hpd pointer in window data, because it can be used later (WM_DESTROY has not to be last message) */ SetWindowLongPtr(hwndDlg, DWLP_USER, (DWORD_PTR)NULL); - + /* free devices list */ FreeDevicesList(hpd); diff --git a/dll/win32/fltlib/fltlib.c b/dll/win32/fltlib/fltlib.c index f39a1067811..2111d32fbeb 100644 --- a/dll/win32/fltlib/fltlib.c +++ b/dll/win32/fltlib/fltlib.c @@ -2,7 +2,7 @@ * PROJECT: Filesystem Filter Manager library * LICENSE: GPL - See COPYING in the top level directory * FILE: dll/win32/fltlib/fltlib.c -* PURPOSE: +* PURPOSE: * PROGRAMMERS: Ged Murphy (ged.murphy@reactos.org) */ diff --git a/dll/win32/fltlib/stubs.c b/dll/win32/fltlib/stubs.c index 569c9ed74c1..dec0d7f9c58 100644 --- a/dll/win32/fltlib/stubs.c +++ b/dll/win32/fltlib/stubs.c @@ -2,7 +2,7 @@ * PROJECT: Filesystem Filter Manager library * LICENSE: GPL - See COPYING in the top level directory * FILE: dll/win32/fltlib/stubs.c -* PURPOSE: +* PURPOSE: * PROGRAMMERS: Ged Murphy (ged.murphy@reactos.org) */ diff --git a/dll/win32/getuname/getuname.c b/dll/win32/getuname/getuname.c index b1f670c4425..e1aee235529 100644 --- a/dll/win32/getuname/getuname.c +++ b/dll/win32/getuname/getuname.c @@ -25,7 +25,7 @@ GetUName(IN WORD wCharCode, return 0; } else - { + { wcscpy(lpBuf, L"Undefined"); return 0; } diff --git a/dll/win32/inetmib1/CMakeLists.txt b/dll/win32/inetmib1/CMakeLists.txt index 85bbeea6d88..dd1cc379bdb 100644 --- a/dll/win32/inetmib1/CMakeLists.txt +++ b/dll/win32/inetmib1/CMakeLists.txt @@ -4,7 +4,7 @@ include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine) spec2def(inetmib1.dll inetmib1.spec) list(APPEND SOURCE - main.c + main.c ${CMAKE_CURRENT_BINARY_DIR}/inetmib1_stubs.c ${CMAKE_CURRENT_BINARY_DIR}/inetmib1.def) diff --git a/dll/win32/iphlpapi/address.c b/dll/win32/iphlpapi/address.c index 2c124195fbd..fb40963c7d4 100644 --- a/dll/win32/iphlpapi/address.c +++ b/dll/win32/iphlpapi/address.c @@ -488,9 +488,9 @@ GetAdaptersAddresses( CurrentAA->IfType = Entry->if_type; if(Entry->if_operstatus >= IF_OPER_STATUS_CONNECTING) CurrentAA->OperStatus = IfOperStatusUp; - else + else CurrentAA->OperStatus = IfOperStatusDown; - + /* Next items */ Ptr = (BYTE*)(CurrentAA + 1); diff --git a/dll/win32/iphlpapi/ipstats_reactos.c b/dll/win32/iphlpapi/ipstats_reactos.c index 6bf3df63e9a..a1214926a72 100644 --- a/dll/win32/iphlpapi/ipstats_reactos.c +++ b/dll/win32/iphlpapi/ipstats_reactos.c @@ -440,7 +440,7 @@ RouteTable *getRouteTable(void) getNthIpEntity( tcpFile, i, &ent ); tdiGetRoutesForIpEntity( tcpFile, &ent, &route_set, &numRoutes ); - + if( !route_set ) { closeTcpFile( tcpFile ); HeapFree( GetProcessHeap(), 0, out_route_table ); diff --git a/dll/win32/iphlpapi/registry.c b/dll/win32/iphlpapi/registry.c index 57af182db6f..bb6c142d4b4 100644 --- a/dll/win32/iphlpapi/registry.c +++ b/dll/win32/iphlpapi/registry.c @@ -84,7 +84,7 @@ PVOID QueryRegistryValue(HANDLE RegHandle, PWCHAR ValueName, LPDWORD RegistryTyp HeapFree(GetProcessHeap(), 0, ReadValue); } else break; - + ReadValue = HeapAlloc(GetProcessHeap(), 0, *Length); if (!ReadValue) return NULL; } @@ -104,7 +104,7 @@ PVOID QueryRegistryValue(HANDLE RegHandle, PWCHAR ValueName, LPDWORD RegistryTyp PWCHAR TerminateReadString(PWCHAR String, DWORD Length) { PWCHAR TerminatedString; - + TerminatedString = HeapAlloc(GetProcessHeap(), 0, Length + sizeof(WCHAR)); if (TerminatedString == NULL) return NULL; @@ -112,7 +112,7 @@ PWCHAR TerminateReadString(PWCHAR String, DWORD Length) memcpy(TerminatedString, String, Length); TerminatedString[Length / sizeof(WCHAR)] = UNICODE_NULL; - + return TerminatedString; } @@ -120,7 +120,7 @@ PWCHAR QueryRegistryValueString( HANDLE RegHandle, PWCHAR ValueName ) { PWCHAR String, TerminatedString; DWORD Type, Length; - + String = QueryRegistryValue(RegHandle, ValueName, &Type, &Length); if (!String) return NULL; if (Type != REG_SZ) @@ -129,11 +129,11 @@ PWCHAR QueryRegistryValueString( HANDLE RegHandle, PWCHAR ValueName ) //HeapFree(GetProcessHeap(), 0, String); //return NULL; } - + TerminatedString = TerminateReadString(String, Length); HeapFree(GetProcessHeap(), 0, String); if (!TerminatedString) return NULL; - + return TerminatedString; } @@ -145,7 +145,7 @@ PWCHAR *QueryRegistryValueStringMulti( HANDLE RegHandle, PWCHAR ValueName ) { PWCHAR String, TerminatedString, Tmp; PWCHAR *Table; DWORD Type, Length, i, j; - + String = QueryRegistryValue(RegHandle, ValueName, &Type, &Length); if (!String) return NULL; if (Type != REG_MULTI_SZ) @@ -154,33 +154,33 @@ PWCHAR *QueryRegistryValueStringMulti( HANDLE RegHandle, PWCHAR ValueName ) { //HeapFree(GetProcessHeap(), 0, String); //return NULL; } - + TerminatedString = TerminateReadString(String, Length); HeapFree(GetProcessHeap(), 0, String); if (!TerminatedString) return NULL; for (Tmp = TerminatedString, i = 0; *Tmp; Tmp++, i++) while (*Tmp) Tmp++; - + Table = HeapAlloc(GetProcessHeap(), 0, (i + 1) * sizeof(PWCHAR)); if (!Table) { HeapFree(GetProcessHeap(), 0, TerminatedString); return NULL; } - + for (Tmp = TerminatedString, j = 0; *Tmp; Tmp++, j++) { PWCHAR Orig = Tmp; - + for (i = 0; *Tmp; i++, Tmp++); - + Table[j] = HeapAlloc(GetProcessHeap(), 0, i * sizeof(WCHAR)); memcpy(Table[j], Orig, i * sizeof(WCHAR)); } - + Table[j] = NULL; - + HeapFree(GetProcessHeap(), 0, TerminatedString); - + return Table; } diff --git a/dll/win32/iphlpapi/resinfo_reactos.c b/dll/win32/iphlpapi/resinfo_reactos.c index 0969214008a..de1bbbdbb5f 100644 --- a/dll/win32/iphlpapi/resinfo_reactos.c +++ b/dll/win32/iphlpapi/resinfo_reactos.c @@ -376,7 +376,7 @@ getResInfo() return ResInfo; } -VOID disposeResInfo( PIPHLP_RES_INFO InfoPtr ) +VOID disposeResInfo( PIPHLP_RES_INFO InfoPtr ) { HeapFree(GetProcessHeap(), 0, InfoPtr->DnsList); RtlFreeHeap( GetProcessHeap(), 0, InfoPtr ); diff --git a/dll/win32/kernel32/client/console/console.c b/dll/win32/kernel32/client/console/console.c index 1e79b34e763..5c687dfde1d 100644 --- a/dll/win32/kernel32/client/console/console.c +++ b/dll/win32/kernel32/client/console/console.c @@ -2042,26 +2042,26 @@ AddConsoleCtrlHandler(PHANDLER_ROUTINE HandlerRoutine) NtCurrentPeb()->ProcessParameters->ConsoleFlags = TRUE; return TRUE; } - + if (NrCtrlHandlers == NrAllocatedHandlers) { NewCtrlHandlers = RtlAllocateHeap(RtlGetProcessHeap(), 0, (NrCtrlHandlers + 4) * sizeof(PHANDLER_ROUTINE)); - if (NewCtrlHandlers == NULL) + if (NewCtrlHandlers == NULL) { SetLastError(ERROR_NOT_ENOUGH_MEMORY); return FALSE; } - + memmove(NewCtrlHandlers, CtrlHandlers, sizeof(PHANDLER_ROUTINE) * NrCtrlHandlers); - + if (NrAllocatedHandlers > 1) RtlFreeHeap(RtlGetProcessHeap(), 0, CtrlHandlers); - + CtrlHandlers = NewCtrlHandlers; NrAllocatedHandlers += 4; } - + ASSERT(NrCtrlHandlers < NrAllocatedHandlers); CtrlHandlers[NrCtrlHandlers++] = HandlerRoutine; diff --git a/dll/win32/kernel32/client/debugger.c b/dll/win32/kernel32/client/debugger.c index 9f84848a204..04d159c5068 100644 --- a/dll/win32/kernel32/client/debugger.c +++ b/dll/win32/kernel32/client/debugger.c @@ -496,7 +496,7 @@ DebugActiveProcess(IN DWORD dwProcessId) /* Now debug the process */ Status = DbgUiDebugActiveProcess(Handle); - + /* Close the handle since we're done */ Status1 = NtClose(Handle); ASSERT(NT_SUCCESS(Status1)); @@ -702,7 +702,7 @@ WaitForDebugEvent(IN LPDEBUG_EVENT lpDebugEvent, /* Mark the thread data */ MarkThreadHandle(lpDebugEvent->dwThreadId); break; - + /* Nothing to do */ case EXCEPTION_DEBUG_EVENT: case LOAD_DLL_DEBUG_EVENT: diff --git a/dll/win32/kernel32/client/dllmain.c b/dll/win32/kernel32/client/dllmain.c index 4e94781be49..a6720cd78a8 100644 --- a/dll/win32/kernel32/client/dllmain.c +++ b/dll/win32/kernel32/client/dllmain.c @@ -106,7 +106,7 @@ DllMain(HANDLE hDll, { /* Set no filter initially */ GlobalTopLevelExceptionFilter = RtlEncodePointer(NULL); - + /* Enable the Rtl thread pool and timer queue to use proper Win32 thread */ RtlSetThreadPoolStartFunc(BaseCreateThreadPoolThread, BaseExitThreadPoolThread); diff --git a/dll/win32/kernel32/client/file/cnotify.c b/dll/win32/kernel32/client/file/cnotify.c index a03a0b52954..aa8969fb005 100644 --- a/dll/win32/kernel32/client/file/cnotify.c +++ b/dll/win32/kernel32/client/file/cnotify.c @@ -291,7 +291,7 @@ ReadDirectoryChangesW(IN HANDLE hDirectory, BaseSetLastNTError(Status); return FALSE; } - + /* Retrieve the final status code */ Status = IoStatusBlock.Status; } diff --git a/dll/win32/kernel32/client/file/create.c b/dll/win32/kernel32/client/file/create.c index cbb6583076f..ec6411e4ec2 100644 --- a/dll/win32/kernel32/client/file/create.c +++ b/dll/win32/kernel32/client/file/create.c @@ -191,7 +191,7 @@ HANDLE WINAPI CreateFileW (LPCWSTR lpFileName, } TRACE("NtPathU \'%wZ\'\n", &NtPathU); - + TrailingBackslash = FALSE; if (NtPathU.Length >= sizeof(WCHAR) && NtPathU.Buffer[NtPathU.Length / sizeof(WCHAR) - 1]) diff --git a/dll/win32/kernel32/client/file/deviceio.c b/dll/win32/kernel32/client/file/deviceio.c index c35ace86613..bfcf575618d 100644 --- a/dll/win32/kernel32/client/file/deviceio.c +++ b/dll/win32/kernel32/client/file/deviceio.c @@ -54,7 +54,7 @@ Beep(IN DWORD dwFreq, IO_STATUS_BLOCK IoStatusBlock; BEEP_SET_PARAMETERS BeepSetParameters; NTSTATUS Status; - + // // On TS systems, we need to Load Winsta.dll and call WinstationBeepOpen // after doing a GetProcAddress for it diff --git a/dll/win32/kernel32/client/file/dir.c b/dll/win32/kernel32/client/file/dir.c index 433e6d59664..16b604deed6 100644 --- a/dll/win32/kernel32/client/file/dir.c +++ b/dll/win32/kernel32/client/file/dir.c @@ -209,7 +209,7 @@ CreateDirectoryExW(IN LPCWSTR lpTemplateDirectory, FILE_ATTRIBUTE_TAG_INFORMATION FileTagInfo; UNICODE_STRING NtPathU, NtTemplatePathU, NewDirectory; RTL_RELATIVE_NAME_U RelativeName, TemplateRelativeName; - PWSTR TemplateBuffer, PathUBuffer, FilePart, SubstituteName; + PWSTR TemplateBuffer, PathUBuffer, FilePart, SubstituteName; /* Get relative name of the template */ if (!RtlDosPathNameToRelativeNtPathName_U(lpTemplateDirectory, &NtTemplatePathU, NULL, &TemplateRelativeName)) @@ -423,7 +423,7 @@ OpenWithoutReparseSupport: CloseHandle(TemplateHandle); BaseSetLastNTError(Status); return FALSE; - } + } /* Start reading extended attributes */ if (FileEaInfo.EaSize != 0) diff --git a/dll/win32/kernel32/client/file/filename.c b/dll/win32/kernel32/client/file/filename.c index 7077ce9e2d6..7365ac148bb 100644 --- a/dll/win32/kernel32/client/file/filename.c +++ b/dll/win32/kernel32/client/file/filename.c @@ -62,7 +62,7 @@ GetTempFileNameA(IN LPCSTR lpPathName, RtlInitUnicodeString(&TempFileNameStringW, lpTempFileNameW); TempFileNameStringA.Buffer = lpTempFileName; TempFileNameStringA.MaximumLength = MAX_PATH; - + Status = BasepUnicodeStringTo8BitString(&TempFileNameStringA, &TempFileNameStringW, FALSE); if (!NT_SUCCESS(Status)) { @@ -76,7 +76,7 @@ GetTempFileNameA(IN LPCSTR lpPathName, RtlFreeHeap(RtlGetProcessHeap(), 0, lpTempFileNameW); return ID; } - + /*********************************************************************** * GetTempFileNameW (KERNEL32.@) */ @@ -111,7 +111,7 @@ GetTempFileNameW(IN LPCWSTR lpPathName, SetLastError(ERROR_BUFFER_OVERFLOW); return 0; } - + /* If PathName and TempFileName aren't the same buffer, move PathName to TempFileName */ if (lpPathName != lpTempFileName) { @@ -138,7 +138,7 @@ GetTempFileNameW(IN LPCWSTR lpPathName, SetLastError(ERROR_DIRECTORY); return 0; } - + /* Make sure not to mix path & prefix */ lpTempFileName[(PathNameString.Length / sizeof(WCHAR)) - 1] = L'\\'; RtlInitUnicodeString(&PrefixString, lpPrefixString); @@ -146,12 +146,12 @@ GetTempFileNameW(IN LPCWSTR lpPathName, { PrefixString.Length = 3 * sizeof(WCHAR); } - + /* Append prefix to path */ TempFileName = lpTempFileName + PathNameString.Length / sizeof(WCHAR); memmove(TempFileName, PrefixString.Buffer, PrefixString.Length); TempFileName += PrefixString.Length / sizeof(WCHAR); - + /* Then, generate filename */ do { @@ -167,14 +167,14 @@ GetTempFileNameW(IN LPCWSTR lpPathName, Num++; continue; } - + ID = GetTempFile->UniqueID; } else { ID = uUnique; } - + /* Convert that ID to wchar */ RtlIntegerToChar(ID, 0x10, sizeof(IDString), (PCHAR)IDString); Let = IDString; @@ -182,7 +182,7 @@ GetTempFileNameW(IN LPCWSTR lpPathName, { *(TempFileName++) = RtlAnsiCharToUnicodeChar(&Let); } while (*Let != 0); - + /* Append extension & UNICODE_NULL */ memmove(TempFileName, Ext, sizeof(Ext)); @@ -223,7 +223,7 @@ GetTempFileNameW(IN LPCWSTR lpPathName, } Num++; } while (Num & 0xFFFF); - + return 0; } diff --git a/dll/win32/kernel32/client/file/mntpoint.c b/dll/win32/kernel32/client/file/mntpoint.c index 9dfabf7b2b6..badb519112f 100644 --- a/dll/win32/kernel32/client/file/mntpoint.c +++ b/dll/win32/kernel32/client/file/mntpoint.c @@ -362,7 +362,7 @@ BasepGetVolumeNameFromReparsePoint(IN LPCWSTR lpszMountPoint, /* Copy the link target */ RtlCopyMemory(lpszVolumeName, - &ReparseBuffer->MountPointReparseBuffer.PathBuffer[ReparseBuffer->MountPointReparseBuffer.SubstituteNameOffset / sizeof(WCHAR)], + &ReparseBuffer->MountPointReparseBuffer.PathBuffer[ReparseBuffer->MountPointReparseBuffer.SubstituteNameOffset / sizeof(WCHAR)], ReparseBuffer->MountPointReparseBuffer.SubstituteNameLength); /* Make it DOS valid */ Old = lpszVolumeName[1]; @@ -452,7 +452,7 @@ BasepGetVolumeNameForVolumeMountPoint(IN LPCWSTR lpszMountPoint, if (!Ret) { /* It was a DOS volume as UNC name, so fail and zero output */ - if (MountPoint.Length == 14 && MountPoint.Buffer[0] == '\\' && MountPoint.Buffer[1] == '\\' && + if (MountPoint.Length == 14 && MountPoint.Buffer[0] == '\\' && MountPoint.Buffer[1] == '\\' && (MountPoint.Buffer[2] == '.' || MountPoint.Buffer[2] == '?') && MountPoint.Buffer[3] == L'\\' && MountPoint.Buffer[5] == ':') { diff --git a/dll/win32/kernel32/client/file/move.c b/dll/win32/kernel32/client/file/move.c index 6ae700e1f84..93827d739ba 100644 --- a/dll/win32/kernel32/client/file/move.c +++ b/dll/win32/kernel32/client/file/move.c @@ -511,7 +511,7 @@ BasepOpenFileForMove(IN LPCWSTR File, _SEH2_TRY { /* Zero output */ - RelativeNtName->Length = + RelativeNtName->Length = RelativeNtName->MaximumLength = 0; RelativeNtName->Buffer = NULL; *NtName = NULL; diff --git a/dll/win32/kernel32/client/file/volume.c b/dll/win32/kernel32/client/file/volume.c index ba0ef82f5dd..8ceb23865c6 100644 --- a/dll/win32/kernel32/client/file/volume.c +++ b/dll/win32/kernel32/client/file/volume.c @@ -1266,7 +1266,7 @@ GetVolumePathNamesForVolumeNameW(IN LPCWSTR lpszVolumeName, TargetName->DeviceNameLength = VolumeName.Length - sizeof(WCHAR); RtlCopyMemory(TargetName->DeviceName, VolumeName.Buffer, TargetName->DeviceNameLength); TargetName->DeviceName[1] = L'?'; - + /* Open the mount manager */ MountMgrHandle = CreateFileW(MOUNTMGR_DOS_DEVICE_NAME, 0, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, @@ -1387,7 +1387,7 @@ GetVolumePathNamesForVolumeNameW(IN LPCWSTR lpszVolumeName, } /* If we couldn't write as much as we wanted to the output buffer - * This handles the case where we could write everything excepted the + * This handles the case where we could write everything excepted the * terminating \0 for multi SZ */ if (CharsInOutput >= cchBufferLength) diff --git a/dll/win32/kernel32/client/i386/thread.S b/dll/win32/kernel32/client/i386/thread.S index 8782d1f5a8b..6057cef370e 100644 --- a/dll/win32/kernel32/client/i386/thread.S +++ b/dll/win32/kernel32/client/i386/thread.S @@ -16,10 +16,10 @@ EXTERN _BaseProcessStartup@4:PROC PUBLIC _BaseThreadStartupThunk@0 _BaseThreadStartupThunk@0: - + /* Start out fresh */ xor ebp, ebp - + push ebx /* lpParameter */ push eax /* lpStartAddress */ push 0 /* Return EIP */ @@ -30,7 +30,7 @@ PUBLIC _BaseProcessStartThunk@0 _BaseProcessStartThunk@0: /* Start out fresh */ xor ebp, ebp - + push eax /* lpStartAddress */ push 0 /* Return EIP */ jmp _BaseProcessStartup@4 diff --git a/dll/win32/kernel32/client/perfcnt.c b/dll/win32/kernel32/client/perfcnt.c index ed7e703b4ed..80e633e577f 100644 --- a/dll/win32/kernel32/client/perfcnt.c +++ b/dll/win32/kernel32/client/perfcnt.c @@ -27,7 +27,7 @@ QueryPerformanceCounter(OUT PLARGE_INTEGER lpPerformanceCount) Status = NtQueryPerformanceCounter(lpPerformanceCount, &Frequency); if (Frequency.QuadPart == 0) Status = STATUS_NOT_IMPLEMENTED; - + if (!NT_SUCCESS(Status)) { BaseSetLastNTError(Status); @@ -49,7 +49,7 @@ QueryPerformanceFrequency(OUT PLARGE_INTEGER lpFrequency) Status = NtQueryPerformanceCounter(&Count, lpFrequency); if (lpFrequency->QuadPart == 0) Status = STATUS_NOT_IMPLEMENTED; - + if (!NT_SUCCESS(Status)) { BaseSetLastNTError(Status); diff --git a/dll/win32/kernel32/client/resntfy.c b/dll/win32/kernel32/client/resntfy.c index 41728b69f27..7ca8f6d5a37 100644 --- a/dll/win32/kernel32/client/resntfy.c +++ b/dll/win32/kernel32/client/resntfy.c @@ -26,13 +26,13 @@ CreateMemoryResourceNotification(IN MEMORY_RESOURCE_NOTIFICATION_TYPE Notificati OBJECT_ATTRIBUTES ObjectAttributes; HANDLE hEvent; NTSTATUS Status; - + if (NotificationType > HighMemoryResourceNotification) { SetLastError(ERROR_INVALID_PARAMETER); return NULL; } - + RtlInitUnicodeString(&EventName, NotificationType ? L"\\KernelObjects\\HighMemoryCondition" : diff --git a/dll/win32/kernel32/client/synch.c b/dll/win32/kernel32/client/synch.c index f7df2f710a2..2c0e9a7f063 100644 --- a/dll/win32/kernel32/client/synch.c +++ b/dll/win32/kernel32/client/synch.c @@ -481,7 +481,7 @@ CreateSemaphoreExA(IN LPSECURITY_ATTRIBUTES lpSemaphoreAttributes OPTIONAL, IN DWORD dwDesiredAccess OPTIONAL) { ConvertAnsiToUnicodePrologue - + if (!lpName) { return CreateSemaphoreExW(lpSemaphoreAttributes, @@ -834,7 +834,7 @@ SleepEx(IN DWORD dwMilliseconds, errCode = NtDelayExecution((BOOLEAN)bAlertable, TimePtr); } while ((bAlertable) && (errCode == STATUS_ALERTED)); - + /* Cleanup the activation context */ if (bAlertable) RtlDeactivateActivationContextUnsafeFast(&ActCtx); diff --git a/dll/win32/kernel32/client/sysinfo.c b/dll/win32/kernel32/client/sysinfo.c index 74151c19eea..3b25a19a1e4 100644 --- a/dll/win32/kernel32/client/sysinfo.c +++ b/dll/win32/kernel32/client/sysinfo.c @@ -150,13 +150,13 @@ GetSystemInfo(IN LPSYSTEM_INFO lpSystemInfo) sizeof(BasicInfo), 0); if (!NT_SUCCESS(Status)) return; - + Status = NtQuerySystemInformation(SystemProcessorInformation, &ProcInfo, sizeof(ProcInfo), 0); if (!NT_SUCCESS(Status)) return; - + GetSystemInfoInternal(&BasicInfo, &ProcInfo, lpSystemInfo); } @@ -214,13 +214,13 @@ GetNativeSystemInfo(IN LPSYSTEM_INFO lpSystemInfo) sizeof(BasicInfo), 0); if (!NT_SUCCESS(Status)) return; - + Status = RtlGetNativeSystemInformation(SystemProcessorInformation, &ProcInfo, sizeof(ProcInfo), 0); if (!NT_SUCCESS(Status)) return; - + GetSystemInfoInternal(&BasicInfo, &ProcInfo, lpSystemInfo); } diff --git a/dll/win32/kernel32/client/vdm.c b/dll/win32/kernel32/client/vdm.c index 07022d8740b..98c326a5f24 100644 --- a/dll/win32/kernel32/client/vdm.c +++ b/dll/win32/kernel32/client/vdm.c @@ -1763,7 +1763,7 @@ GetNextVDMCommand(PVDM_COMMAND_INFO CommandData) Success = TRUE; Cleanup: - if (CaptureBuffer != NULL) CsrFreeCaptureBuffer(CaptureBuffer); + if (CaptureBuffer != NULL) CsrFreeCaptureBuffer(CaptureBuffer); return Success; } diff --git a/dll/win32/kernel32/kernel32_vista/vista.c b/dll/win32/kernel32/kernel32_vista/vista.c index 743cb430721..ca96b233b3b 100644 --- a/dll/win32/kernel32/kernel32_vista/vista.c +++ b/dll/win32/kernel32/kernel32_vista/vista.c @@ -591,12 +591,12 @@ OpenFileById(IN HANDLE hFile, Vista+ MUI support functions References: - Evolution of MUI Support across Windows Versions: http://msdn.microsoft.com/en-US/library/ee264317.aspx + Evolution of MUI Support across Windows Versions: http://msdn.microsoft.com/en-US/library/ee264317.aspx Comparing Windows XP Professional Multilingual Options: http://technet.microsoft.com/en-us/library/bb457045.aspx More info: - http://msdn.microsoft.com/en-us/goglobal/bb978454.aspx - http://msdn.microsoft.com/en-us/library/dd319074.aspx + http://msdn.microsoft.com/en-us/goglobal/bb978454.aspx + http://msdn.microsoft.com/en-us/library/dd319074.aspx */ /* FUNCTIONS *****************************************************************/ diff --git a/dll/win32/kernel32/wine/actctx.c b/dll/win32/kernel32/wine/actctx.c index 3294341067c..369f0c75fea 100644 --- a/dll/win32/kernel32/wine/actctx.c +++ b/dll/win32/kernel32/wine/actctx.c @@ -7,7 +7,7 @@ * Eric Pouech * Jon Griffiths * Dmitry Chapyshev (dmitry@reactos.org) - * Samuel Serapión + * Samuel Serapión */ /* Partly synched with Wine 1.7.17 */ diff --git a/dll/win32/kernel32/winnls/string/japanese.c b/dll/win32/kernel32/winnls/string/japanese.c index 2cd42e84c4f..ff2495e21d6 100644 --- a/dll/win32/kernel32/winnls/string/japanese.c +++ b/dll/win32/kernel32/winnls/string/japanese.c @@ -102,7 +102,7 @@ BOOL JapaneseEra_IsFirstYearGannen(void) #endif } -/* +/* * SEE ALSO: * https://en.wikipedia.org/wiki/Japanese_era_name * https://docs.microsoft.com/en-us/windows/desktop/Intl/era-handling-for-the-japanese-calendar diff --git a/dll/win32/lpk/ros_lpk.h b/dll/win32/lpk/ros_lpk.h index 8ad993f1978..1ed69f77274 100644 --- a/dll/win32/lpk/ros_lpk.h +++ b/dll/win32/lpk/ros_lpk.h @@ -1,6 +1,6 @@ -/* +/* * COPYRIGHT: See COPYING in the top level directory - * PROJECT: ReactOS + * PROJECT: ReactOS * PURPOSE: LPK Library * PROGRAMMER: Magnus Olsen (greatlrd) * @@ -76,7 +76,7 @@ DWORD WINAPI ftsWordBreak(DWORD x1,DWORD x2,DWORD x3,DWORD x4,DWORD x5); BOOL WINAPI LpkExtTextOut(HDC hdc, int x, int y, UINT fuOptions, const RECT *lprc, LPCWSTR lpString, UINT uCount , const INT *lpDx, INT unknown); -DWORD WINAPI LpkGetCharacterPlacement(HDC hdc, LPCWSTR lpString, INT uCount, INT nMaxExtent, +DWORD WINAPI LpkGetCharacterPlacement(HDC hdc, LPCWSTR lpString, INT uCount, INT nMaxExtent, GCP_RESULTSW *lpResults, DWORD dwFlags, DWORD dwUnused); INT WINAPI LpkPSMTextOut(HDC hdc, int x, int y, LPCWSTR lpString, int cString, DWORD dwFlags); diff --git a/dll/win32/lpk/stub.c b/dll/win32/lpk/stub.c index d0c11d1e1dd..f8f89bbb934 100644 --- a/dll/win32/lpk/stub.c +++ b/dll/win32/lpk/stub.c @@ -1,6 +1,6 @@ -/* +/* * COPYRIGHT: See COPYING in the top level directory - * PROJECT: ReactOS + * PROJECT: ReactOS * PURPOSE: LPK Library * PROGRAMMER: Magnus Olsen (greatlrd) * diff --git a/dll/win32/mmdrv/auxil.c b/dll/win32/mmdrv/auxil.c index ecc872c956e..be906531200 100644 --- a/dll/win32/mmdrv/auxil.c +++ b/dll/win32/mmdrv/auxil.c @@ -40,24 +40,24 @@ APIENTRY DWORD auxMessage(UINT dwId, case AUXDM_GETNUMDEVS: DPRINT("AUXDM_GETNUMDEVS"); return GetDeviceCount(AuxDevice); - + case AUXDM_GETVOLUME: DPRINT("AUXDM_GETVOLUME"); Result = AuxGetAudio(dwId, (PBYTE) &Volume, sizeof(Volume)); - - if (Result == MMSYSERR_NOERROR) + + if (Result == MMSYSERR_NOERROR) { *(LPDWORD)dwParam1 = (DWORD)MAKELONG(HIWORD(Volume.Left), HIWORD(Volume.Right)); } return Result; - + case AUXDM_SETVOLUME: DPRINT("AUXDM_SETVOLUME"); - + Volume.Right = HIWORD(dwParam1) << 16; Volume.Left = LOWORD(dwParam1) << 16; - + return AuxSetAudio(dwId, (PBYTE)&Volume, sizeof(Volume)); } @@ -76,7 +76,7 @@ DWORD AuxGetAudio(DWORD dwID, PBYTE pVolume, DWORD sizeVolume) if (Result != MMSYSERR_NOERROR) return Result; - + Result = DeviceIoControl(DeviceHandle, IOCTL_AUX_GET_VOLUME, NULL, 0, (LPVOID)pVolume, sizeVolume, &BytesReturned, NULL) ? MMSYSERR_NOERROR : TranslateStatus(); @@ -95,8 +95,8 @@ DWORD AuxSetAudio(DWORD dwID, PBYTE pVolume, DWORD sizeVolume) Result = OpenDevice(AuxDevice, dwID, &DeviceHandle, GENERIC_READ); if (Result != MMSYSERR_NOERROR) return Result; - - Result = DeviceIoControl(DeviceHandle, IOCTL_AUX_SET_VOLUME, (LPVOID)pVolume, sizeVolume, NULL, 0, + + Result = DeviceIoControl(DeviceHandle, IOCTL_AUX_SET_VOLUME, (LPVOID)pVolume, sizeVolume, NULL, 0, &BytesReturned, NULL) ? MMSYSERR_NOERROR : TranslateStatus(); diff --git a/dll/win32/mmdrv/midi.c b/dll/win32/mmdrv/midi.c index fd85ec58dbe..bc0744a230f 100644 --- a/dll/win32/mmdrv/midi.c +++ b/dll/win32/mmdrv/midi.c @@ -22,36 +22,36 @@ typedef struct _LOCALMIDIHDR { OVERLAPPED Ovl; DWORD BytesReturned; - struct _LOCALMIDIHDR *lpNext; - BOOL Done; - PVOID pClient; - // MIDI_DD_INPUT_DATA MidiData; + struct _LOCALMIDIHDR *lpNext; + BOOL Done; + PVOID pClient; + // MIDI_DD_INPUT_DATA MidiData; BYTE ExtraData[LOCAL_DATA_SIZE - sizeof(ULONG)]; - + } LOCALMIDIHDR, *PLOCALMIDIHDR; #define LOCAL_MIDI_BUFFERS 8 typedef struct { - + BOOL fMidiInStarted; - DWORD dwMsg; - DWORD dwCurData; - BYTE status; - BOOLEAN fSysex; - BOOLEAN Bad; - BYTE bBytesLeft; - BYTE bBytePos; - DWORD dwCurTime; - DWORD dwMsgTime; - - - PLOCALMIDIHDR DeviceQueue; - - LOCALMIDIHDR + DWORD dwMsg; + DWORD dwCurData; + BYTE status; + BOOLEAN fSysex; + BOOLEAN Bad; + BYTE bBytesLeft; + BYTE bBytePos; + DWORD dwCurTime; + DWORD dwMsgTime; + + + PLOCALMIDIHDR DeviceQueue; + + LOCALMIDIHDR Bufs[LOCAL_MIDI_BUFFERS]; - - + + } LOCALMIDIDATA, *PLOCALMIDIDATA; @@ -104,31 +104,31 @@ static DWORD OpenMidiDevice(UINT DeviceType, DWORD ID, DWORD User, DWORD Param1, { PMIDIALLOC pClient = NULL; MMRESULT Result = MMSYSERR_NOERROR; - + // Check ID? DPRINT("OpenMidiDevice()\n"); - + switch(DeviceType) { case MidiOutDevice : pClient = (PMIDIALLOC) HeapAlloc(Heap, 0, sizeof(MIDIALLOC)); if ( pClient ) memset(pClient, 0, sizeof(MIDIALLOC)); break; - + case MidiInDevice : pClient = (PMIDIALLOC) HeapAlloc(Heap, 0, sizeof(MIDIALLOC) + sizeof(LOCALMIDIDATA)); if ( pClient ) memset(pClient, 0, sizeof(MIDIALLOC) + sizeof(LOCALMIDIDATA)); break; }; - + if ( !pClient ) return MMSYSERR_NOMEM; - - if (DeviceType == MidiInDevice) + + if (DeviceType == MidiInDevice) { int i; pClient->Mid = (PLOCALMIDIDATA)(pClient + 1); - for (i = 0 ;i < LOCAL_MIDI_BUFFERS ; i++) + for (i = 0 ;i < LOCAL_MIDI_BUFFERS ; i++) { pClient->Mid->Bufs[i].pClient = pClient; } @@ -139,52 +139,52 @@ static DWORD OpenMidiDevice(UINT DeviceType, DWORD ID, DWORD User, DWORD Param1, pClient->dwInstance = ((LPMIDIOPENDESC)Param1)->dwInstance; pClient->hMidi = ((LPMIDIOPENDESC)Param1)->hMidi; pClient->dwFlags = Param2; - + Result = OpenDevice(DeviceType, ID, &pClient->DeviceHandle, (GENERIC_READ | GENERIC_WRITE)); - + if ( Result != MMSYSERR_NOERROR ) { // cleanup return Result; } - + pClient->Event = CreateEvent(NULL, FALSE, FALSE, NULL); - + if ( !pClient->Event ) { // cleanup return MMSYSERR_NOMEM; } - if (DeviceType == MidiInDevice) + if (DeviceType == MidiInDevice) { pClient->AuxEvent1 = CreateEvent(NULL, FALSE, FALSE, NULL); - if (pClient->AuxEvent1 == NULL) - { - // cleanup - return MMSYSERR_NOMEM; - } - - pClient->AuxEvent2 = CreateEvent(NULL, FALSE, FALSE, NULL); - if (pClient->AuxEvent2 == NULL) + if (pClient->AuxEvent1 == NULL) { // cleanup return MMSYSERR_NOMEM; } - + pClient->AuxEvent2 = CreateEvent(NULL, FALSE, FALSE, NULL); + if (pClient->AuxEvent2 == NULL) + { + // cleanup + return MMSYSERR_NOMEM; + } + + // TaskCreate - - + + WaitForSingleObject(pClient->AuxEvent2, INFINITE); } PMIDIALLOC *pUserHandle; pUserHandle = (PMIDIALLOC*) User; *pUserHandle = pClient; - - // callback + + // callback return MMSYSERR_NOERROR; } @@ -196,7 +196,7 @@ static DWORD WriteMidi(PBYTE pData, ULONG Length, PMIDIALLOC pClient) DWORD BytesReturned; DPRINT("IOCTL_MIDI_PLAY == %d [%x]\n", IOCTL_MIDI_PLAY, IOCTL_MIDI_PLAY); - + if ( !DeviceIoControl(pClient->DeviceHandle, IOCTL_MIDI_PLAY, (PVOID)pData, Length, NULL, 0, &BytesReturned, NULL)) return TranslateStatus(); @@ -298,17 +298,17 @@ APIENTRY DWORD midMessage(DWORD dwId, DWORD dwMessage, DWORD dwUser, DWORD dwPar APIENTRY DWORD modMessage(DWORD ID, DWORD Message, DWORD User, DWORD Param1, DWORD Param2) { DPRINT("modMessage\n"); - + switch(Message) { case MODM_GETNUMDEVS: DPRINT("MODM_GETNUMDEVS == %d\n", (int)GetDeviceCount(MidiOutDevice)); return GetDeviceCount(MidiOutDevice); - + case MODM_GETDEVCAPS: DPRINT("MODM_GETDEVCAPS"); return GetDeviceCapabilities(ID, MidiOutDevice, (LPBYTE)Param1, (DWORD)Param2); - + case MODM_OPEN : return OpenMidiDevice(MidiOutDevice, ID, User, Param1, Param2); @@ -351,7 +351,7 @@ APIENTRY DWORD modMessage(DWORD ID, DWORD Message, DWORD User, DWORD Param1, DWO case MODM_CACHEDRUMPATCHES: DPRINT("MODM_CACHEDRUMPATCHES"); return MMSYSERR_NOTSUPPORTED; - + }; return MMSYSERR_NOTSUPPORTED; diff --git a/dll/win32/mmdrv/utils.c b/dll/win32/mmdrv/utils.c index fbe81061389..66137a5a300 100644 --- a/dll/win32/mmdrv/utils.c +++ b/dll/win32/mmdrv/utils.c @@ -34,23 +34,23 @@ DWORD TranslateStatus(void) case NO_ERROR : case ERROR_IO_PENDING : return MMSYSERR_NOERROR; - + case ERROR_BUSY : return MMSYSERR_ALLOCATED; - + case ERROR_NOT_SUPPORTED : case ERROR_INVALID_FUNCTION : return MMSYSERR_NOTSUPPORTED; - + case ERROR_NOT_ENOUGH_MEMORY : return MMSYSERR_NOMEM; - + case ERROR_ACCESS_DENIED : return MMSYSERR_BADDEVICEID; - + case ERROR_INSUFFICIENT_BUFFER : return MMSYSERR_INVALPARAM; - + default : return MMSYSERR_ERROR; }; @@ -85,7 +85,7 @@ MMRESULT OpenDevice(UINT DeviceType, DWORD ID, PHANDLE pDeviceHandle, case AuxDevice : wsprintf(DeviceName, L"\\\\.%ls%d", AUX_DEVICE_NAME_U + strlen("\\Device"), ID); break; - default : + default : DPRINT("No Auido Device Found"); return MMSYSERR_BADDEVICEID; /* Maybe we should change error code */ }; @@ -123,14 +123,14 @@ BOOL AddDeviceToList(PDEVICE_LIST* pList, DWORD DeviceType, DWORD CardIndex, SetLastError(ERROR_NOT_ENOUGH_MEMORY); return FALSE; } - + pNewDevice->DeviceType = DeviceType; pNewDevice->CardIndex = CardIndex; lstrcpy(pNewDevice->Name, Name); pNewDevice->DeviceInstanceData = NULL; pNewDevice->Next = *pList; *pList = pNewDevice; - + DPRINT("Success!\n"); return TRUE; @@ -142,7 +142,7 @@ VOID FreeDeviceList() PDEVICE_LIST pDevice; DPRINT("FreeDeviceList()\n"); - + while (DeviceList) { pDevice = DeviceList; @@ -162,45 +162,45 @@ MMRESULT FindDevices() // HKEY DriverKey; DPRINT("Finding devices\n"); - + // DriverKey = OpenParametersKey(); // see drvutil.c of MS DDK for how this SHOULD be done... - + SHORT i; HANDLE h; - WCHAR DeviceName[SOUND_MAX_DEVICE_NAME]; + WCHAR DeviceName[SOUND_MAX_DEVICE_NAME]; - for (i=0; OpenDevice(WaveOutDevice, i, &h, GENERIC_READ) == MMSYSERR_NOERROR; i++) - { + for (i=0; OpenDevice(WaveOutDevice, i, &h, GENERIC_READ) == MMSYSERR_NOERROR; i++) + { wsprintf(DeviceName, L"WaveOut%d\0", i); CloseHandle(h); AddDeviceToList(&DeviceList, WaveOutDevice, 0, DeviceName); } - for (i=0; OpenDevice(WaveInDevice, i, &h, GENERIC_READ) == MMSYSERR_NOERROR; i++) - { + for (i=0; OpenDevice(WaveInDevice, i, &h, GENERIC_READ) == MMSYSERR_NOERROR; i++) + { wsprintf(DeviceName, L"WaveIn%d\0", i); CloseHandle(h); AddDeviceToList(&DeviceList, WaveInDevice, 0, DeviceName); } - for (i=0; OpenDevice(MidiOutDevice, i, &h, GENERIC_READ) == MMSYSERR_NOERROR; i++) - { + for (i=0; OpenDevice(MidiOutDevice, i, &h, GENERIC_READ) == MMSYSERR_NOERROR; i++) + { wsprintf(DeviceName, L"MidiOut%d\0", i); CloseHandle(h); AddDeviceToList(&DeviceList, MidiOutDevice, 0, DeviceName); } - for (i=0; OpenDevice(MidiInDevice, i, &h, GENERIC_READ) == MMSYSERR_NOERROR; i++) - { + for (i=0; OpenDevice(MidiInDevice, i, &h, GENERIC_READ) == MMSYSERR_NOERROR; i++) + { wsprintf(DeviceName, L"MidiIn%d\0", i); CloseHandle(h); AddDeviceToList(&DeviceList, MidiInDevice, 0, DeviceName); } - for (i=0; OpenDevice(AuxDevice, i, &h, GENERIC_READ) == MMSYSERR_NOERROR; i++) - { + for (i=0; OpenDevice(AuxDevice, i, &h, GENERIC_READ) == MMSYSERR_NOERROR; i++) + { wsprintf(DeviceName, L"Aux%d\0", i); CloseHandle(h); AddDeviceToList(&DeviceList, AuxDevice, 0, DeviceName); diff --git a/dll/win32/modemui/modemui.c b/dll/win32/modemui/modemui.c index 0b75ba3c4af..54861d5255b 100644 --- a/dll/win32/modemui/modemui.c +++ b/dll/win32/modemui/modemui.c @@ -30,7 +30,7 @@ ModemCplDlgProc(IN HWND hwndDlg, { case WM_INITDIALOG: { - + } break; } @@ -51,7 +51,7 @@ ModemPropPagesProvider(IN HWND hwndDlg, { case WM_INITDIALOG: { - + } break; } diff --git a/dll/win32/msafd/include/helpers.h b/dll/win32/msafd/include/helpers.h index 947e7640fe5..22ad4ce5d6e 100644 --- a/dll/win32/msafd/include/helpers.h +++ b/dll/win32/msafd/include/helpers.h @@ -35,13 +35,13 @@ typedef struct _HELPER_DATA { } HELPER_DATA, *PHELPER_DATA; int SockLoadHelperDll( - PWSTR TransportName, - PWINSOCK_MAPPING Mapping, + PWSTR TransportName, + PWINSOCK_MAPPING Mapping, PHELPER_DATA *HelperDllData ); int SockLoadTransportMapping( - PWSTR TransportName, + PWSTR TransportName, PWINSOCK_MAPPING *Mapping ); @@ -50,21 +50,21 @@ int SockLoadTransportList( ); BOOL SockIsTripleInMapping( - PWINSOCK_MAPPING Mapping, - INT AddressFamily, - INT SocketType, + PWINSOCK_MAPPING Mapping, + INT AddressFamily, + INT SocketType, INT Protocol ); int SockGetTdiName( - PINT AddressFamily, - PINT SocketType, - PINT Protocol, - GROUP Group, - DWORD Flags, - PUNICODE_STRING TransportName, - PVOID *HelperDllContext, - PHELPER_DATA *HelperDllData, + PINT AddressFamily, + PINT SocketType, + PINT Protocol, + GROUP Group, + DWORD Flags, + PUNICODE_STRING TransportName, + PVOID *HelperDllContext, + PHELPER_DATA *HelperDllData, PDWORD Events ); diff --git a/dll/win32/msafd/misc/dllmain.c b/dll/win32/msafd/misc/dllmain.c index 52d71e702fe..c9e443641b8 100644 --- a/dll/win32/msafd/misc/dllmain.c +++ b/dll/win32/msafd/misc/dllmain.c @@ -3181,7 +3181,7 @@ WSPStringToAddress(IN LPWSTR AddressString, /* move over the dot to next ip part */ (*bp)++; } - + /* check dots count */ if (numdots != 3) { diff --git a/dll/win32/msgina/gui.c b/dll/win32/msgina/gui.c index e4f5abcc70f..7254b871709 100644 --- a/dll/win32/msgina/gui.c +++ b/dll/win32/msgina/gui.c @@ -132,7 +132,7 @@ SetWelcomeText(HWND hWnd) TRACE("SetWelcomeText(%p)\n", hWnd); /* Open the Winlogon key */ - rc = RegOpenKeyExW(HKEY_LOCAL_MACHINE, + rc = RegOpenKeyExW(HKEY_LOCAL_MACHINE, L"SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Winlogon", 0, KEY_QUERY_VALUE, @@ -294,12 +294,12 @@ StartupWindowThread(LPVOID lpParam) /* When SetThreadDesktop is called the system closes the desktop handle when needed so we have to create a new handle because this handle may still be in use by winlogon */ - if (!DuplicateHandle ( GetCurrentProcess(), - msg->hDesktop, - GetCurrentProcess(), - (HANDLE*)&hDesk, - 0, - FALSE, + if (!DuplicateHandle ( GetCurrentProcess(), + msg->hDesktop, + GetCurrentProcess(), + (HANDLE*)&hDesk, + 0, + FALSE, DUPLICATE_SAME_ACCESS)) { ERR("Duplicating handle failed!\n"); diff --git a/dll/win32/msgina/msgina.c b/dll/win32/msgina/msgina.c index 08cd148fa58..0d58899c6d8 100644 --- a/dll/win32/msgina/msgina.c +++ b/dll/win32/msgina/msgina.c @@ -531,7 +531,7 @@ WlxActivateUserShell( /* Get the path of userinit */ rc = RegOpenKeyExW( - HKEY_LOCAL_MACHINE, + HKEY_LOCAL_MACHINE, L"SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Winlogon", 0, KEY_QUERY_VALUE, @@ -866,7 +866,7 @@ CreateProfile( goto cleanup; } - *pgContext->pAuthenticationId = Stats.AuthenticationId; + *pgContext->pAuthenticationId = Stats.AuthenticationId; pgContext->pMprNotifyInfo->pszUserName = DuplicationString(UserName); pgContext->pMprNotifyInfo->pszDomain = DuplicationString(Domain); pgContext->pMprNotifyInfo->pszPassword = DuplicationString(Password); diff --git a/dll/win32/msgina/resource.h b/dll/win32/msgina/resource.h index dcda934a875..7116ab5cbac 100644 --- a/dll/win32/msgina/resource.h +++ b/dll/win32/msgina/resource.h @@ -56,7 +56,7 @@ #define IDC_HIBERNATE_STATIC 3002 #define IDC_SLEEP_STATIC 3003 #define IDC_SHUTDOWN_STATIC 3004 -#define IDC_RESTART_STATIC 3005 +#define IDC_RESTART_STATIC 3005 #define IDC_BUTTON_HIBERNATE 1901 #define IDC_BUTTON_SLEEP 1902 diff --git a/dll/win32/msgina/shutdown.c b/dll/win32/msgina/shutdown.c index d2478b2df02..95b890ba589 100644 --- a/dll/win32/msgina/shutdown.c +++ b/dll/win32/msgina/shutdown.c @@ -227,12 +227,12 @@ IsShowHibernateButtonActive(VOID) lRet = RegOpenKeyExW(HKEY_LOCAL_MACHINE, L"SOFTWARE\\Policies\\Microsoft\\Windows\\System\\Shutdown", - 0, KEY_QUERY_VALUE, &hKey); + 0, KEY_QUERY_VALUE, &hKey); if (lRet == ERROR_SUCCESS) { dwValue = 0; dwSize = sizeof(dwValue); - + lRet = RegQueryValueExW(hKey, L"ShowHibernateButton", NULL, NULL, @@ -327,7 +327,7 @@ DrawIconOnOwnerDrawnButtons( case ODA_DRAWENTIRE: case ODA_FOCUS: case ODA_SELECT: - { + { y = BUTTON_SHUTDOWN; if (pdis->itemState & ODS_SELECTED) { @@ -350,7 +350,7 @@ DrawIconOnOwnerDrawnButtons( case ODA_DRAWENTIRE: case ODA_FOCUS: case ODA_SELECT: - { + { y = BUTTON_REBOOT; if (pdis->itemState & ODS_SELECTED) { @@ -365,7 +365,7 @@ DrawIconOnOwnerDrawnButtons( } break; } - + case IDC_BUTTON_HIBERNATE: case IDC_BUTTON_SLEEP: { @@ -374,7 +374,7 @@ DrawIconOnOwnerDrawnButtons( case ODA_DRAWENTIRE: case ODA_FOCUS: case ODA_SELECT: - { + { y = BUTTON_SLEEP; if (pdis->itemState & ODS_DISABLED) { @@ -400,7 +400,7 @@ DrawIconOnOwnerDrawnButtons( /* Draw it on the required button */ bRet = BitBlt(pdis->hDC, (rect.right - rect.left - CX_BITMAP) / 2, - (rect.bottom - rect.top - CY_BITMAP) / 2, + (rect.bottom - rect.top - CY_BITMAP) / 2, CX_BITMAP, CY_BITMAP, hdcMem, 0, y, SRCCOPY); SelectObject(hdcMem, hbmOld); @@ -655,14 +655,14 @@ ReplaceRequiredButton( destID = IDC_BUTTON_HIBERNATE; targetedID = IDC_BUTTON_SLEEP; } - + hwndDest = GetDlgItem(hDlg, destID); hwndTarget = GetDlgItem(hDlg, targetedID); - + /* Get the position of the destination button */ GetWindowRect(hwndDest, &rect); - /* Get the corrected translated coordinates which is relative to the client window */ + /* Get the corrected translated coordinates which is relative to the client window */ MapWindowPoints(HWND_DESKTOP, hDlg, (LPPOINT)&rect, sizeof(RECT)/sizeof(POINT)); /* Set the position of targeted button and hide the destination button */ @@ -677,7 +677,7 @@ ReplaceRequiredButton( EnableWindow(hwndTarget, TRUE); ShowWindow(hwndTarget, SW_SHOW); SetFocus(hwndTarget); - + if (bIsAltKeyPressed) { if (!bIsSleepButtonReplaced) @@ -854,7 +854,7 @@ ShutdownOnInit( ReleaseDC(hDlg, hdc); pContext->hfFont = CreateFontW(lfHeight, 0, 0, 0, FW_MEDIUM, FALSE, 0, 0, 0, 0, 0, 0, 0, L"MS Shell Dlg"); SendDlgItemMessageW(hDlg, IDC_TURN_OFF_STATIC, WM_SETFONT, (WPARAM)pContext->hfFont, TRUE); - + /* Create a brush for static controls for fancy shut down dialog */ pContext->hBrush = CreateSolidBrush(DARK_GREY_COLOR); @@ -972,14 +972,14 @@ ShutdownOnInit( /* Gather old button func */ pContext->OldButtonProc = (WNDPROC)GetWindowLongPtrW(GetDlgItem(hDlg, IDC_BUTTON_HIBERNATE), GWLP_WNDPROC); - + /* Make buttons to remember pContext and subclass the buttons */ for (int i = 0; i < NUMBER_OF_BUTTONS; i++) { SetWindowLongPtrW(GetDlgItem(hDlg, IDC_BUTTON_HIBERNATE + i), GWLP_USERDATA, (LONG_PTR)pContext); SetWindowLongPtrW(GetDlgItem(hDlg, IDC_BUTTON_HIBERNATE + i), GWLP_WNDPROC, (LONG_PTR)OwnerDrawButtonSubclass); } - + /* Update the choice description based on the current selection */ UpdateShutdownDesc(hDlg, pContext); } @@ -1143,7 +1143,7 @@ ShutdownDialogProc( case WM_CTLCOLORSTATIC: { /* Either make background transparent or fill it with color for required static controls */ - HDC hdcStatic = (HDC)wParam; + HDC hdcStatic = (HDC)wParam; UINT StaticID = (UINT)GetWindowLongPtrW((HWND)lParam, GWL_ID); switch (StaticID) @@ -1269,7 +1269,7 @@ ShutdownDialog( case WM_KEYDOWN: { - /* + /* * If the Shift key has been pressed once, and both hibernate button and sleep button are enabled * replace the sleep button with hibernate button */ @@ -1280,8 +1280,8 @@ ShutdownDialog( if (IsPwrHibernateAllowed() && IsPwrSuspendAllowed()) { ReplaceRequiredButton(hDlg, - pgContext->hDllInstance, - bIsAltKeyPressed, + pgContext->hDllInstance, + bIsAltKeyPressed, Context.bIsSleepButtonReplaced); Context.bIsSleepButtonReplaced = TRUE; } diff --git a/dll/win32/msports/classinst.c b/dll/win32/msports/classinst.c index 255fd3ed716..5a6a00462d6 100644 --- a/dll/win32/msports/classinst.c +++ b/dll/win32/msports/classinst.c @@ -514,7 +514,7 @@ InstallParallelPort(IN HDEVINFO DeviceInfoSet, L"FilterResourceMethod", 0, REG_DWORD, - (LPBYTE)&dwValue, + (LPBYTE)&dwValue, sizeof(dwValue)); RegCloseKey(hKey); diff --git a/dll/win32/mstask/stubs.c b/dll/win32/mstask/stubs.c index c4d84984ac0..511b8eda54b 100644 --- a/dll/win32/mstask/stubs.c +++ b/dll/win32/mstask/stubs.c @@ -78,7 +78,7 @@ NetrJobGetInfo( HRESULT WINAPI -SAGetAccountInformation( +SAGetAccountInformation( _In_z_ SASEC_HANDLE Handle, _In_z_ const wchar_t* pwszJobName, _In_range_(0, MAX_BUFFER_SIZE) DWORD ccBufferSize, @@ -90,7 +90,7 @@ SAGetAccountInformation( HRESULT WINAPI -SAGetNSAccountInformation( +SAGetNSAccountInformation( _In_z_ SASEC_HANDLE Handle, _In_range_(0, MAX_BUFFER_SIZE) DWORD ccBufferSize, _Inout_updates_z_(ccBufferSize) wchar_t wszBuffer[]) @@ -101,7 +101,7 @@ SAGetNSAccountInformation( HRESULT WINAPI -SASetAccountInformation( +SASetAccountInformation( _In_z_ SASEC_HANDLE Handle, _In_z_ const wchar_t* pwszJobName, _In_z_ const wchar_t* pwszAccount, @@ -114,7 +114,7 @@ SASetAccountInformation( HRESULT WINAPI -SASetNSAccountInformation( +SASetNSAccountInformation( _In_z_ SASEC_HANDLE Handle, _In_z_ const wchar_t* pwszAccount, _In_z_ const wchar_t* pwszPassword) diff --git a/dll/win32/mswsock/nsplookup.c b/dll/win32/mswsock/nsplookup.c index b11712a75c8..301355b4498 100644 --- a/dll/win32/mswsock/nsplookup.c +++ b/dll/win32/mswsock/nsplookup.c @@ -716,7 +716,7 @@ NSP_GetServiceByNameHeapAllocW(_In_ PWSHANDLEINTERN data, PCHAR nameServiceA = NULL; PCHAR nameProtoA = NULL; INT res = WSANO_RECOVERY; - + if (!data->hostnameW) { res = WSANO_RECOVERY; diff --git a/dll/win32/mswsock/stubs.c b/dll/win32/mswsock/stubs.c index f026bc61cff..2c336f4d60a 100644 --- a/dll/win32/mswsock/stubs.c +++ b/dll/win32/mswsock/stubs.c @@ -442,7 +442,7 @@ StopWsdpService() /* * @unimplemented - * + * * See https://www.geoffchappell.com/studies/windows/win32/services/svchost/dll/svchostpushserviceglobals.htm */ VOID diff --git a/dll/win32/netcfgx/classfactory.c b/dll/win32/netcfgx/classfactory.c index 0ef66c5497e..37d6ade2107 100644 --- a/dll/win32/netcfgx/classfactory.c +++ b/dll/win32/netcfgx/classfactory.c @@ -101,10 +101,10 @@ static const IClassFactoryVtbl dclfvt = }; -IClassFactory * +IClassFactory * IClassFactory_fnConstructor( - LPFNCREATEINSTANCE lpfnCI, - PLONG pcRefDll, + LPFNCREATEINSTANCE lpfnCI, + PLONG pcRefDll, REFIID riidInst) { IClassFactoryImpl* lpclf; diff --git a/dll/win32/netcfgx/netcfg_iface.c b/dll/win32/netcfgx/netcfg_iface.c index e8553abeee7..e292e4c7b4b 100644 --- a/dll/win32/netcfgx/netcfg_iface.c +++ b/dll/win32/netcfgx/netcfg_iface.c @@ -597,7 +597,7 @@ INetCfg_fnRelease( INetCfgImpl * This = (INetCfgImpl*)iface; ULONG refCount = InterlockedDecrement(&This->ref); - if (!refCount) + if (!refCount) { CoTaskMemFree (This); } @@ -674,7 +674,7 @@ ApplyOrCancelChanges( if (bApply) { INetCfgComponentControl_ApplyRegistryChanges(pHead->pNCCC); - //FIXME + //FIXME // implement INetCfgPnpReconfigCallback and pass it to //INetCfgComponentControl_ApplyPnpChanges(pHead->pNCCC, NULL); } diff --git a/dll/win32/netcfgx/res/Icon_Licence/Tango.txt b/dll/win32/netcfgx/res/Icon_Licence/Tango.txt index 20f151d0942..cc724c3de29 100644 --- a/dll/win32/netcfgx/res/Icon_Licence/Tango.txt +++ b/dll/win32/netcfgx/res/Icon_Licence/Tango.txt @@ -1,4 +1,4 @@ -The following icons are the property of the Tango project and are +The following icons are the property of the Tango project and are released under Creative Commons Attribution-ShareAlike 2.5 License. Please see COPYING for details diff --git a/dll/win32/netcfgx/resource.h b/dll/win32/netcfgx/resource.h index c04a2eae9ba..be645900bd0 100644 --- a/dll/win32/netcfgx/resource.h +++ b/dll/win32/netcfgx/resource.h @@ -122,4 +122,4 @@ #define IDS_DNS_SUFFIX 8024 #define IDS_DUP_SUFFIX 8025 #define IDS_DUP_IPADDR 8026 -#define IDS_DUP_GW 8027 +#define IDS_DUP_GW 8027 diff --git a/dll/win32/netcfgx/tcpipconf_notify.c b/dll/win32/netcfgx/tcpipconf_notify.c index 21eaa3485a0..0ad1862a070 100644 --- a/dll/win32/netcfgx/tcpipconf_notify.c +++ b/dll/win32/netcfgx/tcpipconf_notify.c @@ -397,7 +397,7 @@ TcpipFilterSettingsDlg( case WM_COMMAND: if (HIWORD(wParam) == BN_CLICKED) { - switch (LOWORD(wParam)) + switch (LOWORD(wParam)) { case IDC_TCP_ALLOW_ALL: if (SendDlgItemMessageW(hwndDlg, IDC_TCP_ALLOW_ALL, BM_GETCHECK, 0, 0) == BST_CHECKED) @@ -583,8 +583,8 @@ TcpipAdvancedOptDlg( if (LOWORD(wParam) == IDC_OPTPROP) { DialogBoxParamW(netcfgx_hInstance, - MAKEINTRESOURCEW(IDD_TCPIP_FILTER_DLG), - GetParent(hwndDlg), + MAKEINTRESOURCEW(IDD_TCPIP_FILTER_DLG), + GetParent(hwndDlg), TcpipFilterSettingsDlg, (LPARAM)GetWindowLongPtr(hwndDlg, DWLP_USER)); break; @@ -635,7 +635,7 @@ InsertIpAddressToListView( li.iItem = itemCount; li.iSubItem = 0; dwIpAddr = pAddr->IpAddress; - swprintf(szBuffer, L"%lu.%lu.%lu.%lu", + swprintf(szBuffer, L"%lu.%lu.%lu.%lu", FIRST_IPADDRESS(dwIpAddr), SECOND_IPADDRESS(dwIpAddr), THIRD_IPADDRESS(dwIpAddr), FOURTH_IPADDRESS(dwIpAddr)); li.pszText = szBuffer; @@ -645,7 +645,7 @@ InsertIpAddressToListView( if (bSubMask) { dwIpAddr = pAddr->u.Subnetmask; - swprintf(szBuffer, L"%lu.%lu.%lu.%lu", + swprintf(szBuffer, L"%lu.%lu.%lu.%lu", FIRST_IPADDRESS(dwIpAddr), SECOND_IPADDRESS(dwIpAddr), THIRD_IPADDRESS(dwIpAddr), FOURTH_IPADDRESS(dwIpAddr)); } else @@ -1576,7 +1576,7 @@ InitializeTcpipAdvancedDNSDlg( while(pAddr) { dwIpAddr = pAddr->IpAddress; - swprintf(szBuffer, L"%lu.%lu.%lu.%lu", + swprintf(szBuffer, L"%lu.%lu.%lu.%lu", FIRST_IPADDRESS(dwIpAddr), SECOND_IPADDRESS(dwIpAddr), THIRD_IPADDRESS(dwIpAddr), FOURTH_IPADDRESS(dwIpAddr)); SendDlgItemMessageW(hwndDlg, IDC_DNSADDRLIST, LB_ADDSTRING, 0, (LPARAM)szBuffer); @@ -2527,7 +2527,7 @@ TcpipBasicDlg( case WM_COMMAND: if (HIWORD(wParam) == BN_CLICKED) { - switch (LOWORD(wParam)) + switch (LOWORD(wParam)) { case IDC_USEDHCP: if (SendDlgItemMessageW(hwndDlg, IDC_USEDHCP, BM_GETCHECK, 0, 0) == BST_CHECKED) @@ -2950,7 +2950,7 @@ Initialize(TcpipConfNotifyImpl * This) HRESULT WINAPI -INetCfgComponentPropertyUi_fnMergePropPages( +INetCfgComponentPropertyUi_fnMergePropPages( INetCfgComponentPropertyUi * iface, DWORD *pdwDefPages, BYTE **pahpspPrivate, @@ -3076,7 +3076,7 @@ INetCfgComponentControl_fnRelease( HRESULT WINAPI -INetCfgComponentControl_fnInitialize( +INetCfgComponentControl_fnInitialize( INetCfgComponentControl * iface, INetCfgComponent *pIComp, INetCfg *pINetCfg, @@ -3106,12 +3106,12 @@ CreateMultiSzString(IP_ADDR * pAddr, COPY_TYPE Type, LPDWORD Size, BOOL bComma) if (Type == IPADDR) { dwIpAddr = pTemp->IpAddress; - swprintf(szBuffer, L"%lu.%lu.%lu.%lu", + swprintf(szBuffer, L"%lu.%lu.%lu.%lu", FIRST_IPADDRESS(dwIpAddr), SECOND_IPADDRESS(dwIpAddr), THIRD_IPADDRESS(dwIpAddr), FOURTH_IPADDRESS(dwIpAddr)); }else if (Type == SUBMASK) { dwIpAddr = pTemp->u.Subnetmask; - swprintf(szBuffer, L"%lu.%lu.%lu.%lu", + swprintf(szBuffer, L"%lu.%lu.%lu.%lu", FIRST_IPADDRESS(dwIpAddr), SECOND_IPADDRESS(dwIpAddr), THIRD_IPADDRESS(dwIpAddr), FOURTH_IPADDRESS(dwIpAddr)); } else if (Type == METRIC) @@ -3136,12 +3136,12 @@ CreateMultiSzString(IP_ADDR * pAddr, COPY_TYPE Type, LPDWORD Size, BOOL bComma) if (Type == IPADDR) { dwIpAddr = pTemp->IpAddress; - swprintf(pStr, L"%lu.%lu.%lu.%lu", + swprintf(pStr, L"%lu.%lu.%lu.%lu", FIRST_IPADDRESS(dwIpAddr), SECOND_IPADDRESS(dwIpAddr), THIRD_IPADDRESS(dwIpAddr), FOURTH_IPADDRESS(dwIpAddr)); }else if (Type == SUBMASK) { dwIpAddr = pTemp->u.Subnetmask; - swprintf(pStr, L"%lu.%lu.%lu.%lu", + swprintf(pStr, L"%lu.%lu.%lu.%lu", FIRST_IPADDRESS(dwIpAddr), SECOND_IPADDRESS(dwIpAddr), THIRD_IPADDRESS(dwIpAddr), FOURTH_IPADDRESS(dwIpAddr)); } else if (Type == METRIC) @@ -3209,7 +3209,7 @@ INetCfgComponentControl_fnApplyRegistryChanges( } if (pCurrentConfig->pFilter) { - RegSetValueExW(hKey, L"EnableSecurityFilters", 0, REG_DWORD, + RegSetValueExW(hKey, L"EnableSecurityFilters", 0, REG_DWORD, (LPBYTE)&pCurrentConfig->pFilter->EnableSecurityFilters, sizeof(DWORD)); } RegCloseKey(hKey); @@ -3235,19 +3235,19 @@ INetCfgComponentControl_fnApplyRegistryChanges( { if (pCurrentConfig->pFilter->szTCPAllowedPorts) { - RegSetValueExW(hKey, L"TCPAllowedPorts", 0, REG_MULTI_SZ, + RegSetValueExW(hKey, L"TCPAllowedPorts", 0, REG_MULTI_SZ, (LPBYTE)pCurrentConfig->pFilter->szTCPAllowedPorts, pCurrentConfig->pFilter->TCPSize); } if (pCurrentConfig->pFilter->szUDPAllowedPorts) { - RegSetValueExW(hKey, L"UDPAllowedPorts", 0, REG_MULTI_SZ, + RegSetValueExW(hKey, L"UDPAllowedPorts", 0, REG_MULTI_SZ, (LPBYTE)pCurrentConfig->pFilter->szUDPAllowedPorts, pCurrentConfig->pFilter->UDPSize); } if (pCurrentConfig->pFilter->szRawIPAllowedProtocols) { - RegSetValueExW(hKey, L"RawIPAllowedProtocols", 0, REG_MULTI_SZ, + RegSetValueExW(hKey, L"RawIPAllowedProtocols", 0, REG_MULTI_SZ, (LPBYTE)pCurrentConfig->pFilter->szRawIPAllowedProtocols, pCurrentConfig->pFilter->IPSize); } @@ -3312,14 +3312,14 @@ INetCfgComponentControl_fnApplyRegistryChanges( &pCurrentConfig->Ip->NTEContext, &NTEInstance); } - + pStr = CreateMultiSzString(pCurrentConfig->Ip, IPADDR, &dwSize, FALSE); if(pStr) { RegSetValueExW(hKey, L"IPAddress", 0, REG_MULTI_SZ, (LPBYTE)pStr, dwSize); CoTaskMemFree(pStr); } - + pStr = CreateMultiSzString(pCurrentConfig->Ip, SUBMASK, &dwSize, FALSE); if(pStr) { diff --git a/dll/win32/newdev/stubs.c b/dll/win32/newdev/stubs.c index 037ba2e0296..c52793a37bc 100644 --- a/dll/win32/newdev/stubs.c +++ b/dll/win32/newdev/stubs.c @@ -66,7 +66,7 @@ DiShowUpdateDevice( SetLastError(ERROR_INVALID_FLAGS); return FALSE; } - + UNIMPLEMENTED; SetLastError(ERROR_GEN_FAILURE); return FALSE; diff --git a/dll/win32/ntlanman/ntlanman.spec b/dll/win32/ntlanman/ntlanman.spec index f2f83f8c752..dff5f20118f 100644 --- a/dll/win32/ntlanman/ntlanman.spec +++ b/dll/win32/ntlanman/ntlanman.spec @@ -23,7 +23,7 @@ 23 stub ShareAsDialogA0 24 stub ShareCreate 25 stub ShareManage -26 stub ShareStop +26 stub ShareStop 27 stub StopShareDialogA0 28 stub -noname Ordinal28 29 stdcall NPPropertyDialog(ptr long long wstr long) diff --git a/dll/win32/powrprof/powrprof.c b/dll/win32/powrprof/powrprof.c index 287c09769ab..9aaa1c1b003 100644 --- a/dll/win32/powrprof/powrprof.c +++ b/dll/win32/powrprof/powrprof.c @@ -37,9 +37,9 @@ WINE_DEFAULT_DEBUG_CHANNEL(powrprof); static const WCHAR szPowerCfgSubKey[] = L"Software\\Microsoft\\Windows\\CurrentVersion\\Controls Folder\\PowerCfg"; -static const WCHAR szUserPowerConfigSubKey[] = +static const WCHAR szUserPowerConfigSubKey[] = L"Control Panel\\PowerCfg"; -static const WCHAR szCurrentPowerPolicies[] = +static const WCHAR szCurrentPowerPolicies[] = L"CurrentPowerPolicy"; static const WCHAR szPolicies[] = L"Policies"; static const WCHAR szName[] = L"Name"; @@ -201,7 +201,7 @@ POWRPROF_GetMachinePowerPolicy(LPWSTR szNum, PMACHINE_POWER_POLICY pmachinePwrPo dwSize = sizeof(MACHINE_POWER_POLICY); Err = RegQueryValueExW(hKey, L"Policies", NULL, NULL, (LPBYTE)pmachinePwrPolicy, &dwSize); - + if (Err != ERROR_SUCCESS) { ERR("RegQueryValueExW failed: %d\n", Err); @@ -734,7 +734,7 @@ WriteProcessorPwrScheme(UINT ID, { WCHAR Buf[MAX_PATH]; HKEY hKey; - + swprintf(Buf, L"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Controls Folder\\PowerCfg\\ProcessorPolicies\\%i", ID); if (RegCreateKey(HKEY_LOCAL_MACHINE, Buf, &hKey) != ERROR_SUCCESS) @@ -940,7 +940,7 @@ ValidatePowerPolicies(PGLOBAL_POWER_POLICY pGPP, PPOWER_POLICY pPP) SetLastError(ERROR_REVISION_MISMATCH); return FALSE; } - + //Lohnegrim: unneeded //if (pPP->mach.MinSleepAc < PowerSystemWorking) //{ diff --git a/dll/win32/profmap/profmap.c b/dll/win32/profmap/profmap.c index a9a75946a4f..084963d1748 100644 --- a/dll/win32/profmap/profmap.c +++ b/dll/win32/profmap/profmap.c @@ -40,7 +40,7 @@ DllMain(HINSTANCE hinstDll, /* * @unimplemented - * + * * NOTES: * Based on the documentation from: * http://sendmail2.blogspot.com/2012/11/windows-small-business-server-2008_7553.html?view=magazine @@ -58,7 +58,7 @@ RemapAndMoveUserA(IN LPCSTR pComputer, /* * @unimplemented - * + * * NOTES: * Based on the documentation from: * http://sendmail2.blogspot.com/2012/11/windows-small-business-server-2008_7553.html?view=magazine diff --git a/dll/win32/psapi/psapi.c b/dll/win32/psapi/psapi.c index 79eb5610eff..8194571624d 100644 --- a/dll/win32/psapi/psapi.c +++ b/dll/win32/psapi/psapi.c @@ -298,7 +298,7 @@ DllMain(HINSTANCE hDllHandle, { PsStopAndAnalyzeProfile(); } - break; + break; } return TRUE; diff --git a/dll/win32/samsrv/security.c b/dll/win32/samsrv/security.c index 8875b53bbb2..1c83ebac55d 100644 --- a/dll/win32/samsrv/security.c +++ b/dll/win32/samsrv/security.c @@ -102,7 +102,7 @@ SampCreateServerSD(OUT PSECURITY_DESCRIPTOR *ServerSd, goto done; /* allocate and create the DACL */ - DaclSize = sizeof(ACL) + + DaclSize = sizeof(ACL) + 2 * sizeof(ACE) + RtlLengthSid(EveryoneSid) + RtlLengthSid(AdministratorsSid); @@ -150,7 +150,7 @@ SampCreateServerSD(OUT PSECURITY_DESCRIPTOR *ServerSd, goto done; /* allocate and create the SACL */ - SaclSize = sizeof(ACL) + + SaclSize = sizeof(ACL) + 2 * sizeof(ACE) + RtlLengthSid(EveryoneSid) + RtlLengthSid(AnonymousSid); @@ -364,7 +364,7 @@ SampCreateBuiltinDomainSD(OUT PSECURITY_DESCRIPTOR *ServerSd, goto done; /* allocate and create the DACL */ - DaclSize = sizeof(ACL) + + DaclSize = sizeof(ACL) + 2 * sizeof(ACE) + RtlLengthSid(EveryoneSid) + RtlLengthSid(AdministratorsSid); @@ -412,7 +412,7 @@ SampCreateBuiltinDomainSD(OUT PSECURITY_DESCRIPTOR *ServerSd, goto done; /* allocate and create the SACL */ - SaclSize = sizeof(ACL) + + SaclSize = sizeof(ACL) + 2 * sizeof(ACE) + RtlLengthSid(EveryoneSid) + RtlLengthSid(AnonymousSid); @@ -660,7 +660,7 @@ SampCreateAccountDomainSD(OUT PSECURITY_DESCRIPTOR *ServerSd, goto done; /* allocate and create the DACL */ - DaclSize = sizeof(ACL) + + DaclSize = sizeof(ACL) + 4 * sizeof(ACE) + RtlLengthSid(EveryoneSid) + RtlLengthSid(AdministratorsSid) + @@ -726,7 +726,7 @@ SampCreateAccountDomainSD(OUT PSECURITY_DESCRIPTOR *ServerSd, goto done; /* allocate and create the SACL */ - SaclSize = sizeof(ACL) + + SaclSize = sizeof(ACL) + 2 * sizeof(ACE) + RtlLengthSid(EveryoneSid) + RtlLengthSid(AnonymousSid); @@ -956,7 +956,7 @@ SampCreateAliasSD(OUT PSECURITY_DESCRIPTOR *AliasSd, goto done; /* allocate and create the DACL */ - DaclSize = sizeof(ACL) + + DaclSize = sizeof(ACL) + 3 * sizeof(ACE) + RtlLengthSid(EveryoneSid) + RtlLengthSid(AdministratorsSid) + @@ -1013,7 +1013,7 @@ SampCreateAliasSD(OUT PSECURITY_DESCRIPTOR *AliasSd, goto done; /* allocate and create the SACL */ - SaclSize = sizeof(ACL) + + SaclSize = sizeof(ACL) + 2 * sizeof(ACE) + RtlLengthSid(EveryoneSid) + RtlLengthSid(AnonymousSid); @@ -1243,7 +1243,7 @@ SampCreateGroupSD(OUT PSECURITY_DESCRIPTOR *GroupSd, goto done; /* allocate and create the DACL */ - DaclSize = sizeof(ACL) + + DaclSize = sizeof(ACL) + 3 * sizeof(ACE) + RtlLengthSid(EveryoneSid) + RtlLengthSid(AdministratorsSid) + @@ -1300,7 +1300,7 @@ SampCreateGroupSD(OUT PSECURITY_DESCRIPTOR *GroupSd, goto done; /* allocate and create the SACL */ - SaclSize = sizeof(ACL) + + SaclSize = sizeof(ACL) + 2 * sizeof(ACE) + RtlLengthSid(EveryoneSid) + RtlLengthSid(AnonymousSid); @@ -1514,7 +1514,7 @@ SampCreateUserSD(IN PSID UserSid, goto done; /* allocate and create the DACL */ - DaclSize = sizeof(ACL) + + DaclSize = sizeof(ACL) + 3 * sizeof(ACE) + RtlLengthSid(EveryoneSid) + RtlLengthSid(AdministratorsSid) + @@ -1573,7 +1573,7 @@ SampCreateUserSD(IN PSID UserSid, goto done; /* allocate and create the SACL */ - SaclSize = sizeof(ACL) + + SaclSize = sizeof(ACL) + 2 * sizeof(ACE) + RtlLengthSid(EveryoneSid) + RtlLengthSid(AnonymousSid); diff --git a/dll/win32/schannel/schannel_mbedtls_lazyload.h b/dll/win32/schannel/schannel_mbedtls_lazyload.h index bf4201d9f47..833c24d5d82 100644 --- a/dll/win32/schannel/schannel_mbedtls_lazyload.h +++ b/dll/win32/schannel/schannel_mbedtls_lazyload.h @@ -154,7 +154,7 @@ void schan_imp_deinit(void) #define mbedtls_ssl_handshake pmbedtls_ssl_handshake #define mbedtls_ssl_init pmbedtls_ssl_init #define mbedtls_ssl_read pmbedtls_ssl_read -#define mbedtls_ssl_conf_authmode pmbedtls_ssl_conf_authmode +#define mbedtls_ssl_conf_authmode pmbedtls_ssl_conf_authmode #define mbedtls_ssl_set_bio pmbedtls_ssl_set_bio #define mbedtls_ssl_conf_endpoint pmbedtls_ssl_conf_endpoint #define mbedtls_ssl_set_hostname pmbedtls_ssl_set_hostname @@ -168,7 +168,7 @@ void schan_imp_deinit(void) #define mbedtls_ssl_config_defaults pmbedtls_ssl_config_defaults #define mbedtls_ssl_conf_dbg pmbedtls_ssl_conf_dbg #define mbedtls_ssl_setup pmbedtls_ssl_setup -#define mbedtls_cipher_info_from_type pmbedtls_cipher_info_from_type +#define mbedtls_cipher_info_from_type pmbedtls_cipher_info_from_type #define mbedtls_md_info_from_type pmbedtls_md_info_from_type #define mbedtls_pk_get_bitlen pmbedtls_pk_get_bitlen #define mbedtls_ctr_drbg_seed pmbedtls_ctr_drbg_seed \ No newline at end of file diff --git a/dll/win32/setupapi/CMakeLists.txt b/dll/win32/setupapi/CMakeLists.txt index cd9feba4033..e1b473f92c6 100644 --- a/dll/win32/setupapi/CMakeLists.txt +++ b/dll/win32/setupapi/CMakeLists.txt @@ -3,7 +3,7 @@ include_directories( ${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine ${REACTOS_SOURCE_DIR}/sdk/include/reactos/idl ${CMAKE_CURRENT_BINARY_DIR}) - + add_definitions( -D_SETUPAPI_ -D_CFGMGR32_ diff --git a/dll/win32/setupapi/devclass.c b/dll/win32/setupapi/devclass.c index 61aa7eb8329..7f94eebdb94 100644 --- a/dll/win32/setupapi/devclass.c +++ b/dll/win32/setupapi/devclass.c @@ -351,7 +351,7 @@ SetupDiGetClassImageListExA( return ret; } -static BOOL WINAPI +static BOOL WINAPI SETUP_GetClassIconInfo(IN CONST GUID *ClassGuid, OUT PINT OutIndex, OUT LPWSTR *OutDllName) { LPWSTR Buffer = NULL; @@ -1387,7 +1387,7 @@ SetupDiGetClassDevPropertySheetsW( { if (PropPageData.PropertySheetHeader->nPages < PropertySheetHeaderPageListSize) { - PropPageData.PropertySheetHeader->phpage[PropPageData.PropertySheetHeader->nPages] = + PropPageData.PropertySheetHeader->phpage[PropPageData.PropertySheetHeader->nPages] = InstallerPropPageData.DynamicPages[i]; PropPageData.PropertySheetHeader->nPages++; } diff --git a/dll/win32/setupapi/res/Icon_Licence/Tango.txt b/dll/win32/setupapi/res/Icon_Licence/Tango.txt index 8ec7f72dd99..f954016b38f 100644 --- a/dll/win32/setupapi/res/Icon_Licence/Tango.txt +++ b/dll/win32/setupapi/res/Icon_Licence/Tango.txt @@ -1,4 +1,4 @@ -The following icons are the property of the Tango project and are +The following icons are the property of the Tango project and are released under Creative Commons Attribution-ShareAlike 2.5 License. Please see COPYING for details @@ -38,7 +38,7 @@ Please see COPYING for details 502.ico 5012.ico -The following icons are the property of the VMware, Inc and are +The following icons are the property of the VMware, Inc and are released under Creative Commons Attribution-ShareAlike 2.5 License. (http://www.chipx86.com/blog/?p=206) Please see COPYING for details diff --git a/dll/win32/shell32/CDefView.cpp b/dll/win32/shell32/CDefView.cpp index 608738f48e6..0c3f865febc 100644 --- a/dll/win32/shell32/CDefView.cpp +++ b/dll/win32/shell32/CDefView.cpp @@ -419,7 +419,7 @@ CDefView::~CDefView() ::DeleteObject(m_viewinfo_data.hbmBack); m_viewinfo_data.hbmBack = NULL; } - + if (m_hWnd) { DestroyViewWindow(); @@ -1309,10 +1309,10 @@ HRESULT CDefView::FillArrangeAsMenu(HMENU hmenuArrange) } /* Also check the menu item according to which we sort */ - CheckMenuRadioItem(hmenuArrange, - 0x30, - 0x100, - m_sortInfo.nHeaderID + 0x30, + CheckMenuRadioItem(hmenuArrange, + 0x30, + 0x100, + m_sortInfo.nHeaderID + 0x30, MF_BYCOMMAND); if (m_FolderSettings.ViewMode == FVM_DETAILS || m_FolderSettings.ViewMode == FVM_LIST) @@ -1429,7 +1429,7 @@ HRESULT CDefView::OpenSelectedItems() return hResult; hMenu = CreatePopupMenu(); - if (!hMenu) + if (!hMenu) return E_FAIL; hResult = GetItemObject(SVGIO_SELECTION, IID_PPV_ARG(IContextMenu, &m_pCM)); @@ -1450,7 +1450,7 @@ HRESULT CDefView::OpenSelectedItems() InvokeContextMenuCommand(uCommand); cleanup: - + if (hMenu) DestroyMenu(hMenu); @@ -1475,7 +1475,7 @@ LRESULT CDefView::OnContextMenu(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL &b TRACE("(%p)\n", this); m_hContextMenu = CreatePopupMenu(); - if (!m_hContextMenu) + if (!m_hContextMenu) return E_FAIL; if (lParam != ~0) // unless app key (menu key) was pressed @@ -1537,7 +1537,7 @@ LRESULT CDefView::OnContextMenu(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL &b /* We have to drop it somewhere.. */ pt.x = pt.y = 0; } - + m_ListView.ClientToScreen(&pt); x = pt.x; y = pt.y; @@ -1576,7 +1576,7 @@ LRESULT CDefView::OnExplorerCommand(UINT uCommand, BOOL bUseSelection) HMENU hMenu; hMenu = CreatePopupMenu(); - if (!hMenu) + if (!hMenu) return 0; hResult = GetItemObject( bUseSelection ? SVGIO_SELECTION : SVGIO_BACKGROUND, IID_PPV_ARG(IContextMenu, &m_pCM)); @@ -1759,7 +1759,7 @@ LRESULT CDefView::OnCommand(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL &bHand DWORD dwCmdID; DWORD dwCmd; HWND hwndCmd; - int nCount; + int nCount; dwCmdID = GET_WM_COMMAND_ID(wParam, lParam); dwCmd = GET_WM_COMMAND_CMD(wParam, lParam); @@ -2050,7 +2050,7 @@ LRESULT CDefView::OnNotify(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL &bHandl { dwEffect |= dwAttributes & (SFGAO_CANCOPY | SFGAO_CANLINK); } - + CComPtr piaso; if (SUCCEEDED(pda->QueryInterface(IID_PPV_ARG(IAsyncOperation, &piaso)))) { @@ -2280,7 +2280,7 @@ LRESULT CDefView::OnCustomItem(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL &bH return FALSE; } - /* The lParam of WM_DRAWITEM WM_MEASUREITEM contain a menu id and this also needs to + /* The lParam of WM_DRAWITEM WM_MEASUREITEM contain a menu id and this also needs to be changed to a menu identifier offset */ UINT CmdID; HRESULT hres = SHGetMenuIdFromMenuMsg(uMsg, lParam, &CmdID); @@ -2775,7 +2775,7 @@ HRESULT STDMETHODCALLTYPE CDefView::GetSpacing(POINT *ppt) { TRACE("(%p)->(%p)\n", this, ppt); - if (!m_ListView) + if (!m_ListView) return S_FALSE; if (ppt) @@ -2882,7 +2882,7 @@ HRESULT STDMETHODCALLTYPE CDefView::CreateViewWindow3(IShellBrowser *psb, IShell TRACE("(%p)->(shlview=%p shlbrs=%p rec=%p hwnd=%p vmode=%x flags=%x)\n", this, psvPrevious, psb, prcView, hwnd, mode, flags); if (prcView != NULL) TRACE("-- left=%i top=%i right=%i bottom=%i\n", prcView->left, prcView->top, prcView->right, prcView->bottom); - + /* Validate the Shell Browser */ if (psb == NULL || m_hWnd) return E_UNEXPECTED; @@ -3076,7 +3076,7 @@ HRESULT STDMETHODCALLTYPE CDefView::GetSelectedObjects(PCUITEMID_CHILD **pidl, U { return E_OUTOFMEMORY; } - + /* it's documented that caller shouldn't PIDLs, only array itself */ memcpy(*pidl, m_apidl, *items * sizeof(PCUITEMID_CHILD)); } @@ -3086,7 +3086,7 @@ HRESULT STDMETHODCALLTYPE CDefView::GetSelectedObjects(PCUITEMID_CHILD **pidl, U HRESULT STDMETHODCALLTYPE CDefView::IsDropOnSource(IDropTarget *drop_target) { - if ((m_iDragOverItem == -1 || m_pCurDropTarget == NULL) && + if ((m_iDragOverItem == -1 || m_pCurDropTarget == NULL) && (m_pSourceDataObject.p)) { return S_OK; @@ -3172,7 +3172,7 @@ HRESULT STDMETHODCALLTYPE CDefView::SetAutomationObject(IDispatch *disp) FIXME("(%p)->(%p) stub\n", this, disp); return E_NOTIMPL; } - + /********************************************************** * ISVOleCmdTarget_QueryStatus (IOleCommandTarget) */ @@ -3384,7 +3384,7 @@ HRESULT WINAPI CDefView::DragEnter(IDataObject *pDataObject, DWORD grfKeyState, /* Get a hold on the data object for later calls to DragEnter on the sub-folders */ m_pCurDataObject = pDataObject; - HRESULT hr = drag_notify_subitem(grfKeyState, pt, pdwEffect); + HRESULT hr = drag_notify_subitem(grfKeyState, pt, pdwEffect); if (SUCCEEDED(hr)) { POINT ptClient = {pt.x, pt.y}; @@ -3572,8 +3572,8 @@ HRESULT WINAPI CDefView::Drop(IDataObject* pDataObject, DWORD grfKeyState, POINT ImageList_DragLeave(m_hWnd); ImageList_EndDrag(); - if ((IsDropOnSource(NULL) == S_OK) && - (*pdwEffect & DROPEFFECT_MOVE) && + if ((IsDropOnSource(NULL) == S_OK) && + (*pdwEffect & DROPEFFECT_MOVE) && (m_grfKeyState & MK_LBUTTON)) { if (m_pCurDropTarget) @@ -3614,7 +3614,7 @@ HRESULT WINAPI CDefView::Drop(IDataObject* pDataObject, DWORD grfKeyState, POINT m_pCurDropTarget.Release(); } - m_pCurDataObject.Release(); + m_pCurDataObject.Release(); m_iDragOverItem = 0; return S_OK; } diff --git a/dll/win32/shell32/CDefViewBckgrndMenu.cpp b/dll/win32/shell32/CDefViewBckgrndMenu.cpp index 7d3e67a92f9..70abed2e754 100644 --- a/dll/win32/shell32/CDefViewBckgrndMenu.cpp +++ b/dll/win32/shell32/CDefViewBckgrndMenu.cpp @@ -133,8 +133,8 @@ CDefViewBckgrndMenu::SetSite(IUnknown *pUnkSite) return S_OK; } -HRESULT -WINAPI +HRESULT +WINAPI CDefViewBckgrndMenu::GetSite(REFIID riid, void **ppvSite) { if (!m_site) @@ -152,12 +152,12 @@ CDefViewBckgrndMenu::QueryContextMenu(HMENU hMenu, UINT indexMenu, UINT idCmdFir UINT cIds = 0; /* This is something the implementations of IContextMenu should never really do. - However CDefViewBckgrndMenu is more or less an overengineering result, its code could really be part of the + However CDefViewBckgrndMenu is more or less an overengineering result, its code could really be part of the CDefView. Given this, I think that abusing the interface here is not that bad since only CDefView is the ony - user of this class. Here we need to do two things to keep things as simple as possible. + user of this class. Here we need to do two things to keep things as simple as possible. First we want the menu part added by the shell folder to be the first to add so as to make as few id translations - as possible. Second, we want to add the default part of the background menu without shifted ids, so as - to let the CDefView fill some parts like filling the arrange modes or checking the view mode. In order + as possible. Second, we want to add the default part of the background menu without shifted ids, so as + to let the CDefView fill some parts like filling the arrange modes or checking the view mode. In order for that to work we need to save idCmdFirst because our caller will pass id offsets to InvokeCommand. This makes it impossible to concatenate the CDefViewBckgrndMenu with other menus since it abuses IContextMenu but as stated above, its sole user is CDefView and should really be that way. */ diff --git a/dll/win32/shell32/CDefaultContextMenu.cpp b/dll/win32/shell32/CDefaultContextMenu.cpp index d6b0d98d7a8..dde98873390 100644 --- a/dll/win32/shell32/CDefaultContextMenu.cpp +++ b/dll/win32/shell32/CDefaultContextMenu.cpp @@ -505,7 +505,7 @@ UINT CDefaultContextMenu::AddStaticContextMenusToMenu( HMENU hMenu, UINT* pIndexMenu, - UINT iIdCmdFirst, + UINT iIdCmdFirst, UINT iIdCmdLast) { MENUITEMINFOW mii; diff --git a/dll/win32/shell32/CFolderOptions.h b/dll/win32/shell32/CFolderOptions.h index cba4ee07832..ac2d0b05d89 100644 --- a/dll/win32/shell32/CFolderOptions.h +++ b/dll/win32/shell32/CFolderOptions.h @@ -45,7 +45,7 @@ class CFolderOptions : // IShellPropSheetExt virtual HRESULT STDMETHODCALLTYPE AddPages(LPFNSVADDPROPSHEETPAGE pfnAddPage, LPARAM lParam); virtual HRESULT STDMETHODCALLTYPE ReplacePage(EXPPS uPageID, LPFNSVADDPROPSHEETPAGE pfnReplaceWith, LPARAM lParam); - + // IShellExtInit virtual HRESULT STDMETHODCALLTYPE Initialize(PCIDLIST_ABSOLUTE pidlFolder, IDataObject *pdtobj, HKEY hkeyProgID); diff --git a/dll/win32/shell32/CIDLDataObj.cpp b/dll/win32/shell32/CIDLDataObj.cpp index f3366d89a1d..0559402cc6d 100644 --- a/dll/win32/shell32/CIDLDataObj.cpp +++ b/dll/win32/shell32/CIDLDataObj.cpp @@ -133,7 +133,7 @@ HRESULT IEnumFORMATETC_Constructor(UINT cfmt, const FORMATETC afmt[], IEnumFORMA class CIDLDataObj : public CComObjectRootEx, public IDataObject, - public IAsyncOperation + public IAsyncOperation { private: CSimpleArray m_Formats; @@ -355,7 +355,7 @@ HRESULT WINAPI CIDLDataObj::InOperation(BOOL *pfInAsyncOp) FIXME("(%p)->()\n", this); return E_NOTIMPL; } -HRESULT WINAPI CIDLDataObj::SetAsyncMode(BOOL fDoOpAsync) +HRESULT WINAPI CIDLDataObj::SetAsyncMode(BOOL fDoOpAsync) { TRACE("(%p)->()\n", this); m_doasync = fDoOpAsync; diff --git a/dll/win32/shell32/CQueryAssociations.cpp b/dll/win32/shell32/CQueryAssociations.cpp index 0593e277c0a..a11a79a65fd 100644 --- a/dll/win32/shell32/CQueryAssociations.cpp +++ b/dll/win32/shell32/CQueryAssociations.cpp @@ -80,17 +80,17 @@ HRESULT STDMETHODCALLTYPE CQueryAssociations::Init( debugstr_w(pszAssoc), hkeyProgid, hWnd); - + if (hWnd != NULL) { FIXME("hwnd != NULL not supported\n"); } - + if (cfFlags != 0) { FIXME("unsupported flags: %x\n", cfFlags); } - + RegCloseKey(this->hkeySource); RegCloseKey(this->hkeyProgID); this->hkeySource = this->hkeyProgID = NULL; @@ -98,7 +98,7 @@ HRESULT STDMETHODCALLTYPE CQueryAssociations::Init( { WCHAR *progId; HRESULT hr; - + LONG ret = RegOpenKeyExW(HKEY_CLASSES_ROOT, pszAssoc, 0, @@ -108,7 +108,7 @@ HRESULT STDMETHODCALLTYPE CQueryAssociations::Init( { return S_OK; } - + /* if this is a progid */ if (*pszAssoc != '.' && *pszAssoc != '{') { @@ -195,12 +195,12 @@ HRESULT STDMETHODCALLTYPE CQueryAssociations::GetString( { FIXME("%08x: unimplemented flags\n", flags & unimplemented_flags); } - + if (!pcchOut) { return E_UNEXPECTED; } - + if (!this->hkeySource && !this->hkeyProgID) { return HRESULT_FROM_WIN32(ERROR_NO_ASSOCIATION); @@ -395,7 +395,7 @@ HRESULT STDMETHODCALLTYPE CQueryAssociations::GetString( hr = CLSIDFromString(pszExtra, &clsid); if (FAILED(hr)) - { + { return hr; } strcpyW(keypath, shellexW); @@ -414,7 +414,7 @@ HRESULT STDMETHODCALLTYPE CQueryAssociations::GetString( } return this->ReturnString(flags, pszOut, pcchOut, guid, size / sizeof(WCHAR)); } - + default: { FIXME("assocstr %d unimplemented!\n", str); @@ -476,8 +476,8 @@ HRESULT STDMETHODCALLTYPE CQueryAssociations::GetData(ASSOCF cfFlags, ASSOCDATA { FIXME("Unsupported flags: %x\n", cfFlags); } - - switch(assocdata) + + switch(assocdata) { case ASSOCDATA_EDITFLAGS: { @@ -485,7 +485,7 @@ HRESULT STDMETHODCALLTYPE CQueryAssociations::GetData(ASSOCF cfFlags, ASSOCDATA { return HRESULT_FROM_WIN32(ERROR_NO_ASSOCIATION); } - + void *data; DWORD size; HRESULT hres = this->GetValue(this->hkeyProgID, edit_flags, &data, &size); @@ -493,13 +493,13 @@ HRESULT STDMETHODCALLTYPE CQueryAssociations::GetData(ASSOCF cfFlags, ASSOCDATA { return hres; } - + if (!pcbOut) { HeapFree(GetProcessHeap(), 0, data); return hres; } - + hres = this->ReturnData(pvOut, pcbOut, data, size); HeapFree(GetProcessHeap(), 0, data); return hres; @@ -609,12 +609,12 @@ HRESULT CQueryAssociations::GetCommand(const WCHAR *extra, WCHAR **command) { ret = RegOpenKeyExW(this->hkeySource, shellW, 0, KEY_READ, &hkeyShell); } - + if (ret) - { + { return HRESULT_FROM_WIN32(ret); } - + if (!extra) { /* check for default verb */ @@ -654,7 +654,7 @@ HRESULT CQueryAssociations::GetCommand(const WCHAR *extra, WCHAR **command) ret = RegOpenKeyExW(hkeyShell, extra, 0, KEY_READ, &hkeyVerb); HeapFree(GetProcessHeap(), 0, extra_from_reg); RegCloseKey(hkeyShell); - if (ret) + if (ret) { return HRESULT_FROM_WIN32(ret); } @@ -662,7 +662,7 @@ HRESULT CQueryAssociations::GetCommand(const WCHAR *extra, WCHAR **command) ret = RegOpenKeyExW(hkeyVerb, commandW, 0, KEY_READ, &hkeyCommand); RegCloseKey(hkeyVerb); if (ret) - { + { return HRESULT_FROM_WIN32(ret); } hr = this->GetValue(hkeyCommand, NULL, (void**)command, NULL); @@ -681,7 +681,7 @@ HRESULT CQueryAssociations::GetExecutable(LPCWSTR pszExtra, LPWSTR path, DWORD p { return hr; } - + DWORD expLen = ExpandEnvironmentStringsW(pszCommand, NULL, 0); if (expLen > 0) { @@ -691,7 +691,7 @@ HRESULT CQueryAssociations::GetExecutable(LPCWSTR pszExtra, LPWSTR path, DWORD p HeapFree(GetProcessHeap(), 0, pszCommand); pszCommand = buf; } - + /* cleanup pszCommand */ if (pszCommand[0] == '"') { @@ -782,11 +782,11 @@ HRESULT CQueryAssociations::ReturnString(ASSOCF flags, LPWSTR out, DWORD *outlen { len = datalen; } - + if (len) { memcpy(out, data, len*sizeof(WCHAR)); } - + return hr; } \ No newline at end of file diff --git a/dll/win32/shell32/CQueryAssociations.h b/dll/win32/shell32/CQueryAssociations.h index 630d6891e39..f877ca4ddca 100644 --- a/dll/win32/shell32/CQueryAssociations.h +++ b/dll/win32/shell32/CQueryAssociations.h @@ -14,18 +14,18 @@ private: HRESULT GetExecutable(LPCWSTR pszExtra, LPWSTR path, DWORD pathlen, DWORD *len); HRESULT ReturnData(void *out, DWORD *outlen, const void *data, DWORD datalen); HRESULT ReturnString(ASSOCF flags, LPWSTR out, DWORD *outlen, LPCWSTR data, DWORD datalen); - + public: CQueryAssociations(); ~CQueryAssociations(); - + // *** IQueryAssociations methods *** virtual HRESULT STDMETHODCALLTYPE Init(ASSOCF flags, LPCWSTR pwszAssoc, HKEY hkProgid, HWND hwnd); virtual HRESULT STDMETHODCALLTYPE GetString(ASSOCF flags, ASSOCSTR str, LPCWSTR pwszExtra, LPWSTR pwszOut, DWORD *pcchOut); virtual HRESULT STDMETHODCALLTYPE GetKey(ASSOCF flags, ASSOCKEY key, LPCWSTR pwszExtra, HKEY *phkeyOut); virtual HRESULT STDMETHODCALLTYPE GetData(ASSOCF flags, ASSOCDATA data, LPCWSTR pwszExtra, void *pvOut, DWORD *pcbOut); virtual HRESULT STDMETHODCALLTYPE GetEnum(ASSOCF cfFlags, ASSOCENUM assocenum, LPCWSTR pszExtra, REFIID riid, LPVOID *ppvOut); - + DECLARE_REGISTRY_RESOURCEID(IDR_QUERYASSOCIATIONS) DECLARE_NOT_AGGREGATABLE(CQueryAssociations) DECLARE_PROTECT_FINAL_CONSTRUCT() diff --git a/dll/win32/shell32/dialogs/dialogs.cpp b/dll/win32/shell32/dialogs/dialogs.cpp index 475f5e8fa58..832e32c8a96 100644 --- a/dll/win32/shell32/dialogs/dialogs.cpp +++ b/dll/win32/shell32/dialogs/dialogs.cpp @@ -1149,7 +1149,7 @@ BOOL DrawIconOnOwnerDrawnButtons(DRAWITEMSTRUCT* pdis, PLOGOFF_DLG_CONTEXT pCont case ODA_DRAWENTIRE: case ODA_FOCUS: case ODA_SELECT: - { + { y = BUTTON_LOG_OFF; if (pdis->itemState & ODS_SELECTED) { @@ -1172,7 +1172,7 @@ BOOL DrawIconOnOwnerDrawnButtons(DRAWITEMSTRUCT* pdis, PLOGOFF_DLG_CONTEXT pCont case ODA_DRAWENTIRE: case ODA_FOCUS: case ODA_SELECT: - { + { y = BUTTON_SWITCH_USER; if (pdis->itemState & ODS_SELECTED) { @@ -1201,7 +1201,7 @@ BOOL DrawIconOnOwnerDrawnButtons(DRAWITEMSTRUCT* pdis, PLOGOFF_DLG_CONTEXT pCont /* Draw it on the required button */ bRet = BitBlt(pdis->hDC, (rect.right - rect.left - CX_BITMAP) / 2, - (rect.bottom - rect.top - CY_BITMAP) / 2, + (rect.bottom - rect.top - CY_BITMAP) / 2, CX_BITMAP, CY_BITMAP, hdcMem, 0, y, SRCCOPY); SelectObject(hdcMem, hbmOld); @@ -1480,7 +1480,7 @@ INT_PTR CALLBACK LogOffDialogProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lP case WM_CTLCOLORSTATIC: { /* Either make background transparent or fill it with color for required static controls */ - HDC hdcStatic = (HDC)wParam; + HDC hdcStatic = (HDC)wParam; UINT StaticID = (UINT)GetWindowLongPtrW((HWND)lParam, GWL_ID); switch (StaticID) diff --git a/dll/win32/shell32/dialogs/drive.cpp b/dll/win32/shell32/dialogs/drive.cpp index 0cb1051e49a..be1c8c8b109 100644 --- a/dll/win32/shell32/dialogs/drive.cpp +++ b/dll/win32/shell32/dialogs/drive.cpp @@ -191,7 +191,7 @@ SH_ShowDriveProperties(WCHAR *pwszDrive, LPCITEMIDLIST pidlFolder, PCUITEMID_CHI psh.pszCaption = wszName; psh.dwFlags |= PSH_PROPTITLE; } - + ILFree(completePidl); CComPtr pDataObj; diff --git a/dll/win32/shell32/dialogs/drvdefext.cpp b/dll/win32/shell32/dialogs/drvdefext.cpp index 82e8764e835..94be4ebc13f 100644 --- a/dll/win32/shell32/dialogs/drvdefext.cpp +++ b/dll/win32/shell32/dialogs/drvdefext.cpp @@ -266,7 +266,7 @@ CDrvDefExt::PaintStaticControls(HWND hwndDlg, LPDRAWITEMSTRUCT pDrawItem) pDrawItem->rcItem.right, pDrawItem->rcItem.bottom - 10); SelectObject(pDrawItem->hDC, hMagBrush); - + if (m_FreeSpacePerc > 0) { Pie(pDrawItem->hDC, pDrawItem->rcItem.left, pDrawItem->rcItem.top, pDrawItem->rcItem.right, @@ -419,14 +419,14 @@ CDrvDefExt::InitGeneralPage(HWND hwndDlg) { /* volume label textbox */ SendMessage(GetDlgItem(hwndDlg, 14000), EM_SETREADONLY, TRUE, 0); - + /* disk compression */ ShowWindow(GetDlgItem(hwndDlg, 14011), FALSE); /* index */ ShowWindow(GetDlgItem(hwndDlg, 14012), FALSE); } - + HICON hIcon = (HICON)LoadImage(shell32_hInstance, MAKEINTRESOURCE(IconId), IMAGE_ICON, 32, 32, LR_SHARED); if (hIcon) SendDlgItemMessageW(hwndDlg, 14016, STM_SETICON, (WPARAM)hIcon, 0); @@ -483,7 +483,7 @@ CDrvDefExt::InitGeneralPage(HWND hwndDlg) GetDlgItemTextW(hwndDlg, 14009, wszFormat, _countof(wszFormat)); swprintf(wszBuf, wszFormat, m_wszDrive[0]); SetDlgItemTextW(hwndDlg, 14009, wszBuf); - + /* show disk cleanup button only for fixed drives */ ShowWindow(GetDlgItem(hwndDlg, 14010), DriveType == DRIVE_FIXED); } diff --git a/dll/win32/shell32/dialogs/filedefext.cpp b/dll/win32/shell32/dialogs/filedefext.cpp index edcb44ff1b4..d9f0c0e6aee 100644 --- a/dll/win32/shell32/dialogs/filedefext.cpp +++ b/dll/win32/shell32/dialogs/filedefext.cpp @@ -37,7 +37,7 @@ BOOL GetPhysicalFileSize(LPCWSTR PathBuffer, PULARGE_INTEGER Size) HANDLE FileHandle; FILE_STANDARD_INFORMATION FileInfo; NTSTATUS Status; - + if (!RtlDosPathNameToNtPathName_U(PathBuffer, &FileName, NULL, NULL)) { ERR("RtlDosPathNameToNtPathName_U failed\n"); @@ -74,7 +74,7 @@ BOOL GetPhysicalFileSize(LPCWSTR PathBuffer, PULARGE_INTEGER Size) ERR("NtQueryInformationFile failed for %S (Status: %08lX)\n", PathBuffer, Status); return FALSE; } - + Size->QuadPart = FileInfo.AllocationSize.QuadPart; return TRUE; } @@ -608,7 +608,7 @@ CFileDefExt::InitFileAttr(HWND hwndDlg) if (SH_FormatFileSizeWithBytes(&FileSize, wszBuf, _countof(wszBuf))) { SetDlgItemTextW(hwndDlg, 14011, wszBuf); - + // Compute file on disk. If fails, use logical size if (GetPhysicalFileSize(m_wszPath, &FileSize)) SH_FormatFileSizeWithBytes(&FileSize, wszBuf, _countof(wszBuf)); diff --git a/dll/win32/shell32/dialogs/filedefext.h b/dll/win32/shell32/dialogs/filedefext.h index e093bec7689..58585d45423 100644 --- a/dll/win32/shell32/dialogs/filedefext.h +++ b/dll/win32/shell32/dialogs/filedefext.h @@ -27,7 +27,7 @@ class CFileVersionInfo PVOID m_pInfo; WORD m_wLang, m_wCode; WCHAR m_wszLang[64]; - + typedef struct _LANGANDCODEPAGE_ { WORD wLang; diff --git a/dll/win32/shell32/dialogs/general.cpp b/dll/win32/shell32/dialogs/general.cpp index 5d85f08bf5c..9102c96f43b 100644 --- a/dll/win32/shell32/dialogs/general.cpp +++ b/dll/win32/shell32/dialogs/general.cpp @@ -31,7 +31,7 @@ typedef struct REGSHELLSTATE #define REGSHELLSTATE_SIZE 0x24 -static const LPCWSTR s_pszExplorerKey = +static const LPCWSTR s_pszExplorerKey = L"Software\\Microsoft\\Windows\\CurrentVersion\\Explorer"; extern "C" @@ -48,7 +48,7 @@ IntGetDefaultShellState(REGSHELLSTATE& rss) rss.ss.fShowAllObjects = TRUE; rss.ss.fShowExtensions = TRUE; - + rss.ss.fShowCompColor = TRUE; rss.ss.fDoubleClickInWebView = TRUE; rss.ss.fShowInfoTip = TRUE; @@ -74,7 +74,7 @@ IntSetShellStateSettings(BOOL bDoubleClick, BOOL bUseCommonTasks) LSTATUS nStatus; // read ShellState - nStatus = SHGetValueW(HKEY_CURRENT_USER, + nStatus = SHGetValueW(HKEY_CURRENT_USER, s_pszExplorerKey, L"ShellState", NULL, @@ -141,7 +141,7 @@ static BOOL IntSetUnderlineState(BOOL bIconUnderline) { LSTATUS Status; DWORD dwValue = (bIconUnderline ? 3 : 2), dwSize = sizeof(DWORD); - Status = SHRegSetUSValue(s_pszExplorerKey, L"IconUnderline", REG_NONE, + Status = SHRegSetUSValue(s_pszExplorerKey, L"IconUnderline", REG_NONE, &dwValue, dwSize, SHREGSET_FORCE_HKCU | SHREGSET_HKLM); if (Status != ERROR_SUCCESS) return FALSE; diff --git a/dll/win32/shell32/droptargets/CFSDropTarget.cpp b/dll/win32/shell32/droptargets/CFSDropTarget.cpp index 4fb1657da78..a25936f2ae9 100644 --- a/dll/win32/shell32/droptargets/CFSDropTarget.cpp +++ b/dll/win32/shell32/droptargets/CFSDropTarget.cpp @@ -163,7 +163,7 @@ CFSDropTarget::_GetUniqueFileName(LPWSTR pwszBasePath, LPCWSTR pwszExt, LPWSTR p */ BOOL CFSDropTarget::_QueryDrop(DWORD dwKeyState, LPDWORD pdwEffect) { - /* TODO Windows does different drop effects if dragging across drives. + /* TODO Windows does different drop effects if dragging across drives. i.e., it will copy instead of move if the directories are on different disks. */ DWORD dwEffect = m_dwDefaultEffect; @@ -172,7 +172,7 @@ BOOL CFSDropTarget::_QueryDrop(DWORD dwKeyState, LPDWORD pdwEffect) if (m_fAcceptFmt) { /* Does our interpretation of the keystate ... */ *pdwEffect = KeyStateToDropEffect (dwKeyState); - + if (*pdwEffect == DROPEFFECT_NONE) *pdwEffect = dwEffect; @@ -389,7 +389,7 @@ HRESULT WINAPI CFSDropTarget::Drop(IDataObject *pDataObject, DWORD dwKeyState, POINTL pt, DWORD *pdwEffect) { TRACE("(%p) object dropped, effect %u\n", this, *pdwEffect); - + if (!pdwEffect) return E_INVALIDARG; @@ -532,7 +532,7 @@ HRESULT CFSDropTarget::_DoDrop(IDataObject *pDataObject, /* use desktop shell folder */ psfFrom = psfDesktop; } - else + else { hr = psfDesktop->BindToObject(pidl, NULL, IID_PPV_ARG(IShellFolder, &psfFrom)); if (FAILED(hr)) @@ -561,14 +561,14 @@ HRESULT CFSDropTarget::_DoDrop(IDataObject *pDataObject, //Find out which file we're copying STRRET strFile; hr = psfFrom->GetDisplayNameOf(apidl[i], SHGDN_FORPARSING, &strFile); - if (FAILED(hr)) + if (FAILED(hr)) { ERR("Error source obtaining path"); break; } hr = StrRetToBufW(&strFile, apidl[i], wszPath, _countof(wszPath)); - if (FAILED(hr)) + if (FAILED(hr)) { ERR("Error putting source path into buffer"); break; @@ -585,11 +585,11 @@ HRESULT CFSDropTarget::_DoDrop(IDataObject *pDataObject, LPWSTR placementPath = PathCombineW(lpStr1, m_sPathTarget, pwszFileName); CComPtr ppf; - //Check to see if it's already a link. + //Check to see if it's already a link. if (!wcsicmp(pwszExt, L".lnk")) { //It's a link so, we create a new one which copies the old. - if(!_GetUniqueFileName(placementPath, pwszExt, wszTarget, TRUE)) + if(!_GetUniqueFileName(placementPath, pwszExt, wszTarget, TRUE)) { ERR("Error getting unique file name"); hr = E_FAIL; @@ -647,7 +647,7 @@ HRESULT CFSDropTarget::_DoDrop(IDataObject *pDataObject, } } } - else + else { hr = _CopyItems(psfFrom, lpcida->cidl, (LPCITEMIDLIST*)apidl, bCopy); } @@ -668,7 +668,7 @@ HRESULT CFSDropTarget::_DoDrop(IDataObject *pDataObject, wcscpy(wszTargetPath, m_sPathTarget); //Double NULL terminate. wszTargetPath[wcslen(wszTargetPath) + 1] = '\0'; - + LPDROPFILES lpdf = (LPDROPFILES) GlobalLock(medium.hGlobal); if (!lpdf) { @@ -691,17 +691,17 @@ HRESULT CFSDropTarget::_DoDrop(IDataObject *pDataObject, ERR("SHFileOperationW failed with 0x%x\n", res); hr = E_FAIL; } - + return hr; } ERR("Error calling GetData\n"); hr = E_FAIL; } - else + else { ERR("No viable drop format.\n"); hr = E_FAIL; - } + } return hr; } diff --git a/dll/win32/shell32/droptargets/CFSDropTarget.h b/dll/win32/shell32/droptargets/CFSDropTarget.h index c808c6f59d4..3da45bae68d 100644 --- a/dll/win32/shell32/droptargets/CFSDropTarget.h +++ b/dll/win32/shell32/droptargets/CFSDropTarget.h @@ -75,7 +75,7 @@ struct _DoDropData { CFSDropTarget *This; IStream *pStream; DWORD dwKeyState; - POINTL pt; + POINTL pt; DWORD pdwEffect; }; diff --git a/dll/win32/shell32/droptargets/CexeDropHandler.cpp b/dll/win32/shell32/droptargets/CexeDropHandler.cpp index 0d0d86ea8a0..2b8a915ff5a 100644 --- a/dll/win32/shell32/droptargets/CexeDropHandler.cpp +++ b/dll/win32/shell32/droptargets/CexeDropHandler.cpp @@ -58,7 +58,7 @@ HRESULT WINAPI CExeDropHandler::DragLeave() HRESULT WINAPI CExeDropHandler::Drop(IDataObject *pDataObject, DWORD dwKeyState, POINTL pt, DWORD *pdwEffect) { - TRACE ("(%p)\n", this); + TRACE ("(%p)\n", this); FORMATETC fmt; STGMEDIUM medium; LPWSTR pszSrcList; @@ -81,7 +81,7 @@ HRESULT WINAPI CExeDropHandler::Drop(IDataObject *pDataObject, DWORD dwKeyState, StringCchPrintfExW(pszEnd, cchRemaining, &pszEnd, &cchRemaining, 0, L"\"%ls\" ", pszSrcList); else StringCchPrintfExW(pszEnd, cchRemaining, &pszEnd, &cchRemaining, 0, L"%ls ", pszSrcList); - + pszSrcList += wcslen(pszSrcList) + 1; } } diff --git a/dll/win32/shell32/folders/CAdminToolsFolder.cpp b/dll/win32/shell32/folders/CAdminToolsFolder.cpp index 25ecc244e1f..981d4086ea0 100644 --- a/dll/win32/shell32/folders/CAdminToolsFolder.cpp +++ b/dll/win32/shell32/folders/CAdminToolsFolder.cpp @@ -68,9 +68,9 @@ HRESULT WINAPI CAdminToolsFolder::CreateViewObject(HWND hwndOwner, REFIID riid, HRESULT WINAPI CAdminToolsFolder::GetAttributesOf(UINT cidl, PCUITEMID_CHILD_ARRAY apidl, DWORD *rgfInOut) { static const DWORD dwAdminToolsAttributes = - SFGAO_STORAGE | SFGAO_STORAGEANCESTOR | SFGAO_FILESYSANCESTOR | + SFGAO_STORAGE | SFGAO_STORAGEANCESTOR | SFGAO_FILESYSANCESTOR | SFGAO_FOLDER | SFGAO_FILESYSTEM | SFGAO_HASSUBFOLDER; - + if(cidl) return m_pisfInner->GetAttributesOf(cidl, apidl, rgfInOut); @@ -174,7 +174,7 @@ HRESULT WINAPI CAdminToolsFolder::Initialize(PCIDLIST_ABSOLUTE pidl) if (!m_pidlInner) return E_OUTOFMEMORY; - return SHELL32_CoCreateInitSF(m_pidlInner, + return SHELL32_CoCreateInitSF(m_pidlInner, &CLSID_ShellFSFolder, CSIDL_COMMON_ADMINTOOLS, IID_PPV_ARG(IShellFolder2, &m_pisfInner)); diff --git a/dll/win32/shell32/folders/CControlPanelFolder.cpp b/dll/win32/shell32/folders/CControlPanelFolder.cpp index 84e2abe69f7..10cac48ac82 100644 --- a/dll/win32/shell32/folders/CControlPanelFolder.cpp +++ b/dll/win32/shell32/folders/CControlPanelFolder.cpp @@ -155,9 +155,9 @@ BOOL CControlPanelEnum::RegisterCPanelApp(LPCWSTR wpath) else iconIdx = 0; - LPITEMIDLIST pidl = _ILCreateCPanelApplet(wpath, - applet->info[i].name, - applet->info[i].info, + LPITEMIDLIST pidl = _ILCreateCPanelApplet(wpath, + applet->info[i].name, + applet->info[i].info, iconIdx); if (pidl) @@ -328,7 +328,7 @@ HRESULT WINAPI CControlPanelFolder::CompareIDs(LPARAM lParam, PCUIDLIST_RELATIVE return E_INVALIDARG; int result; - switch(LOWORD(lParam)) + switch(LOWORD(lParam)) { case 0: /* name */ result = wcsicmp(pData1->szName + pData1->offsDispName, pData2->szName + pData2->offsDispName); @@ -443,7 +443,7 @@ HRESULT WINAPI CControlPanelFolder::GetUIObjectOf(HWND hwndOwner, *ppvOut = NULL; if (IsEqualIID(riid, IID_IContextMenu) && (cidl >= 1)) { - + /* HACK: We should use callbacks from CDefaultContextMenu instead of creating one on our own */ BOOL bHasCpl = FALSE; for (UINT i = 0; i < cidl; i++) @@ -560,7 +560,7 @@ HRESULT WINAPI CControlPanelFolder::GetDetailsOf(PCUITEMID_CHILD pidl, UINT iCol if (!psd || iColumn >= CONROLPANELSHELLVIEWCOLUMNS) return E_INVALIDARG; - if (!pidl) + if (!pidl) { psd->fmt = ControlPanelSFHeader[iColumn].fmt; psd->cxChar = ControlPanelSFHeader[iColumn].cxChar; @@ -570,14 +570,14 @@ HRESULT WINAPI CControlPanelFolder::GetDetailsOf(PCUITEMID_CHILD pidl, UINT iCol { return m_regFolder->GetDetailsOf(pidl, iColumn, psd); } - else + else { PIDLCPanelStruct *pCPanel = _ILGetCPanelPointer(pidl); if (!pCPanel) return E_FAIL; - switch(iColumn) + switch(iColumn) { case 0: /* name */ return SHSetStrRet(&psd->str, pCPanel->szName + pCPanel->offsDispName); @@ -626,7 +626,7 @@ HRESULT WINAPI CControlPanelFolder::Initialize(PCIDLIST_ABSOLUTE pidl) static const WCHAR* pszCPanelPath = L"::{20D04FE0-3AEA-1069-A2D8-08002B30309D}\\::{21EC2020-3AEA-1069-A2DD-08002B30309D}"; hr = CRegFolder_CreateInstance(&CLSID_ControlPanel, pidlRoot, - pszCPanelPath, + pszCPanelPath, L"ControlPanel", IID_PPV_ARG(IShellFolder2, &m_regFolder)); if (FAILED_UNEXPECTEDLY(hr)) diff --git a/dll/win32/shell32/folders/CDesktopFolder.cpp b/dll/win32/shell32/folders/CDesktopFolder.cpp index 9c79cecbb1f..3e7c3b950e6 100644 --- a/dll/win32/shell32/folders/CDesktopFolder.cpp +++ b/dll/win32/shell32/folders/CDesktopFolder.cpp @@ -211,7 +211,7 @@ HRESULT WINAPI CDesktopFolder::FinalConstruct() return E_OUTOFMEMORY; /* Create the inner fs folder */ - hr = SHELL32_CoCreateInitSF(pidlRoot, + hr = SHELL32_CoCreateInitSF(pidlRoot, &CLSID_ShellFSFolder, CSIDL_DESKTOPDIRECTORY, IID_PPV_ARG(IShellFolder2, &m_DesktopFSFolder)); @@ -219,7 +219,7 @@ HRESULT WINAPI CDesktopFolder::FinalConstruct() return hr; /* Create the inner shared fs folder. Dont fail on failure. */ - hr = SHELL32_CoCreateInitSF(pidlRoot, + hr = SHELL32_CoCreateInitSF(pidlRoot, &CLSID_ShellFSFolder, CSIDL_COMMON_DESKTOPDIRECTORY, IID_PPV_ARG(IShellFolder2, &m_SharedDesktopFSFolder)); @@ -229,7 +229,7 @@ HRESULT WINAPI CDesktopFolder::FinalConstruct() /* Create the inner reg folder */ hr = CRegFolder_CreateInstance(&CLSID_ShellDesktop, pidlRoot, - L"", + L"", L"Desktop", IID_PPV_ARG(IShellFolder2, &m_regFolder)); if (FAILED_UNEXPECTEDLY(hr)) @@ -832,7 +832,7 @@ HRESULT WINAPI CDesktopFolder::GetCurFolder(PIDLIST_ABSOLUTE * pidl) { TRACE ("(%p)->(%p)\n", this, pidl); - if (!pidl) + if (!pidl) return E_INVALIDARG; /* xp doesn't have this check and crashes on NULL */ *pidl = ILClone (pidlRoot); return S_OK; diff --git a/dll/win32/shell32/folders/CDrivesFolder.cpp b/dll/win32/shell32/folders/CDrivesFolder.cpp index a2f90d35f57..35c4952c060 100644 --- a/dll/win32/shell32/folders/CDrivesFolder.cpp +++ b/dll/win32/shell32/folders/CDrivesFolder.cpp @@ -564,9 +564,9 @@ HRESULT WINAPI CDrivesFolder::FinalConstruct() if (pidlRoot == NULL) return E_OUTOFMEMORY; - HRESULT hr = CRegFolder_CreateInstance(&CLSID_MyComputer, - pidlRoot, - L"::{20D04FE0-3AEA-1069-A2D8-08002B30309D}", + HRESULT hr = CRegFolder_CreateInstance(&CLSID_MyComputer, + pidlRoot, + L"::{20D04FE0-3AEA-1069-A2D8-08002B30309D}", L"MyComputer", IID_PPV_ARG(IShellFolder2, &m_regFolder)); @@ -667,7 +667,7 @@ HRESULT WINAPI CDrivesFolder::BindToObject(PCUIDLIST_RELATIVE pidl, LPBC pbcRese return m_regFolder->BindToObject(pidl, pbcReserved, riid, ppvOut); CHAR* pchDrive = _ILGetDataPointer(pidl)->u.drive.szDriveName; - + PERSIST_FOLDER_TARGET_INFO pfti = {0}; pfti.dwAttributes = -1; pfti.csidl = -1; @@ -723,7 +723,7 @@ HRESULT WINAPI CDrivesFolder::CompareIDs(LPARAM lParam, PCUIDLIST_RELATIVE pidl1 CHAR* pszDrive2 = _ILGetDataPointer(pidl2)->u.drive.szDriveName; int result; - switch(LOWORD(lParam)) + switch(LOWORD(lParam)) { case 0: /* name */ { diff --git a/dll/win32/shell32/folders/CFSFolder.cpp b/dll/win32/shell32/folders/CFSFolder.cpp index d713680dfba..efdd2386d4b 100644 --- a/dll/win32/shell32/folders/CFSFolder.cpp +++ b/dll/win32/shell32/folders/CFSFolder.cpp @@ -261,32 +261,32 @@ HRESULT CFSExtractIcon_CreateInstance(IShellFolder * psf, LPCITEMIDLIST pidl, RE if (_ILIsFolder (pidl)) { - if (SUCCEEDED(getIconLocationForFolder(psf, + if (SUCCEEDED(getIconLocationForFolder(psf, pidl, 0, wTemp, _countof(wTemp), &icon_idx, &flags))) { initIcon->SetNormalIcon(wTemp, icon_idx); - // FIXME: if/when getIconLocationForFolder does something for + // FIXME: if/when getIconLocationForFolder does something for // GIL_FORSHORTCUT, code below should be uncommented. and // the following line removed. initIcon->SetShortcutIcon(wTemp, icon_idx); } - if (SUCCEEDED(getIconLocationForFolder(psf, + if (SUCCEEDED(getIconLocationForFolder(psf, pidl, GIL_DEFAULTICON, wTemp, _countof(wTemp), &icon_idx, &flags))) { initIcon->SetDefaultIcon(wTemp, icon_idx); } - // if (SUCCEEDED(getIconLocationForFolder(psf, + // if (SUCCEEDED(getIconLocationForFolder(psf, // pidl, GIL_FORSHORTCUT, wTemp, _countof(wTemp), // &icon_idx, // &flags))) // { // initIcon->SetShortcutIcon(wTemp, icon_idx); // } - if (SUCCEEDED(getIconLocationForFolder(psf, + if (SUCCEEDED(getIconLocationForFolder(psf, pidl, GIL_OPENICON, wTemp, _countof(wTemp), &icon_idx, &flags))) @@ -773,7 +773,7 @@ HRESULT WINAPI CFSFolder::ParseDisplayName(HWND hwndOwner, if (pidlTemp != NULL) { /* We are creating an id list without ensuring that the items exist. - If we have a remaining path, this must be a folder. + If we have a remaining path, this must be a folder. We have to do it now because it is set as a file by default */ if (szNext) { @@ -965,7 +965,7 @@ HRESULT WINAPI CFSFolder::CompareIDs(LPARAM lParam, case 2: /* Type */ pExtension1 = PathFindExtensionW(pDataW1->wszName); pExtension2 = PathFindExtensionW(pDataW2->wszName); - result = wcsicmp(pExtension1, pExtension2); + result = wcsicmp(pExtension1, pExtension2); break; case 3: /* Size */ if (pData1->u.file.dwFileSize > pData2->u.file.dwFileSize) @@ -1210,7 +1210,7 @@ HRESULT WINAPI CFSFolder::GetUIObjectOf(HWND hwndOwner, } else if (IsEqualIID (riid, IID_IDataObject)) { - if (cidl >= 1) + if (cidl >= 1) { hr = IDataObject_Constructor (hwndOwner, m_pidlRoot, apidl, cidl, TRUE, (IDataObject **)&pObj); } @@ -1331,7 +1331,7 @@ HRESULT WINAPI CFSFolder::GetDisplayNameOf(PCUITEMID_CHILD pidl, else if (pidl && !pidl->mkid.cb) /* empty pidl */ { /* If it is an empty pidl return only the path of the folder */ - if ((GET_SHGDN_FOR(dwFlags) & SHGDN_FORPARSING) && + if ((GET_SHGDN_FOR(dwFlags) & SHGDN_FORPARSING) && (GET_SHGDN_RELATION(dwFlags) != SHGDN_INFOLDER) && m_sPathTarget) { @@ -1339,7 +1339,7 @@ HRESULT WINAPI CFSFolder::GetDisplayNameOf(PCUITEMID_CHILD pidl, } return E_INVALIDARG; } - + int len = 0; LPWSTR pszPath = (LPWSTR)CoTaskMemAlloc((MAX_PATH + 1) * sizeof(WCHAR)); if (!pszPath) @@ -1709,7 +1709,7 @@ HRESULT CFSFolder::_CreateExtensionUIObject(PCUIDLIST_RELATIVE pidl, REFIID riid return S_OK; } -HRESULT CFSFolder::_GetDropTarget(LPCITEMIDLIST pidl, LPVOID *ppvOut) +HRESULT CFSFolder::_GetDropTarget(LPCITEMIDLIST pidl, LPVOID *ppvOut) { HRESULT hr; @@ -1737,7 +1737,7 @@ HRESULT CFSFolder::_GetDropTarget(LPCITEMIDLIST pidl, LPVOID *ppvOut) return S_OK; } -HRESULT CFSFolder::_GetIconHandler(LPCITEMIDLIST pidl, REFIID riid, LPVOID *ppvOut) +HRESULT CFSFolder::_GetIconHandler(LPCITEMIDLIST pidl, REFIID riid, LPVOID *ppvOut) { CLSID clsid; HRESULT hr; diff --git a/dll/win32/shell32/folders/CFSFolder.h b/dll/win32/shell32/folders/CFSFolder.h index c88f9f042e8..7af22592bdf 100644 --- a/dll/win32/shell32/folders/CFSFolder.h +++ b/dll/win32/shell32/folders/CFSFolder.h @@ -36,7 +36,7 @@ class CFSFolder : public: CFSFolder(); ~CFSFolder(); - + // IShellFolder virtual HRESULT WINAPI ParseDisplayName(HWND hwndOwner, LPBC pbc, LPOLESTR lpszDisplayName, DWORD *pchEaten, PIDLIST_RELATIVE *ppidl, DWORD *pdwAttributes); virtual HRESULT WINAPI EnumObjects(HWND hwndOwner, DWORD dwFlags, LPENUMIDLIST *ppEnumIDList); diff --git a/dll/win32/shell32/folders/CFontsFolder.cpp b/dll/win32/shell32/folders/CFontsFolder.cpp index b094c4dc805..77280382c8f 100644 --- a/dll/win32/shell32/folders/CFontsFolder.cpp +++ b/dll/win32/shell32/folders/CFontsFolder.cpp @@ -68,9 +68,9 @@ HRESULT WINAPI CFontsFolder::CreateViewObject(HWND hwndOwner, REFIID riid, LPVOI HRESULT WINAPI CFontsFolder::GetAttributesOf(UINT cidl, PCUITEMID_CHILD_ARRAY apidl, DWORD *rgfInOut) { static const DWORD dwFontsAttributes = - SFGAO_STORAGE | SFGAO_STORAGEANCESTOR | SFGAO_FILESYSANCESTOR | + SFGAO_STORAGE | SFGAO_STORAGEANCESTOR | SFGAO_FILESYSANCESTOR | SFGAO_FOLDER | SFGAO_FILESYSTEM | SFGAO_HASSUBFOLDER; - + if(cidl) return m_pisfInner->GetAttributesOf(cidl, apidl, rgfInOut); diff --git a/dll/win32/shell32/folders/CRegFolder.cpp b/dll/win32/shell32/folders/CRegFolder.cpp index ce7292f3964..77a2b323a8b 100644 --- a/dll/win32/shell32/folders/CRegFolder.cpp +++ b/dll/win32/shell32/folders/CRegFolder.cpp @@ -593,7 +593,7 @@ HRESULT WINAPI CRegFolder::GetDisplayNameOf(PCUITEMID_CHILD pidl, DWORD dwFlags, GUID const *clsid = _ILGetGUIDPointer (pidl); /* First of all check if we need to query the name from the child item */ - if (GET_SHGDN_FOR (dwFlags) == SHGDN_FORPARSING && + if (GET_SHGDN_FOR (dwFlags) == SHGDN_FORPARSING && GET_SHGDN_RELATION (dwFlags) == SHGDN_NORMAL) { int bWantsForParsing = FALSE; @@ -750,7 +750,7 @@ HRESULT WINAPI CRegFolder::GetDetailsOf(PCUITEMID_CHILD pidl, UINT iColumn, SHEL if (iColumn >= 3) { - /* Return an empty string when we area asked for a column we don't support. + /* Return an empty string when we area asked for a column we don't support. Only the regfolder is supposed to do this as it supports less columns compared to other folder and its contents are supposed to be presented alongside items that support more columns. */ return SHSetStrRet(&psd->str, ""); diff --git a/dll/win32/shell32/iconcache.cpp b/dll/win32/shell32/iconcache.cpp index 5b35326a2b7..6560bae2de2 100644 --- a/dll/win32/shell32/iconcache.cpp +++ b/dll/win32/shell32/iconcache.cpp @@ -71,9 +71,9 @@ static INT CALLBACK SIC_CompareEntries( LPVOID p1, LPVOID p2, LPARAM lparam) if (e1->dwSourceIndex != e2->dwSourceIndex) return (e1->dwSourceIndex < e2->dwSourceIndex) ? -1 : 1; - if ((e1->dwFlags & GIL_FORSHORTCUT) != (e2->dwFlags & GIL_FORSHORTCUT)) + if ((e1->dwFlags & GIL_FORSHORTCUT) != (e2->dwFlags & GIL_FORSHORTCUT)) return ((e1->dwFlags & GIL_FORSHORTCUT) < (e2->dwFlags & GIL_FORSHORTCUT)) ? -1 : 1; - + return wcsicmp(e1->sSourceFile,e2->sSourceFile); } @@ -89,7 +89,7 @@ static int SIC_LoadOverlayIcon(int icon_idx); * FIXME: This should go to the ImageList implementation! */ static HICON SIC_OverlayShortcutImage(HICON SourceIcon, BOOL large) -{ +{ ICONINFO ShortcutIconInfo, TargetIconInfo; HICON ShortcutIcon = NULL, TargetIcon; BITMAP TargetBitmapInfo, ShortcutBitmapInfo; @@ -106,7 +106,7 @@ static HICON SIC_OverlayShortcutImage(HICON SourceIcon, BOOL large) * We will write over the source bitmaps to get the final ones */ if (! GetIconInfo(SourceIcon, &TargetIconInfo)) return NULL; - + /* Is it possible with the ImageList implementation? */ if(!TargetIconInfo.hbmColor) { @@ -114,7 +114,7 @@ static HICON SIC_OverlayShortcutImage(HICON SourceIcon, BOOL large) FIXME("1bpp icon wants its overlay!\n"); goto fail; } - + if(!GetObjectW(TargetIconInfo.hbmColor, sizeof(BITMAP), &TargetBitmapInfo)) { goto fail; @@ -140,7 +140,7 @@ static HICON SIC_OverlayShortcutImage(HICON SourceIcon, BOOL large) { goto fail; } - + /* Is it possible with the ImageLists ? */ if(!ShortcutIconInfo.hbmColor) { @@ -148,7 +148,7 @@ static HICON SIC_OverlayShortcutImage(HICON SourceIcon, BOOL large) FIXME("Should draw 1bpp overlay!\n"); goto fail; } - + if(!GetObjectW(ShortcutIconInfo.hbmColor, sizeof(BITMAP), &ShortcutBitmapInfo)) { goto fail; @@ -191,7 +191,7 @@ static HICON SIC_OverlayShortcutImage(HICON SourceIcon, BOOL large) PVOID bits; PULONG pixel; INT i, j; - + /* Find if the source bitmap has an alpha channel */ if(TargetBitmapInfo.bmBitsPixel != 32) add_alpha = FALSE; else @@ -202,21 +202,21 @@ static HICON SIC_OverlayShortcutImage(HICON SourceIcon, BOOL large) lpbmi->bmiHeader.biHeight = TargetBitmapInfo.bmHeight; lpbmi->bmiHeader.biPlanes = 1; lpbmi->bmiHeader.biBitCount = 32; - + bits = HeapAlloc(GetProcessHeap(), 0, TargetBitmapInfo.bmHeight * TargetBitmapInfo.bmWidthBytes); - + if(!bits) goto fail; - + if(!GetDIBits(TargetDC, TargetIconInfo.hbmColor, 0, TargetBitmapInfo.bmHeight, bits, lpbmi, DIB_RGB_COLORS)) { ERR("GetBIBits failed!\n"); HeapFree(GetProcessHeap(), 0, bits); goto fail; } - + i = j = 0; pixel = (PULONG)bits; - + for(i=0; ibmiHeader.biSize = sizeof(BITMAPINFOHEADER); lpbmi->bmiHeader.biWidth = ShortcutBitmapInfo.bmWidth; lpbmi->bmiHeader.biHeight = ShortcutBitmapInfo.bmHeight; lpbmi->bmiHeader.biPlanes = 1; lpbmi->bmiHeader.biBitCount = 32; - + if(!GetDIBits(TargetDC, ShortcutIconInfo.hbmColor, 0, ShortcutBitmapInfo.bmHeight, bits, lpbmi, DIB_RGB_COLORS)) { ERR("GetBIBits failed!\n"); HeapFree(GetProcessHeap(), 0, bits); goto fail; } - + pixel = (PULONG)bits; /* Remove alpha channel component or make it totally opaque */ for(i=0; ibmiHeader.biCompression = BI_RGB; - + /* Set the bits again */ if(!SetDIBits(TargetDC, ShortcutIconInfo.hbmColor, 0, ShortcutBitmapInfo.bmHeight, bits, lpbmi, DIB_RGB_COLORS)) { @@ -556,7 +556,7 @@ BOOL SIC_Initialize(void) ERR("Failed to create the big icon list.\n"); goto end; } - + /* Load the document icon, which is used as the default if an icon isn't found. */ hSm = (HICON)LoadImageW(shell32_hInstance, MAKEINTRESOURCEW(IDI_SHELL_DOCUMENT), @@ -592,15 +592,15 @@ BOOL SIC_Initialize(void) ERR("Failed to add IDI_SHELL_DOCUMENT icon to cache.\n"); goto end; } - + /* Everything went fine */ result = TRUE; - + end: /* The image list keeps a copy of the icons, we must destroy them */ if(hSm) DestroyIcon(hSm); if(hLg) DestroyIcon(hLg); - + /* Clean everything if something went wrong */ if(!result) { diff --git a/dll/win32/shell32/res/avis/Licence/Tango.txt b/dll/win32/shell32/res/avis/Licence/Tango.txt index 642b2937a84..4a17ccab6fd 100644 --- a/dll/win32/shell32/res/avis/Licence/Tango.txt +++ b/dll/win32/shell32/res/avis/Licence/Tango.txt @@ -1,4 +1,4 @@ -The following avi's use icons from the Tango project and are +The following avi's use icons from the Tango project and are released under Creative Commons Attribution-ShareAlike 2.5 License. Please see COPYING for details @@ -7,4 +7,3 @@ Please see COPYING for details 163.avi 164+169.avi 170.avi - diff --git a/dll/win32/shell32/res/icons/Icon_Licence/Tango.txt b/dll/win32/shell32/res/icons/Icon_Licence/Tango.txt index 48e00cda1ef..c2b6aa61a73 100644 --- a/dll/win32/shell32/res/icons/Icon_Licence/Tango.txt +++ b/dll/win32/shell32/res/icons/Icon_Licence/Tango.txt @@ -1,6 +1,6 @@ http://tango.freedesktop.org/Tango_Icon_Library#Download -The following icons are the property of the Tango project and are +The following icons are the property of the Tango project and are released under Creative Commons Attribution-ShareAlike 2.5 License. Please see COPYING for details. diff --git a/dll/win32/shell32/res/rgs/openwithmenu.rgs b/dll/win32/shell32/res/rgs/openwithmenu.rgs index 6de83f8ecf8..7c26941bf4d 100644 --- a/dll/win32/shell32/res/rgs/openwithmenu.rgs +++ b/dll/win32/shell32/res/rgs/openwithmenu.rgs @@ -18,7 +18,7 @@ HKCR } } } - + ForceRemove Applications { } diff --git a/dll/win32/shell32/shellmenu/CMenuBand.cpp b/dll/win32/shell32/shellmenu/CMenuBand.cpp index 49cb2791848..42dec905690 100644 --- a/dll/win32/shell32/shellmenu/CMenuBand.cpp +++ b/dll/win32/shell32/shellmenu/CMenuBand.cpp @@ -632,7 +632,7 @@ HRESULT STDMETHODCALLTYPE CMenuBand::SetClient(IUnknown *punkClient) CComPtr child = m_subMenuChild; m_subMenuChild = NULL; - + if (child) { IUnknown_SetSite(child, NULL); @@ -822,7 +822,7 @@ HRESULT CMenuBand::_TrackContextMenu(IContextMenu * contextMenu, INT x, INT y) { HRESULT hr; UINT uCommand; - + // Ensure that the menu doesn't disappear on us CComPtr ctxMenu = contextMenu; @@ -1075,7 +1075,7 @@ HRESULT CMenuBand::_OnPopupSubMenu(IShellMenu * childShellMenu, POINTL * pAt, RE if (FAILED_UNEXPECTEDLY(hr)) return hr; - // + // CComPtr popup; hr = pDeskBar->QueryInterface(IID_PPV_ARG(IMenuPopup, &popup)); if (FAILED_UNEXPECTEDLY(hr)) diff --git a/dll/win32/shell32/shellmenu/CMenuDeskBar.cpp b/dll/win32/shell32/shellmenu/CMenuDeskBar.cpp index 2b0777db3f8..02e8717eccb 100644 --- a/dll/win32/shell32/shellmenu/CMenuDeskBar.cpp +++ b/dll/win32/shell32/shellmenu/CMenuDeskBar.cpp @@ -203,7 +203,7 @@ HRESULT STDMETHODCALLTYPE CMenuDeskBar::SetClient(IUnknown *punkClient) return hr; pDeskBandClient->SetDeskBarSite(NULL); - + pDeskBandClient = NULL; m_Client = NULL; } @@ -284,7 +284,7 @@ HRESULT STDMETHODCALLTYPE CMenuDeskBar::GetSite(REFIID riid, void **ppvSite) static void AdjustForExcludeArea(BOOL alignLeft, BOOL alignTop, BOOL preferVertical, PINT px, PINT py, INT cx, INT cy, RECTL rcExclude) { RECT rcWindow = { *px, *py, *px + cx, *py + cy }; - + if (rcWindow.right > rcExclude.left && rcWindow.left < rcExclude.right && rcWindow.bottom > rcExclude.top && rcWindow.top < rcExclude.bottom) { @@ -419,7 +419,7 @@ HRESULT STDMETHODCALLTYPE CMenuDeskBar::Popup(POINTL *ppt, RECTL *prcExclude, MP AdjustForExcludeArea(alignLeft, alignTop, preferVertical, &x, &y, cx, cy, *prcExclude); // Verify that it doesn't escape the work area, and flip. - if (alignLeft) + if (alignLeft) { if (x < rcWorkArea.left && (ppt->x+cx) <= rcWorkArea.right) { @@ -813,7 +813,7 @@ LRESULT CMenuDeskBar::_OnWinIniChange(UINT uMsg, WPARAM wParam, LPARAM lParam, B LRESULT CMenuDeskBar::_OnNcPaint(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL &bHandled) { - /* If it is a flat style menu we need to handle WM_NCPAINT + /* If it is a flat style menu we need to handle WM_NCPAINT * and paint the border with the right colour */ if ((GetStyle() & WS_BORDER) == 0) { diff --git a/dll/win32/shell32/shellmenu/CMenuFocusManager.cpp b/dll/win32/shell32/shellmenu/CMenuFocusManager.cpp index 5b65bc33bdd..c6cb0f25141 100644 --- a/dll/win32/shell32/shellmenu/CMenuFocusManager.cpp +++ b/dll/win32/shell32/shellmenu/CMenuFocusManager.cpp @@ -18,7 +18,7 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */ -/* +/* This file implements the CMenuFocusManager class. This class manages the shell menus, by overriding the hot-tracking behaviour. @@ -169,7 +169,7 @@ HRESULT CMenuFocusManager::PopFromArray(StackEntryType * pType, CMenuBand ** pMb { if (pMb) *pMb = m_bandStack[m_bandCount].mb; } - + return S_OK; } @@ -559,7 +559,7 @@ LRESULT CMenuFocusManager::GetMsgHook(INT nCode, WPARAM hookWParam, LPARAM hookL BOOL isLButton = FALSE; if (nCode < 0) return CallNextHookEx(m_hGetMsgHook, nCode, hookWParam, hookLParam); - + if (nCode == HC_ACTION) { BOOL callNext = TRUE; diff --git a/dll/win32/shell32/shellmenu/CMenuSite.h b/dll/win32/shell32/shellmenu/CMenuSite.h index 99f40c3e528..f2336729729 100644 --- a/dll/win32/shell32/shellmenu/CMenuSite.h +++ b/dll/win32/shell32/shellmenu/CMenuSite.h @@ -92,7 +92,7 @@ public: virtual HRESULT STDMETHODCALLTYPE QueryService(REFGUID guidService, REFIID riid, void **ppvObject); - // Using custom message map instead + // Using custom message map instead virtual BOOL ProcessWindowMessage(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam, LRESULT &lResult, DWORD mapId = 0); // UNIMPLEMENTED diff --git a/dll/win32/shell32/shellmenu/CMenuToolbars.cpp b/dll/win32/shell32/shellmenu/CMenuToolbars.cpp index 274b780b970..05ecbdfc8f8 100644 --- a/dll/win32/shell32/shellmenu/CMenuToolbars.cpp +++ b/dll/win32/shell32/shellmenu/CMenuToolbars.cpp @@ -162,7 +162,7 @@ HRESULT CMenuToolbarBase::OnCustomDraw(LPNMTBCUSTOMDRAW cdraw, LRESULT * theResu return S_OK; case CDDS_ITEMPREPAINT: - + HWND tlw; m_menuBand->_GetTopLevelWindow(&tlw); @@ -421,7 +421,7 @@ HRESULT CMenuToolbarBase::CreateToolbar(HWND hwndParent, DWORD dwFlags) m_pager.SubclassWindow(hwndPager); ::SetParent(m_hWnd, hwndPager); - + m_pager.SendMessageW(PGM_SETCHILD, 0, reinterpret_cast(m_hWnd)); } @@ -709,7 +709,7 @@ HRESULT CMenuToolbarBase::PopupSubMenu(UINT iItem, UINT index, IShellMenu* child if (!GetItemRect(index, &rc)) return E_FAIL; - + POINT a = { rc.left, rc.top }; POINT b = { rc.right, rc.bottom }; @@ -841,7 +841,7 @@ HRESULT CMenuToolbarBase::MenuBarMouseDown(INT iIndex, BOOL isLButton) GetButton(iIndex, &btn); - if ((m_initFlags & SMINIT_VERTICAL) + if ((m_initFlags & SMINIT_VERTICAL) || m_popupBar || m_cancelingPopup) { @@ -1036,7 +1036,7 @@ HRESULT CMenuToolbarBase::AddPlaceholder() { TBBUTTON tbb = { 0 }; WCHAR MenuString[128]; - + LoadStringW(GetModuleHandle(L"shell32.dll"), IDS_MENU_EMPTY, MenuString, _countof(MenuString)); tbb.fsState = 0; @@ -1246,7 +1246,7 @@ HRESULT CMenuStaticToolbar::OnDeletingButton(const NMTOOLBAR * tb) HRESULT CMenuStaticToolbar::InternalContextMenu(INT iItem, INT index, DWORD_PTR dwData, POINT pt) { CComPtr contextMenu; - HRESULT hr = m_menuBand->_CallCBWithItemId(iItem, SMC_GETOBJECT, + HRESULT hr = m_menuBand->_CallCBWithItemId(iItem, SMC_GETOBJECT, reinterpret_cast(&IID_IContextMenu), reinterpret_cast(&contextMenu)); if (hr != S_OK) return hr; diff --git a/dll/win32/shell32/shellmenu/CMenuToolbars.h b/dll/win32/shell32/shellmenu/CMenuToolbars.h index 6463166d258..a04c56935f1 100644 --- a/dll/win32/shell32/shellmenu/CMenuToolbars.h +++ b/dll/win32/shell32/shellmenu/CMenuToolbars.h @@ -88,7 +88,7 @@ public: HRESULT DisableMouseTrack(BOOL bDisable); virtual HRESULT FillToolbar(BOOL clearFirst=FALSE) = 0; - + HRESULT CancelCurrentPopup(); HRESULT PopupItem(INT iItem, BOOL keyInitiated); HRESULT GetDataFromId(INT iItem, INT* pIndex, DWORD_PTR* pData); diff --git a/dll/win32/shell32/shellmenu/CMergedFolder.cpp b/dll/win32/shell32/shellmenu/CMergedFolder.cpp index 17337d0e09c..0da67258af9 100644 --- a/dll/win32/shell32/shellmenu/CMergedFolder.cpp +++ b/dll/win32/shell32/shellmenu/CMergedFolder.cpp @@ -90,7 +90,7 @@ CEnumMergedFolder::CEnumMergedFolder() : m_hDsaCount(0) { } - + CEnumMergedFolder::~CEnumMergedFolder() { DSA_DestroyCallback(m_hDsa, s_DsaDeleteCallback, this); @@ -104,7 +104,7 @@ int CEnumMergedFolder::DsaDeleteCallback(LocalPidlInfo * info) CoTaskMemFree((LPVOID)info->parseName); return 0; } - + int CALLBACK CEnumMergedFolder::s_DsaDeleteCallback(void *pItem, void *pData) { CEnumMergedFolder * mf = (CEnumMergedFolder*) pData; @@ -270,7 +270,7 @@ HRESULT CEnumMergedFolder::FindPidlInList(HWND hwndOwner, LPCITEMIDLIST pcidl, L LocalPidlInfo * pInfo = (LocalPidlInfo *) DSA_GetItemPtr(m_hDsa, i); if (!pInfo) return E_FAIL; - + TRACE("Comparing with item at %d with parent %p and pidl { cb=%d }\n", i, pInfo->parent, pInfo->pidl->mkid.cb); hr = pInfo->parent->CompareIDs(0, pInfo->pidl, pcidl); @@ -393,7 +393,7 @@ CMergedFolder::CMergedFolder() : { } -CMergedFolder::~CMergedFolder() +CMergedFolder::~CMergedFolder() { if (m_UserLocalPidl) ILFree(m_UserLocalPidl); if (m_AllUsersPidl) ILFree(m_AllUsersPidl); @@ -409,7 +409,7 @@ HRESULT STDMETHODCALLTYPE CMergedFolder::AddNameSpace(LPGUID lpGuid, IShellFolde } TRACE("AddNameSpace %p %p\n", m_UserLocal.p, m_AllUsers.p); - + // FIXME: Use a DSA to store the list of merged namespaces, together with their related info (psf, pidl, ...) // For now, assume only 2 will ever be used, and ignore all the other data. if (!m_UserLocal) @@ -513,7 +513,7 @@ HRESULT STDMETHODCALLTYPE CMergedFolder::BindToObject( { LocalPidlInfo info; HRESULT hr; - + hr = m_EnumSource->FindPidlInList(NULL, pidl, &info); if (FAILED_UNEXPECTEDLY(hr)) return hr; diff --git a/dll/win32/shell32/shfldr.h b/dll/win32/shell32/shfldr.h index 448fccc37ac..8b60f6e32a8 100644 --- a/dll/win32/shell32/shfldr.h +++ b/dll/win32/shell32/shfldr.h @@ -60,7 +60,7 @@ HRESULT SHELL32_CoCreateInitSF (LPCITEMIDLIST pidlRoot, const GUID* clsid, HRESULT SHELL32_BindToSF (LPCITEMIDLIST pidlRoot, PERSIST_FOLDER_TARGET_INFO* ppfti, LPCITEMIDLIST pidl, const GUID* clsid, REFIID riid, LPVOID *ppvOut); - + extern "C" BOOL HCR_RegOpenClassIDKey(REFIID riid, HKEY *hkey); diff --git a/dll/win32/shell32/shlexec.cpp b/dll/win32/shell32/shlexec.cpp index 4e31cfff625..d5bdf5452e6 100644 --- a/dll/win32/shell32/shlexec.cpp +++ b/dll/win32/shell32/shlexec.cpp @@ -617,13 +617,13 @@ static BOOL SHELL_TryAppPathW( LPCWSTR szName, LPWSTR lpResult, WCHAR **env) wcscpy(buffer, L"Software\\Microsoft\\Windows\\CurrentVersion\\App Paths\\"); wcscat(buffer, szName); res = RegOpenKeyExW(HKEY_LOCAL_MACHINE, buffer, 0, KEY_READ, &hkApp); - if (res) + if (res) { // Add ".exe" extension, if extension does not exists if (PathAddExtensionW(buffer, wszExe)) { res = RegOpenKeyExW(HKEY_LOCAL_MACHINE, buffer, 0, KEY_READ, &hkApp); - } + } if (res) goto end; } diff --git a/dll/win32/shell32/shlfileop.cpp b/dll/win32/shell32/shlfileop.cpp index 204feceaafe..8fd4179ba93 100644 --- a/dll/win32/shell32/shlfileop.cpp +++ b/dll/win32/shell32/shlfileop.cpp @@ -551,7 +551,7 @@ static void _SetOperationTexts(FILE_OPERATION *op, LPCWSTR src, LPCWSTR dest) { default: return; } - + FormatMessageW(FORMAT_MESSAGE_FROM_STRING|FORMAT_MESSAGE_ARGUMENT_ARRAY, op->szBuilderString, 0, 0, szFinalString, sizeof(szFinalString), (va_list*)args); @@ -574,11 +574,11 @@ DWORD CALLBACK SHCopyProgressRoutine( FILE_OPERATION *op = (FILE_OPERATION *) lpData; if (op->progress) { - /* - * This is called at the start of each file. To keop less state, + /* + * This is called at the start of each file. To keop less state, * I'm adding the file to the completed size here, and the re-subtracting * it when drawing the progress bar. - */ + */ if (dwCallbackReason & CALLBACK_STREAM_SWITCH) op->completedSize.QuadPart += TotalFileSize.QuadPart; @@ -586,7 +586,7 @@ DWORD CALLBACK SHCopyProgressRoutine( TotalFileSize.QuadPart + TotalBytesTransferred.QuadPart , op->totalSize.QuadPart); - + op->bCancelled = op->progress->HasUserCancelled(); } @@ -1513,7 +1513,7 @@ static HRESULT copy_files(FILE_OPERATION *op, BOOL multiDest, const FILE_LIST *f return ERROR_CANCELLED; } } - + if (op->progress != NULL) op->bCancelled |= op->progress->HasUserCancelled(); /* Vista return code. XP would return e.g. ERROR_FILE_NOT_FOUND, ERROR_ALREADY_EXISTS */ @@ -1753,7 +1753,7 @@ static DWORD move_files(FILE_OPERATION *op, BOOL multiDest, const FILE_LIST *flF move_to_dir(op, entryToMove, fileDest); else SHNotifyMoveFileW(op, entryToMove->szFullPath, fileDest->szFullPath, IsAttribDir(entryToMove->attributes)); - + if (op->progress != NULL) op->bCancelled |= op->progress->HasUserCancelled(); /* Should fire on progress dialog only */ @@ -1952,9 +1952,9 @@ int WINAPI SHFileOperationW(LPSHFILEOPSTRUCTW lpFileOp) goto cleanup; #endif if (lpFileOp->wFunc != FO_RENAME && !(lpFileOp->fFlags & FOF_SILENT)) { - ret = CoCreateInstance(CLSID_ProgressDialog, - NULL, - CLSCTX_INPROC_SERVER, + ret = CoCreateInstance(CLSID_ProgressDialog, + NULL, + CLSCTX_INPROC_SERVER, IID_PPV_ARG(IProgressDialog, &op.progress)); if (FAILED(ret)) goto cleanup; @@ -2232,7 +2232,7 @@ EXTERN_C HRESULT WINAPI SHPathPrepareForWriteA(HWND hwnd, IUnknown *modless, LPC } -/* +/* * The two following background operations were modified from filedefext.cpp * They use an inordinate amount of mutable state across the string functions, * so are not easy to follow and care is required when modifying. @@ -2243,11 +2243,11 @@ _FileOpCountManager(FILE_OPERATION *op, const FILE_LIST *from) { DWORD ticks = GetTickCount(); FILE_ENTRY *entryToCount; - + for (UINT i = 0; i < from->dwNumFiles; i++) { entryToCount = &from->feFiles[i]; - + WCHAR theFileName[MAX_PATH]; StringCchCopyW(theFileName, MAX_PATH, entryToCount->szFullPath); _FileOpCount(op, theFileName, IsAttribDir(entryToCount->attributes), &ticks); diff --git a/dll/win32/shell32/shlfolder.cpp b/dll/win32/shell32/shlfolder.cpp index 471973516ee..1b967209657 100644 --- a/dll/win32/shell32/shlfolder.cpp +++ b/dll/win32/shell32/shlfolder.cpp @@ -164,10 +164,10 @@ HRESULT SHELL32_BindToSF (LPCITEMIDLIST pidlRoot, PERSIST_FOLDER_TARGET_INFO* pp return E_FAIL; CComPtr psf; - HRESULT hr = SHELL32_CoCreateInitSF(pidlRoot, - ppfti, - pidlChild, - clsid, + HRESULT hr = SHELL32_CoCreateInitSF(pidlRoot, + ppfti, + pidlChild, + clsid, IID_PPV_ARG(IShellFolder, &psf)); ILFree(pidlChild); diff --git a/dll/win32/shimgvw/shimgvw.c b/dll/win32/shimgvw/shimgvw.c index 7a0d5372096..f8ff14e3f8b 100644 --- a/dll/win32/shimgvw/shimgvw.c +++ b/dll/win32/shimgvw/shimgvw.c @@ -1084,7 +1084,7 @@ ImageView_WndProc(HWND hwnd, UINT Message, WPARAM wParam, LPARAM lParam) ImageView_UpdateWindow(hwnd); } break; - + case IDC_ROT_COUNCW: if (image) { diff --git a/dll/win32/streamci/streamci.c b/dll/win32/streamci/streamci.c index 6532755f74c..eb39aeff201 100644 --- a/dll/win32/streamci/streamci.c +++ b/dll/win32/streamci/streamci.c @@ -179,14 +179,14 @@ InstallSoftwareDeviceInterfaceInf(IN LPWSTR InfName, VOID WINAPI -StreamingDeviceSetupW(IN HWND hwnd, - IN HINSTANCE hinst, - IN LPWSTR lpszCmdLine, +StreamingDeviceSetupW(IN HWND hwnd, + IN HINSTANCE hinst, + IN LPWSTR lpszCmdLine, IN int nCmdShow) { DWORD Length, dwResult; LPWSTR pCmdLine; - LPWSTR pStr; + LPWSTR pStr; GUID Guids[2]; WCHAR DevicePath[MAX_PATH]; HRESULT hResult; diff --git a/dll/win32/syssetup/wizard.c b/dll/win32/syssetup/wizard.c index dd24193f5cd..82c55e20fdc 100644 --- a/dll/win32/syssetup/wizard.c +++ b/dll/win32/syssetup/wizard.c @@ -1180,7 +1180,7 @@ RunControlPanelApplet(HWND hwnd, PCWSTR pwszCPLParameters) } while ((MsgWaitForMultipleObjects(1, &ProcessInformation.hProcess, FALSE, INFINITE, QS_ALLINPUT|QS_ALLPOSTMESSAGE )) != WAIT_OBJECT_0) - { + { while (PeekMessageW(&msg, NULL, 0, 0, PM_REMOVE)) { TranslateMessage(&msg); diff --git a/dll/win32/uxtheme/themehooks.c b/dll/win32/uxtheme/themehooks.c index f9c045cea67..f9eca90642a 100644 --- a/dll/win32/uxtheme/themehooks.c +++ b/dll/win32/uxtheme/themehooks.c @@ -5,7 +5,7 @@ * PURPOSE: uxtheme user api hook functions * PROGRAMMER: Giannis Adamopoulos */ - + #include "uxthemep.h" USERAPIHOOK g_user32ApiHook; @@ -21,14 +21,14 @@ PWND_DATA ThemeGetWndData(HWND hWnd) pwndData = (PWND_DATA)GetPropW(hWnd, (LPCWSTR)MAKEINTATOM(atWndContext)); if(pwndData == NULL) { - pwndData = HeapAlloc(GetProcessHeap(), - HEAP_ZERO_MEMORY, + pwndData = HeapAlloc(GetProcessHeap(), + HEAP_ZERO_MEMORY, sizeof(WND_DATA)); if(pwndData == NULL) { return NULL; } - + SetPropW( hWnd, (LPCWSTR)MAKEINTATOM(atWndContext), pwndData); } @@ -272,20 +272,20 @@ ThemeDefWindowProcW(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam) pwndData = (PWND_DATA)GetPropW(hWnd, (LPCWSTR)MAKEINTATOM(atWndContext)); - if(!IsAppThemed() || + if(!IsAppThemed() || !(GetThemeAppProperties() & STAP_ALLOW_NONCLIENT) || (pwndData && pwndData->HasAppDefinedRgn)) { - return g_user32ApiHook.DefWindowProcW(hWnd, - Msg, - wParam, + return g_user32ApiHook.DefWindowProcW(hWnd, + Msg, + wParam, lParam); } - return ThemeWndProc(hWnd, - Msg, - wParam, - lParam, + return ThemeWndProc(hWnd, + Msg, + wParam, + lParam, g_user32ApiHook.DefWindowProcW); } @@ -296,20 +296,20 @@ ThemeDefWindowProcA(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam) pwndData = (PWND_DATA)GetPropW(hWnd, (LPCWSTR)MAKEINTATOM(atWndContext)); - if(!IsAppThemed() || + if(!IsAppThemed() || !(GetThemeAppProperties() & STAP_ALLOW_NONCLIENT) || (pwndData && pwndData->HasAppDefinedRgn)) { - return g_user32ApiHook.DefWindowProcA(hWnd, - Msg, - wParam, + return g_user32ApiHook.DefWindowProcA(hWnd, + Msg, + wParam, lParam); } - return ThemeWndProc(hWnd, - Msg, - wParam, - lParam, + return ThemeWndProc(hWnd, + Msg, + wParam, + lParam, g_user32ApiHook.DefWindowProcA); } @@ -508,7 +508,7 @@ ThemeDlgPostWindowProc(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam, ULONG_ GetDiaogTextureBrush(hTheme, hwndTarget, hdc, phbrush, Msg != WM_CTLCOLORDLG); -#if 1 +#if 1 { WCHAR controlClass[32]; GetClassNameW (hwndTarget, controlClass, sizeof(controlClass) / sizeof(controlClass[0])); @@ -556,16 +556,16 @@ BOOL WINAPI ThemeGetScrollInfo(HWND hwnd, int fnBar, LPSCROLLINFO lpsi) if (pwndData == NULL) goto dodefault; - /* - * Uxtheme needs to handle the tracking of the scrollbar itself + /* + * Uxtheme needs to handle the tracking of the scrollbar itself * This means than if an application needs to get the track position * with GetScrollInfo, it will get wrong data. So uxtheme needs to * hook it and set the correct tracking position itself */ ret = g_user32ApiHook.GetScrollInfo(hwnd, fnBar, lpsi); - if ( lpsi && + if ( lpsi && (lpsi->fMask & SIF_TRACKPOS) && - pwndData->SCROLL_TrackingWin == hwnd && + pwndData->SCROLL_TrackingWin == hwnd && pwndData->SCROLL_TrackingBar == fnBar) { lpsi->nTrackPos = pwndData->SCROLL_TrackingVal; @@ -603,7 +603,7 @@ dodefault: * Exports */ -BOOL CALLBACK +BOOL CALLBACK ThemeInitApiHook(UAPIHK State, PUSERAPIHOOK puah) { if (!puah || State != uahLoadInit) @@ -618,7 +618,7 @@ ThemeInitApiHook(UAPIHK State, PUSERAPIHOOK puah) /* Store the original functions from user32 */ g_user32ApiHook = *puah; - + puah->DefWindowProcA = ThemeDefWindowProcA; puah->DefWindowProcW = ThemeDefWindowProcW; puah->PreWndProc = ThemePreWindowProc; diff --git a/dll/win32/uxtheme/uxthemep.h b/dll/win32/uxtheme/uxthemep.h index 31e50566b96..b721510ca32 100644 --- a/dll/win32/uxtheme/uxthemep.h +++ b/dll/win32/uxtheme/uxthemep.h @@ -69,7 +69,7 @@ typedef struct _THEME_IMAGE { WCHAR name[MAX_PATH]; HBITMAP image; BOOL hasAlpha; - + struct _THEME_IMAGE *next; } THEME_IMAGE, *PTHEME_IMAGE; @@ -90,7 +90,7 @@ typedef struct _THEME_FILE { typedef struct _UXINI_FILE *PUXINI_FILE; -typedef struct _UXTHEME_HANDLE +typedef struct _UXTHEME_HANDLE { RTL_HANDLE_TABLE_ENTRY Handle; PTHEME_CLASS pClass; @@ -174,7 +174,7 @@ typedef struct _DRAW_CONTEXT { HWND hWnd; HDC hDC; - HTHEME theme; + HTHEME theme; HTHEME scrolltheme; HTHEME hPrevTheme; WINDOWINFO wi; @@ -187,7 +187,7 @@ typedef struct _DRAW_CONTEXT HBITMAP hbmpOld; } DRAW_CONTEXT, *PDRAW_CONTEXT; -typedef enum +typedef enum { CLOSEBUTTON, MAXBUTTON, @@ -197,7 +197,7 @@ typedef enum /* The following values specify all possible button states -Note that not all of them are documented but it is easy to +Note that not all of them are documented but it is easy to find them by opening a theme file */ typedef enum { diff --git a/dll/win32/wdmaud.drv/mmixer.c b/dll/win32/wdmaud.drv/mmixer.c index 0f2805f37c6..8fc2ed6309c 100644 --- a/dll/win32/wdmaud.drv/mmixer.c +++ b/dll/win32/wdmaud.drv/mmixer.c @@ -451,7 +451,7 @@ WdmAudGetControlDetails( MMRESULT WdmAudGetWaveOutCapabilities( - IN ULONG DeviceId, + IN ULONG DeviceId, LPWAVEOUTCAPSW Capabilities) { if (MMixerWaveOutCapabilities(&MixerContext, DeviceId, Capabilities) == MM_STATUS_SUCCESS) @@ -463,7 +463,7 @@ WdmAudGetWaveOutCapabilities( MMRESULT WdmAudGetWaveInCapabilities( - IN ULONG DeviceId, + IN ULONG DeviceId, LPWAVEINCAPSW Capabilities) { if (MMixerWaveInCapabilities(&MixerContext, DeviceId, Capabilities) == MM_STATUS_SUCCESS) @@ -789,16 +789,16 @@ CommitWaveBufferApc(PVOID ApcContext, DWORD dwErrorCode; PSOUND_OVERLAPPED Overlap; KSSTREAM_HEADER* lpHeader; - + dwErrorCode = RtlNtStatusToDosError(IoStatusBlock->Status); Overlap = (PSOUND_OVERLAPPED)IoStatusBlock; lpHeader = Overlap->CompletionContext; /* Call mmebuddy overlap routine */ - Overlap->OriginalCompletionRoutine(dwErrorCode, + Overlap->OriginalCompletionRoutine(dwErrorCode, lpHeader->DataUsed, &Overlap->Standard); - HeapFree(GetProcessHeap(), 0, lpHeader); + HeapFree(GetProcessHeap(), 0, lpHeader); } MMRESULT @@ -848,22 +848,22 @@ WdmAudCommitWaveBufferByMMixer( lpHeader->DataUsed = Length; } - Status = NtDeviceIoControlFile(SoundDeviceInstance->Handle, - NULL, - CommitWaveBufferApc, - NULL, - (PIO_STATUS_BLOCK)Overlap, + Status = NtDeviceIoControlFile(SoundDeviceInstance->Handle, + NULL, + CommitWaveBufferApc, + NULL, + (PIO_STATUS_BLOCK)Overlap, IoCtl, - NULL, - 0, - lpHeader, + NULL, + 0, + lpHeader, sizeof(KSSTREAM_HEADER)); - + if (!NT_SUCCESS(Status)) { DPRINT1("NtDeviceIoControlFile() failed with status %08lx\n", Status); return MMSYSERR_ERROR; } - + return MMSYSERR_NOERROR; } diff --git a/dll/win32/winsta/misc.c b/dll/win32/winsta/misc.c index 21bcfabe348..66107b8f572 100644 --- a/dll/win32/winsta/misc.c +++ b/dll/win32/winsta/misc.c @@ -2,9 +2,9 @@ * PROJECT: ReactOS winsta.dll * FILE: lib/winsta/misc.c * PURPOSE: WinStation - * PROGRAMMER: Samuel Serapi?n + * PROGRAMMER: Samuel Serapión * NOTES: Misc functions. - * + * */ #include "winsta.h" diff --git a/dll/win32/winsta/server.c b/dll/win32/winsta/server.c index f3016d2a518..00e1d092a75 100644 --- a/dll/win32/winsta/server.c +++ b/dll/win32/winsta/server.c @@ -2,8 +2,8 @@ * PROJECT: ReactOS winsta.dll * FILE: lib/winsta/server.c * PURPOSE: WinStation - * PROGRAMMER: Samuel Serapi?n - * + * PROGRAMMER: Samuel Serapión + * */ #include "winsta.h" diff --git a/dll/win32/winsta/ws.c b/dll/win32/winsta/ws.c index 3b9fb158225..966ce217208 100644 --- a/dll/win32/winsta/ws.c +++ b/dll/win32/winsta/ws.c @@ -2,8 +2,8 @@ * PROJECT: ReactOS winsta.dll * FILE: lib/winsta/ws.c * PURPOSE: WinStation - * PROGRAMMER: Samuel Serapi?n - * + * PROGRAMMER: Samuel Serapión + * */ #include "winsta.h" diff --git a/dll/win32/wlanapi/main.c b/dll/win32/wlanapi/main.c index 0e927bb6b29..1e5761f5242 100644 --- a/dll/win32/wlanapi/main.c +++ b/dll/win32/wlanapi/main.c @@ -285,7 +285,7 @@ WlanQueryInterface(IN HANDLE hClientHandle, return ERROR_INVALID_PARAMETER; UNIMPLEMENTED; - return ERROR_SUCCESS; + return ERROR_SUCCESS; } DWORD @@ -299,8 +299,8 @@ WlanGetInterfaceCapability(IN HANDLE hClientHandle, return ERROR_INVALID_PARAMETER; UNIMPLEMENTED; - return ERROR_SUCCESS; -} + return ERROR_SUCCESS; +} DWORD WINAPI WlanRegisterNotification(IN HANDLE hClientHandle, IN DWORD dwNotifSource, @@ -325,7 +325,7 @@ WlanReasonCodeToString(IN DWORD dwReasonCode, return ERROR_INVALID_PARAMETER; UNIMPLEMENTED; - return ERROR_SUCCESS; + return ERROR_SUCCESS; } DWORD @@ -343,7 +343,7 @@ WlanIhvControl(IN HANDLE hClientHandle, return ERROR_INVALID_PARAMETER; UNIMPLEMENTED; - return ERROR_SUCCESS; + return ERROR_SUCCESS; } DWORD @@ -367,7 +367,7 @@ WlanSetSecuritySettings(IN HANDLE hClientHandle, } RpcEndExcept; - return dwResult; + return dwResult; } DWORD @@ -382,7 +382,7 @@ WlanGetAvailableNetworkList(IN HANDLE hClientHandle, return ERROR_INVALID_PARAMETER; UNIMPLEMENTED; - return ERROR_SUCCESS; + return ERROR_SUCCESS; } void __RPC_FAR * __RPC_USER diff --git a/dll/win32/wlanapi/profile.c b/dll/win32/wlanapi/profile.c index 68a1410ca23..00e9e0940b7 100644 --- a/dll/win32/wlanapi/profile.c +++ b/dll/win32/wlanapi/profile.c @@ -97,7 +97,7 @@ WlanGetProfile(IN HANDLE hClientHandle, return ERROR_INVALID_PARAMETER; UNIMPLEMENTED; - return ERROR_SUCCESS; + return ERROR_SUCCESS; } DWORD @@ -113,9 +113,9 @@ WlanSetProfile(IN HANDLE hClientHandle, { if ((pReserved != NULL) || (hClientHandle == NULL) || (pInterfaceGuid == NULL) || (strProfileXml == NULL) || (pdwReasonCode == NULL)) return ERROR_INVALID_PARAMETER; - + UNIMPLEMENTED; - return ERROR_SUCCESS; + return ERROR_SUCCESS; } DWORD @@ -131,7 +131,7 @@ WlanGetProfileCustomUserData(IN HANDLE hClientHandle, return ERROR_INVALID_PARAMETER; UNIMPLEMENTED; - return ERROR_SUCCESS; + return ERROR_SUCCESS; } DWORD @@ -147,10 +147,10 @@ WlanSetProfileCustomUserData(IN HANDLE hClientHandle, return ERROR_INVALID_PARAMETER; if ((dwDataSize != 0) && (pData == NULL)) - return ERROR_INVALID_PARAMETER; - + return ERROR_INVALID_PARAMETER; + UNIMPLEMENTED; - return ERROR_SUCCESS; + return ERROR_SUCCESS; } DWORD diff --git a/dll/win32/ws2help/apc.c b/dll/win32/ws2help/apc.c index 3a7b675b1a3..3633fefcb0a 100644 --- a/dll/win32/ws2help/apc.c +++ b/dll/win32/ws2help/apc.c @@ -28,7 +28,7 @@ WahOpenApcHelper(OUT PHANDLE ApcHelperHandle) /* Validate handle */ if (!ApcHelperHandle) return ERROR_INVALID_PARAMETER; - /* + /* * Return a bogus handle ("ROS") * Historical note:(MS sends "CKM", which probably stands for "Keith Moore" * (KM), one of the core architects of Winsock 2.2 from Microsoft. @@ -86,7 +86,7 @@ WahCloseThread(IN HANDLE ApcHelperHandle, } INT -WINAPI +WINAPI WahQueueUserApc(IN HANDLE ApcHelperHandle, IN LPWSATHREADID ThreadId, IN LPWSAUSERAPC ApcRoutine, diff --git a/dll/win32/ws2help/context.c b/dll/win32/ws2help/context.c index 40b6145e88c..5c45df263d4 100644 --- a/dll/win32/ws2help/context.c +++ b/dll/win32/ws2help/context.c @@ -21,7 +21,7 @@ DWORD gHandleToIndexMask; CONST DWORD SockPrimes[] = { 31, 61, 127, 257, 521, 1031, 2053, - 4099, 8191, 16381, 32749, 65537, 131071, 261983, + 4099, 8191, 16381, 32749, 65537, 131071, 261983, -1 }; @@ -96,7 +96,7 @@ DoWaitForReaders(IN PWAH_SEARCH_TABLE Table, /* Check if the counter is above one */ if (*Counter > 0) { - /* + /* * This shouldn't happen unless priorities are messed up. Do a wait so * that the threads with lower priority will get their chance now. */ @@ -122,7 +122,7 @@ DoWaitForReaders(IN PWAH_SEARCH_TABLE Table, } } - /* + /* * Our event is ready. Tell the others to signal us by making sure * that the last counter will be -1, notifying the last thread of our * request. @@ -145,7 +145,7 @@ TryWaitForReaders(IN PWAH_SEARCH_TABLE Table) { PVLONG OldCount = Table->CurrentCount; LONG SpinCount; - + /* See which counter is being used */ if (OldCount == &Table->Count1) { @@ -539,7 +539,7 @@ WahReferenceContextByHandle(IN PWAH_HANDLE_TABLE Table, HashTable = SearchTable->HashTable; /* Check if it's valid, and if it's the one we want */ - if ((HashTable) && + if ((HashTable) && (HashHandle = WSH_HASH_FROM_HANDLE(Handle, HashTable)) && (HashHandle->Handle == Handle)) { diff --git a/dll/win32/ws2help/dllmain.c b/dll/win32/ws2help/dllmain.c index f563487626c..40db90be4d2 100644 --- a/dll/win32/ws2help/dllmain.c +++ b/dll/win32/ws2help/dllmain.c @@ -118,16 +118,16 @@ Ws2helpInitialize(VOID) return ERROR_SUCCESS; } -BOOL -APIENTRY -DllMain(HANDLE hModule, - DWORD dwReason, +BOOL +APIENTRY +DllMain(HANDLE hModule, + DWORD dwReason, LPVOID lpReserved) { switch (dwReason) { case DLL_PROCESS_ATTACH: - + /* Save our handle */ LibraryHdl = hModule; diff --git a/dll/win32/ws2help/handle.c b/dll/win32/ws2help/handle.c index ef5d9750dde..edc59a949d2 100644 --- a/dll/win32/ws2help/handle.c +++ b/dll/win32/ws2help/handle.c @@ -48,8 +48,8 @@ ApcThread(ULONG_PTR Context) NTSTATUS WINAPI -DoSocketCancel(PVOID Context1, - PVOID Context2, +DoSocketCancel(PVOID Context1, + PVOID Context2, PVOID Context3) { return STATUS_SUCCESS; @@ -57,8 +57,8 @@ DoSocketCancel(PVOID Context1, NTSTATUS WINAPI -DoSocketRequest(PVOID Context1, - PVOID Context2, +DoSocketRequest(PVOID Context1, + PVOID Context2, PVOID Context3) { return STATUS_SUCCESS; @@ -149,7 +149,7 @@ WahCreateSocketHandle(IN HANDLE HelperHandle, NTSTATUS Status; IO_STATUS_BLOCK IoStatusBlock; PWAH_HELPER_CONTEXT Context = (PWAH_HELPER_CONTEXT)HelperHandle; - + /* Enter the prolog, make sure we're initialized */ ErrorCode = WS2HELP_PROLOG(); if (ErrorCode != ERROR_SUCCESS) return ErrorCode; @@ -229,7 +229,7 @@ WahCreateSocketHandle(IN HANDLE HelperHandle, /* Set success */ ErrorCode = NO_ERROR; } - else + else { /* We failed. Get the error and close the socket */ ErrorCode = GetLastError(); @@ -263,7 +263,7 @@ WahDisableNonIFSHandleSupport(VOID) SERVICES_ACTIVE_DATABASE, SC_MANAGER_CREATE_SERVICE); if (!ServiceMgrHandle) return GetLastError(); - + /* Open the service */ Ws2IfsHandle = OpenService(ServiceMgrHandle, "WS2IFSL", SERVICE_ALL_ACCESS); @@ -372,7 +372,7 @@ WahOpenHandleHelper(OUT PHANDLE HelperHandle) Ea->EaNameLength = sizeof("NifsPvd"); Ea->EaValueLength = sizeof(*EaData); RtlCopyMemory(Ea->EaName, "NifsPvd", Ea->EaNameLength); - + /* Get our EA data */ EaData = (PWAH_EA_DATA2)(Ea + 1); @@ -395,9 +395,9 @@ WahOpenHandleHelper(OUT PHANDLE HelperHandle) 0, Ea, sizeof(*Ea) + sizeof(*EaData)); - + /* Check for success */ - if (NT_SUCCESS(Status)) + if (NT_SUCCESS(Status)) { /* Resume the thread and return a handle to the context */ ResumeThread(Context->ThreadHandle); @@ -405,7 +405,7 @@ WahOpenHandleHelper(OUT PHANDLE HelperHandle) return ERROR_SUCCESS; } else - { + { /* Get the error code */ ErrorCode = RtlNtStatusToDosError(Status); } diff --git a/dll/win32/ws2help/notify.c b/dll/win32/ws2help/notify.c index 01421c47b17..a83e5cd5850 100644 --- a/dll/win32/ws2help/notify.c +++ b/dll/win32/ws2help/notify.c @@ -71,7 +71,7 @@ WahNotifyAllProcesses(IN HANDLE NotificationHelperHandle) } INT -WINAPI +WINAPI WahWaitForNotification(IN HANDLE NotificationHelperHandle, IN HANDLE lpNotificationHandle, IN LPWSAOVERLAPPED lpOverlapped, diff --git a/dll/win32/wshtcpip/iflist.c b/dll/win32/wshtcpip/iflist.c index d6d68ced2b2..637552f08d2 100644 --- a/dll/win32/wshtcpip/iflist.c +++ b/dll/win32/wshtcpip/iflist.c @@ -118,7 +118,7 @@ INT GetIPSNMPInfo( { TCP_REQUEST_QUERY_INFORMATION_EX inTcpReq; ULONG BufLenNeeded; - + RtlZeroMemory(&inTcpReq, sizeof(inTcpReq)); inTcpReq.ID.toi_entity = *pEntityID; inTcpReq.ID.toi_class = INFO_CLASS_PROTOCOL; @@ -136,8 +136,8 @@ INT GetIPSNMPInfo( { DPRINT("DeviceIoControl (IPSNMPInfo) failed, Status %li!\n", GetLastError()); return WSAEFAULT; - } - + } + return NO_ERROR; } @@ -148,7 +148,7 @@ INT GetTdiEntityType( { TCP_REQUEST_QUERY_INFORMATION_EX inTcpReq; ULONG BufLenNeeded; - + RtlZeroMemory(&inTcpReq, sizeof(inTcpReq)); inTcpReq.ID.toi_entity = *pEntityID; inTcpReq.ID.toi_class = INFO_CLASS_GENERIC; @@ -166,8 +166,8 @@ INT GetTdiEntityType( { DPRINT("DeviceIoControl (TdiEntityType) failed, Status %li!\n", GetLastError()); return WSAEFAULT; - } - + } + return NO_ERROR; } @@ -179,7 +179,7 @@ INT GetIFEntry( { TCP_REQUEST_QUERY_INFORMATION_EX inTcpReq; ULONG BufLenNeeded; - + RtlZeroMemory(&inTcpReq, sizeof(inTcpReq)); inTcpReq.ID.toi_entity = *pEntityID; inTcpReq.ID.toi_class = INFO_CLASS_PROTOCOL; @@ -197,8 +197,8 @@ INT GetIFEntry( { DPRINT("DeviceIoControl (IFEntry) failed, Status %li!\n", GetLastError()); return WSAEFAULT; - } - + } + return NO_ERROR; } @@ -229,7 +229,7 @@ WSHIoctl_GetInterfaceList( LPINTERFACE_INFO pIntfInfo; DWORD outIDCount, i1, iAddr; DWORD bCastAddr, outNumberOfBytes; - ULONG BufLenNeeded, BufLen, IFEntryLen, TdiType; + ULONG BufLenNeeded, BufLen, IFEntryLen, TdiType; HANDLE TcpFile = 0; HANDLE hHeap = GetProcessHeap(); DWORD LastErr; @@ -263,8 +263,8 @@ WSHIoctl_GetInterfaceList( DPRINT("ERROR\n"); res = ERROR_OUTOFMEMORY; goto cleanup; - } - + } + /* get addresses */ pEntityID = outEntityID; for (i1 = 0; i1 < outIDCount; i1++) @@ -280,7 +280,7 @@ WSHIoctl_GetInterfaceList( res = GetIPSNMPInfo(TcpFile, pEntityID, &outIPSNMPInfo); if (res != NO_ERROR) goto cleanup; - + /* add to array */ pIntfIDItem = (IntfIDItem*)HeapAlloc(hHeap, 0, sizeof(IntfIDItem)); list_add_head(&IntfIDList->entry, &pIntfIDItem->entry); @@ -291,13 +291,13 @@ WSHIoctl_GetInterfaceList( pEntityID++; } - + /* Calculate needed size */ outNumberOfBytes = 0; LIST_FOR_EACH_ENTRY(pIntfIDItem, &IntfIDList->entry, struct _IntfIDItem, entry) { outNumberOfBytes += (pIntfIDItem->numaddr * sizeof(INTERFACE_INFO)); - } + } DPRINT("Buffer size needed: %lu\n", outNumberOfBytes); if (outNumberOfBytes > OutputBufferLength) { @@ -307,7 +307,7 @@ WSHIoctl_GetInterfaceList( res = WSAEFAULT; goto cleanup; } - + /* Get address info */ RtlZeroMemory(&inTcpReq1,sizeof(inTcpReq1)); inTcpReq1.ID.toi_class = INFO_CLASS_PROTOCOL; @@ -319,7 +319,7 @@ WSHIoctl_GetInterfaceList( BufLen = sizeof(IPAddrEntry) * pIntfIDItem->numaddr; pIntfIDItem->pIPAddrEntry0 = HeapAlloc(hHeap, 0, BufLen); - + if (!DeviceIoControl( TcpFile, IOCTL_TCP_QUERY_INFORMATION_EX, @@ -368,21 +368,21 @@ WSHIoctl_GetInterfaceList( pIntfInfo->iiFlags = IFF_BROADCAST | IFF_MULTICAST; if (pIPAddrEntry->iae_addr == ntohl(INADDR_LOOPBACK)) pIntfInfo->iiFlags |= IFF_LOOPBACK; - + pIPAddrEntry++; pIntfInfo++; } res = NO_ERROR; } - + /* Get Interface up/down-state and patch pIntfInfo->iiFlags */ pEntityID = outEntityID; - for (i1 = 0; i1 < outIDCount; i1++) - { + for (i1 = 0; i1 < outIDCount; i1++) + { res = GetTdiEntityType(TcpFile, pEntityID, &TdiType); if (res != NO_ERROR) goto cleanup; - + if (TdiType != IF_MIB) { pEntityID++; @@ -392,7 +392,7 @@ WSHIoctl_GetInterfaceList( res = GetIFEntry(TcpFile, pEntityID, pIFEntry, IFEntryLen); if (res != NO_ERROR) goto cleanup; - + /* if network isn't up -> no patch needed */ if (pIFEntry->if_operstatus < IF_OPER_STATUS_CONNECTING) { @@ -405,7 +405,7 @@ WSHIoctl_GetInterfaceList( LIST_FOR_EACH_ENTRY(pIntfIDItem, &IntfIDList->entry, struct _IntfIDItem, entry) { pIPAddrEntry = pIntfIDItem->pIPAddrEntry0; - for (iAddr = 0; iAddr < pIntfIDItem->numaddr; iAddr++) + for (iAddr = 0; iAddr < pIntfIDItem->numaddr; iAddr++) { if (pIPAddrEntry->iae_index == pIFEntry->if_index) pIntfInfo->iiFlags |= IFF_UP; @@ -414,7 +414,7 @@ WSHIoctl_GetInterfaceList( pIntfInfo++; } } - + pEntityID++; } diff --git a/drivers/filesystems/fastfat/vfat005.1st b/drivers/filesystems/fastfat/vfat005.1st index 71af436576d..109ce7cfb43 100644 --- a/drivers/filesystems/fastfat/vfat005.1st +++ b/drivers/filesystems/fastfat/vfat005.1st @@ -1,7 +1,7 @@ This is VFAT driver release 0.0.5 To install : - extract files + extract files delete all object files (*.o) in all subdirectories (because include file include/ddk/iotypes.h is modified and is used by many files) recompile reactos diff --git a/drivers/filesystems/fastfat/vfat_fr.txt b/drivers/filesystems/fastfat/vfat_fr.txt index af4e0edb86a..292f6737b98 100644 --- a/drivers/filesystems/fastfat/vfat_fr.txt +++ b/drivers/filesystems/fastfat/vfat_fr.txt @@ -54,7 +54,7 @@ fonctions strictement internes dans iface.c : void WriteCluster(PDEVICE_EXTENSION DeviceExt, ULONG ClusterToWrite, ULONG NewValue) ULONG GetNextWriteCluster(PDEVICE_EXTENSION DeviceExt, ULONG CurrentCluster) - unsigned long ClusterToSector(PDEVICE_EXTENSION DeviceExt, + unsigned long ClusterToSector(PDEVICE_EXTENSION DeviceExt, unsigned long Cluster) void RtlAnsiToUnicode(PWSTR Dest, PCH Source, ULONG Length) void vfat_initstr(wchar_t *wstr, ULONG wsize) @@ -76,7 +76,7 @@ fonctions strictement internes dans iface.c : renvoie STATUS_UNSUCCESSFUL sinon. NTSTATUS FsdCloseFile(PDEVICE_EXTENSION DeviceExt, PFILE_OBJECT FileObject) ne fait rien, renvoie STATUS_SUCCESS. - NTSTATUS FsdOpenFile(PDEVICE_EXTENSION DeviceExt, PFILE_OBJECT FileObject, + NTSTATUS FsdOpenFile(PDEVICE_EXTENSION DeviceExt, PFILE_OBJECT FileObject, PWSTR FileName) parcourt l'arborescence pour trouver le fichier(appelle FindFile à chaque niveau) si trouvé : FileObject->FsContext = Fcb du fichier, renvoie STATUS_SUCCESS @@ -94,4 +94,4 @@ fonctions strictement internes dans iface.c : NTSTATUS FsdMount(PDEVICE_OBJECT DeviceToMount) NTSTATUS FsdGetStandardInformation(PFCB FCB, PDEVICE_OBJECT DeviceObject, PFILE_STANDARD_INFORMATION StandardInfo); - + diff --git a/drivers/input/sermouse/sermouse.txt b/drivers/input/sermouse/sermouse.txt index 38d1bd520a5..ce083b5ee8d 100644 --- a/drivers/input/sermouse/sermouse.txt +++ b/drivers/input/sermouse/sermouse.txt @@ -8,10 +8,10 @@ Data packet format: Data packet is 3 byte packet. It is send to the computer every time mouse - state changes (mouse moves or keys are pressed/released). + state changes (mouse moves or keys are pressed/released). D7 D6 D5 D4 D3 D2 D1 D0 1. X 1 LB RB Y7 Y6 X7 X6 - 2. X 0 X5 X4 X3 X2 X1 X0 + 2. X 0 X5 X4 X3 X2 X1 X0 3. X 0 Y5 Y4 Y3 Y2 Y1 Y0 Note: The bit marked with X is 0 if the mouse received with 7 databits @@ -19,10 +19,10 @@ bit format for receiving. In this case X gets value 1. The safest thing to get everything working is to use 7 databits and 1 stopbit when receiving mouse information (and if you are making mouse then send out - 7 databits and 2 stop bits). + 7 databits and 2 stop bits). The byte marked with 1. is send first, then the others. The bit D6 in the first byte is used for synchronizing the software to mouse packets - if it goes out of sync. + if it goes out of sync. LB is the state of the left button (1 means pressed down) RB is the state of the right button (1 means pressed down) @@ -40,7 +40,7 @@ example Logitech Pilot mouse and others). The original protocol supports only two buttons, but logitech as added third button to some of their mouse models. To make this possible logitech has made one extension to - the protocol. + the protocol. I have not seen any documentation about the exact documents, but here is what I have found out: The information of the third button state is sent using one extra byte which is send after the normal packet when needed. @@ -68,9 +68,9 @@ LB is left button state (0 = pressed, 1 = released) CB is center button state (0 = pressed, 1 = released) RB is right button state (0 = pressed, 1 = released) - X7-X0 movement in X direction since last packet in signed byte + X7-X0 movement in X direction since last packet in signed byte format (-128..+127), positive direction right - Y7-Y0 movement in Y direction since last packet in signed byte + Y7-Y0 movement in Y direction since last packet in signed byte format (-128..+127), positive direction up X7'-X0' movement in X direction since sending of X7-X0 packet in signed byte format (-128..+127), positive direction right diff --git a/drivers/storage/ide/atapi/license.txt b/drivers/storage/ide/atapi/license.txt index 28ba760a5ad..e3e373f7c64 100644 --- a/drivers/storage/ide/atapi/license.txt +++ b/drivers/storage/ide/atapi/license.txt @@ -1,4 +1,4 @@ -Window NT Device Driver Kit +Windows NT Device Driver Kit END-USER LICENSE AGREEMENT FOR MICROSOFT SOFTWARE IMPORTANT-READ CAREFULLY: This Microsoft End-User License Agreement ("EULA") is a legal agreement between you (either an individual or a single entity) and Microsoft Corporation for the Microsoft software product identified above, which includes computer software and associated media and printed materials, and may include "online" or electronic documentation ("SOFTWARE PRODUCT" or "SOFTWARE"). By installing, copying, or otherwise using the SOFTWARE PRODUCT, you agree to be bound by the terms of this EULA. If you do not agree to the terms of this EULA, promptly return the unused SOFTWARE PRODUCT to the place from which you obtained it for a full refund, or if you received the SOFTWARE PRODUCT as part of a subscription or other service from Microsoft, you may cancel the subscription and receive a refund of a prorata portion of the subscription price. diff --git a/drivers/wdm/audio/backpln/portcls/private.hpp b/drivers/wdm/audio/backpln/portcls/private.hpp index 17caee08bde..75549690577 100644 --- a/drivers/wdm/audio/backpln/portcls/private.hpp +++ b/drivers/wdm/audio/backpln/portcls/private.hpp @@ -111,7 +111,7 @@ NTSTATUS NewPortPinWaveCyclic( OUT IPortPinWaveCyclic ** OutPin); -NTSTATUS +NTSTATUS NewPortFilterWavePci( OUT IPortFilterWavePci ** OutFilter); @@ -132,7 +132,7 @@ GetWavePciMiniport( PPORTWAVEPCI Port); -NTSTATUS +NTSTATUS NewPortFilterDMus( OUT PPORTFILTERDMUS * OutFilter); @@ -143,13 +143,13 @@ NewPortPinDMus( VOID GetDMusMiniport( - IN IPortDMus * iface, + IN IPortDMus * iface, IN PMINIPORTDMUS * Miniport, IN PMINIPORTMIDI * MidiMiniport); #if (NTDDI_VERSION >= NTDDI_VISTA) -NTSTATUS +NTSTATUS NewPortFilterWaveRT( OUT IPortFilterWaveRT ** OutFilter); @@ -177,7 +177,7 @@ NewPortWaveRT( #endif -NTSTATUS +NTSTATUS NewPortFilterTopology( OUT IPortFilterTopology ** OutFilter); diff --git a/hal/halx86/pic/pic.c b/hal/halx86/pic/pic.c index e0b46ce7056..e901dc8be37 100644 --- a/hal/halx86/pic/pic.c +++ b/hal/halx86/pic/pic.c @@ -1257,7 +1257,7 @@ HalpGetRootInterruptVector(IN ULONG BusInterruptLevel, *Irql = HalpVectorToIrql(SystemVector); *Affinity = HalpDefaultInterruptAffinity; ASSERT(HalpDefaultInterruptAffinity); - + /* Return the vector */ return SystemVector; } diff --git a/media/doc/DdCreateDirectDrawObject.txt b/media/doc/DdCreateDirectDrawObject.txt index 0fba190e3f7..4d8a39d812f 100644 --- a/media/doc/DdCreateDirectDrawObject.txt +++ b/media/doc/DdCreateDirectDrawObject.txt @@ -1,32 +1,32 @@ -DdCreateDirectDrawObject +DdCreateDirectDrawObject When IN HDC is not NULL 1. we need check the IN HDC is NULL or not -2. if it not null we need create a directdraw handler +2. if it not null we need create a directdraw handler and store it to pDirectDrawGlobal->hDD 3. if the directdraw handle is null return false - we did fail to create directdraw HAL + we did fail to create directdraw HAL 4. if the directdraw handle was not null we return true - we did susses to create directdraw HAL - -When IN HDC is NULL + we did susses to create directdraw HAL + +When IN HDC is NULL Now we come to if IN HDC is null basic we need create a hdc and cashe some data 1. if internal cache of directdraw handle is not null (pDirectDrawGlobalInternal->hDD) we take it and fill to the public directdraw handler (pDirectDrawGlobal->hDD) and return susses. - + 2. if no internal cache of directdraw handle is found we need create it by using CreateDC for tempary HDC that will be cache in the win32k later - -3. we need check see if we got a tempary HDC or not, if we fail getting tempary + +3. we need check see if we got a tempary HDC or not, if we fail getting tempary HDC return FALSE - + 4. Now we trying create directdraw handler it being cache to (pDirectDrawGlobalInternal->hDD) and it also set same handler to the public (pDirectDrawGlobal->hDD) 5. if it fails to create directdraw handle return false - we did fail to create directdraw HAL + we did fail to create directdraw HAL 6. if it susses create directdraw handle return true - we did susses to create directdraw HAL - + we did susses to create directdraw HAL + To create a directdraw handler you need call the NtGdiDdCreateDirectDrawObject with a hdc diff --git a/media/doc/DdDeleteDirectDrawObject.txt b/media/doc/DdDeleteDirectDrawObject.txt index 2e0ad2fcfb6..414af164395 100644 --- a/media/doc/DdDeleteDirectDrawObject.txt +++ b/media/doc/DdDeleteDirectDrawObject.txt @@ -6,11 +6,11 @@ we need release directdraw handler the cache or not cache handler 2. if both cache directdraw handler and public handler is NULL then we need return false, fail to release it or it was already release -3. if public directdraw handler is not null we need release it - and return if we susses or not. +3. if public directdraw handler is not null we need release it + and return if we susses or not. 4. we need check if we need rest the internal cache if public being release - -use NtGdiDdDeleteDirectDrawObject((HANDLE)DirectDrawGlobal->hDD); -to release a directdraw handler. + +use NtGdiDdDeleteDirectDrawObject((HANDLE)DirectDrawGlobal->hDD); +to release a directdraw handler. diff --git a/media/doc/HACKING b/media/doc/HACKING index a0725a21304..9461872a44a 100644 --- a/media/doc/HACKING +++ b/media/doc/HACKING @@ -15,15 +15,15 @@ There are a number of books on NT driver development, I would recommend 'Windows NT Device Driver Development' (http://www.osr.com/book/) since OSR seem to know their stuff. There is only one book on NT filesystem development 'Windows NT File System Internals'. Please don't buy any of -these books unless you need to, and can afford it. +these books unless you need to, and can afford it. -These mailing lists and newsgroups are useful for NT internals related +These mailing lists and newsgroups are useful for NT internals related questions, - ntfsd@atria.com, ntdev@atria.com + ntfsd@atria.com, ntdev@atria.com (subscribe by email to majordomo@atria.com) comp.os.???? microsoft.public.???? - + * Style There is a coding style used for ReactOS, it's described in a ReactOS's Wiki @@ -46,22 +46,22 @@ Debugging kernel-mode code is tricky, these are some snippets also prefixes the message with the file and line number to make it easier to see where output is coming from. DbgPrint can be used at any point including in interrupt handlers. - + There are options in ntoskrnl/kd/kdebug.c for copying DbgPrint output to a serial device or bochs logging port (parallel support should also be added). This can be useful if a lot of output is being generated. - + It should be possible to include support for debugging the kernel with gdb over a serial line. Bochs (a shareware CPU emulator) is also useful for debugging the kernel, I wrote some patches to allow capture of console output from within bochs to file and for debugging a kernel running - under bochs with gdb. Contact me (welch@cwcom.net) if you're are + under bochs with gdb. Contact me (welch@cwcom.net) if you're are interested. - + If CPU reports an exception not handled by the kernel (any page fault - not part of virtual memory support or any other exception) the kernel + not part of virtual memory support or any other exception) the kernel will display output like this and halt - + General Protection Fault Exception: 13(0) CS:EIP xxxxxxxx:xxxxxxx DS xxxx ES xxxx FS xxxx GS xxxxx @@ -73,53 +73,53 @@ Debugging kernel-mode code is tricky, these are some snippets .... Frames: xxxx xxxx xxxx ... .... - + The fault type will usually be either 'General Protection' or 'Page Fault', see your Intel manual for the more exotic types. The 'EIP' number is the address of the faulting instruction. If the 'CS' number is 0x20 then the exception occured in kernel mode, if it is 0x11 then the exception occurred in user mode. 'cr2' is the address that the - faulting instruction was trying to access, if the exception was a page + faulting instruction was trying to access, if the exception was a page fault. The number printed after 'Frames' are any addresses on the stack - that look like function addresses. - - + that look like function addresses. + + If the kernel detects a serious problem that it will bug check, displaying output like this - + Bug detected (code x, param x x x x) Frames: xxx xxxx xxxx .... - + Again the numbers printed after 'Frames' are any addresses on the stack that look like function addresss. Usually the kernel will also print a message describing the problem in more detail, the bug check code isn't - very useful at the moment. - + very useful at the moment. + * Contacts There is a mailing list for kernel development, - + ros-dev@reactos.org - - The main developers use a svn account to coordinate changes, ask + + The main developers use a svn account to coordinate changes, ask Aleksey (aleksey@reactos.org) for an account if you are going to be adding a lot of code. Smaller patches can go to the mailing list or to the relevant developer (usually the comment at the top of a module will have an email address). Regular snapshots are made available for download, see the mailing list for announcements. - + * Legal stuff The ReactOS project is GPL'ed, please make sure any code submitted is - compatible with this. - + compatible with this. + The NT4 ddk license agreement allows its usage for developing nt drivers only. Legally therefore it can not be used to develop ReactOS, neither the documentation or the sample code. I'm not a lawyer, but I doubt the - effiacy of 'shrinkwrap licenses' particularly on freely downloadable + effiacy of 'shrinkwrap licenses' particularly on freely downloadable software. The only precendent I know of, in a Scottish court, didn't upload this type of license. - + Also the 'fair use' section of copyright law allows the 'quoting' of small sections from copyrighted documents, e.g. Windows API or DDK documentation diff --git a/media/doc/INTERNALS b/media/doc/INTERNALS index 103ca75e19f..08bdec9330f 100644 --- a/media/doc/INTERNALS +++ b/media/doc/INTERNALS @@ -9,22 +9,22 @@ execution between ISRs and between threads. There are several levels PASSIVE_LEVEL, APC_LEVEL: The normal level for user mode and most kernel mode code. At the moment APC_LEVEL is unused. - + DISPATCH_LEVEL: At this level all irqs are still allowed but thread rescheduling on the current processor is disabled. This is used by the spinlock synchronization primitive to implement its uniprocessor semantics (multiprocessor is more complex). It is also used for some other forms of synchronization, DPCs for example. Many APIs are unavailable at this IRQL, usually those that might have to wait. It - is recommended that you don't spend too much time at this IRQL + is recommended that you don't spend too much time at this IRQL otherwise system responsiveness will be reduced. - - > DISPATCH_LEVEL: Each irq is assigned a priority (which will be + + > DISPATCH_LEVEL: Each irq is assigned a priority (which will be greater than DISPATCH_LEVEL). At an irq's priority level that irq, lower priority irqs and thread rescheduling are disabled. Higher priority irqs can still run. Very few APIs are available at IRQLs greater than DISPATCH_LEVEL. - + HIGH_LEVEL: All irqs are disabled. ------------------------------------------------------------------------------- @@ -40,4 +40,4 @@ DISPATCH_LEVEL the DPC queue will be drained, otherwise this will happen when the IRQL level drops below DISPATCH_LEVEL or the processor becomes idle. When the DPC queue is drained each DPC object is removed and the associated function is called at DISPATCH_LEVEL. A DPC object can only be inserted once, -further insertions before it is removed will have no effect. +further insertions before it is removed will have no effect. diff --git a/media/doc/LPC.txt b/media/doc/LPC.txt index 271fc180c53..1dc73c3c10e 100644 --- a/media/doc/LPC.txt +++ b/media/doc/LPC.txt @@ -11,7 +11,7 @@ Below are some of Alex's notes on the mysterious LPC Subsystem There are four imporant LPC Sizes to keep in mind. Try to understand them: -/* +/* * This determines the absolute maximum message size (0x100 bytes). For * larger values, use a section-backed message. */ @@ -22,7 +22,7 @@ There are four imporant LPC Sizes to keep in mind. Try to understand them: * amount of bytes that an LPC request can take. To calculate this, assume * that this is a CONNECTION_REQUEST message, which includes the additionnal * LPCP_CONNECTION_MESSAGE structure as well. Therefore, we add the kernel LPC, - * header, the maximum port size and the size of the connection request + * header, the maximum port size and the size of the connection request * structure. This gives a value of 0x15C. However, one must note that NT * allocates the Lookaside List using a 16-byte aligned value, making this * number 0x160. diff --git a/media/doc/apc b/media/doc/apc index dd5b39892ae..fe08b30e3cd 100644 --- a/media/doc/apc +++ b/media/doc/apc @@ -1,13 +1,13 @@ APC - + Asynchronous procedure call - + An APC is a Kernel-defined control object representing a procedure that is called asynchronously. APCs are thread-context dependent; that is, they are queued to a particular thread for execution. - + There are three different kinds of APCs in NT: - + User APCs are used by certain asynchronous NT system services to allow user-mode applications or protected subsystems to synchronize the execution of a thread with the completion of an operation or the @@ -17,12 +17,12 @@ program. Specifically, they can only be executed when an application or protected subsystem has called a wait service and has enabled alerts to occur, or if it has called the test-alert service. - + Kernel APCs are normal kernel-mode APCs. They are much like a normal user APC except that they are executable by default. That is, they are enabled except when the thread is already executing a Kernel APC. (Note that a special Kernel APC always preempts these.) - + Special Kernel APCs cannot be blocked except by running at a raised IRQL. They are executed at APC_LEVEL IRQL (see IDT), in kernel mode. These types of APCs are used by the system to force a thread to diff --git a/media/doc/irp cancel boilerplate.c b/media/doc/irp cancel boilerplate.c index 209e6706020..44a280656db 100644 --- a/media/doc/irp cancel boilerplate.c +++ b/media/doc/irp cancel boilerplate.c @@ -13,91 +13,91 @@ CancelRoutine( ) { //don't need this since we have our own sync. protecting irp cancellation - IoReleaseCancelSpinLock(Irp->CancelIrql); - + IoReleaseCancelSpinLock(Irp->CancelIrql); + theLock = Irp->Tail.Overlay.DriverContext[3]; - - Lock(theLock); + + Lock(theLock); RemoveEntryList(&Irp->Tail.Overlay.ListEntry); Unlock(theLock); - + Irp->IoStatus.Status = STATUS_CANCELLED; Irp->IoStatus.Information = 0; - + IoCompleteRequest(Irp, IO_NO_INCREMENT); - + } - - + + QUEUE_BOLIERPLATE { Lock(theLock); - + Irp->Tail.Overlay.DriverContext[3] = &theLock; - + IoSetCancelRoutine(Irp, CancelRoutine); if (Irp->Cancel && IoSetCancelRoutine(Irp, NULL)) - { + { /* Irp has already been cancelled (before we got to queue it), - and we got to remove the cancel routine before the canceler could, + and we got to remove the cancel routine before the canceler could, so we cancel/complete the irp ourself. */ - + Unlock(theLock); - + Irp->IoStatus.Status = STATUS_CANCELLED; Irp->IoStatus.Information = 0; IoCompleteRequest(Irp, IO_NO_INCREMENT); - + return FALSE; } - - //else were ok - - + + //else were ok + + Irp->IoStatus.Status = STATUS_PENDING; IoMarkIrpPending(Irp); - + InsertTailList(Queue); - + Unlock(theLock); - + } - - + + DEQUEUE_BOILERPLATE { Lock(theLock); - + Irp = RemoveHeadList(Queue); - + if (!IoSetCancelRoutine(Irp, NULL)) { /* - Cancel routine WILL be called after we release the spinlock. It will try to remove - the irp from the list and cancel/complete this irp. Since we allready removed it, + Cancel routine WILL be called after we release the spinlock. It will try to remove + the irp from the list and cancel/complete this irp. Since we allready removed it, make its ListEntry point to itself. */ - + InitializeListHead(&Irp->Tail.Overlay.ListEntry); - + Unlock(theLock); - + return; - } - - + } + + /* Cancel routine will NOT be called, canceled or not. The Irp might have been canceled (Irp->Cancel flag set) but we don't care, since we are to complete this Irp now anyways. */ - + Unlock(theLock); - + Irp->IoStatus.Status = STATUS_SUCCESS; Irp->IoStatus.Information = 0; IoCompleteRequest(Irp, IO_NO_INCREMENT); - + } diff --git a/media/doc/news1 b/media/doc/news1 index 04eab36579c..3e45c76dfaa 100644 --- a/media/doc/news1 +++ b/media/doc/news1 @@ -1,6 +1,6 @@ Correction / addition to Prasad's "Undocumented NT" - + From: dan_ps@my-deja.com Reply to: dan_ps@my-deja.com Date: Sun, 23 Apr 2000 10:03:30 GMT diff --git a/media/doc/news2 b/media/doc/news2 index af0d3b8390c..2ebad8feb42 100644 --- a/media/doc/news2 +++ b/media/doc/news2 @@ -1,6 +1,6 @@ Re: alternative to SeCaptureSubjectContext for Win2000 sought - + From: "dave porter" Reply to: "dave porter" Date: Mon, 26 Jun 2000 10:57:18 -0400 @@ -8,8 +8,8 @@ comp.os.ms-windows.programmer.nt.kernel-mode Followup to: newsgroup References: - <39520e7f$0$15896@wodc7nh1.news.uu.net> - + <39520e7f$0$15896@wodc7nh1.news.uu.net> + <39575985$0$24336@wodc7nh0.news.uu.net> diff --git a/media/doc/notes b/media/doc/notes index eaa392ea794..0a87d7305d1 100644 --- a/media/doc/notes +++ b/media/doc/notes @@ -14,16 +14,16 @@ issue (http://www.winntmag.com/) there is a detailed description, by Mark Russinovich, of the rôle the MBR, NTLDR, boot.ini, ntdetect.com... play in the boot process ("Inside the Boot Process, Part 1"). ----- -Yes with DPCs, KeDrainDpcQueue should go to HIGH_LEVEL because -it needs to synchronize with KeInsertDpcQueue. Also the idle thread -should run at DISPATCH_LEVEL and regularly drain the dpc queue, that -way if an irq happens and the dpc can't be executed immediately it -will be executed as soon as the processor is idle rather than +Yes with DPCs, KeDrainDpcQueue should go to HIGH_LEVEL because +it needs to synchronize with KeInsertDpcQueue. Also the idle thread +should run at DISPATCH_LEVEL and regularly drain the dpc queue, that +way if an irq happens and the dpc can't be executed immediately it +will be executed as soon as the processor is idle rather than waiting for the next timer tick ----- -About the console driver, I think it might be quite useful to have a simple -way for apps to print to the screen for debugging. But when the kernel is more -stable, console handling should be moved to user level because console printing +About the console driver, I think it might be quite useful to have a simple +way for apps to print to the screen for debugging. But when the kernel is more +stable, console handling should be moved to user level because console printing needs to know about windows and so on which can only be done at user level. ----- Subject: Re: IMSAMP-how to avoid rebooting? @@ -388,11 +388,11 @@ Radu Woinaroski wrote in message <364F8F6E.2434B010@scitec.com.au>... >The function is implemented like that > >BOOL -Something( -> HANDLE hDevice , -> int param1, -> int param2, -> DWORD * pReturn, +Something( +> HANDLE hDevice , +> int param1, +> int param2, +> DWORD * pReturn, > LPOVERLAPPED pOverlapped) >{ > // here a data buffer on the stack sent to asynchronous DeviceIoControl @@ -401,9 +401,9 @@ Something( > aDataIn[0] = param1; > aDataIn[1] = param2; > -> return DeviceIoControl( +> return DeviceIoControl( > hDevice, -> DO_SOMETHING_IO, +> DO_SOMETHING_IO, > aDataIn, > sizeof(int)*2, > pReturn, @@ -464,13 +464,13 @@ CM_RESOURCE_LIST to find the vector, level, port addresses, etc., for your device. (Then pass the returned CM_RESOURCE_LIST to ExFreePool.) -See Knowledge Base article Q152044. +See Knowledge Base article Q152044. --- Jamie Hanrahan, Kernel Mode Systems, San Diego CA (jeh@cmkrnl.com) Drivers, internals, networks, applications, and training for VMS and Windows NT NT kernel driver FAQ, links, and other information: http://www.cmkrnl.com/ -Please post replies, followups, questions, etc., in news, not via e-mail. +Please post replies, followups, questions, etc., in news, not via e-mail. ----- Subject: Re: IRP canceling Date: Mon, 23 Nov 1998 09:05:47 -0500 @@ -485,8 +485,8 @@ Seol,Keun Seok wrote: > In the DDK help, the Start I/O routine MUST check the current IRP's > Cancel bit. > If set, Start I/O routine must just return. -> -> But I think that the IRP already completed should not be accessed. +> +> But I think that the IRP already completed should not be accessed. You're absolutely right. I recommend the following code in a standard StartIo routine to avoid the problem you point out: diff --git a/media/doc/todo b/media/doc/todo index 7678acbc475..304a3adf3ff 100644 --- a/media/doc/todo +++ b/media/doc/todo @@ -20,18 +20,18 @@ Hardware resource management (see io/resource.c) Exception support (see ke/catch.c) Mutex support (see nt/mutex.c) - + * Verify implementation - + * Major areas Security support (see se/*.c) SCSI miniport driver - + * Drivers NTFS, EXT2 filesystems Many others (use oem's where possible) - + * For the future DOS, Win16, POSIX subsystems diff --git a/media/doc/winsta and desktops.txt b/media/doc/winsta and desktops.txt index 661e7d0f516..1beb0a6f4fa 100644 --- a/media/doc/winsta and desktops.txt +++ b/media/doc/winsta and desktops.txt @@ -11,18 +11,18 @@ station/desktop will be "SAWinSta\Desktop" in both cases Is there any way to let schedule service associated with interactive desktop in these 2 cases? -thanks +thanks ------------------------------------------- Service-0x0-3e7$ ---------------- -By default Win32 services associated with non-visible windows station (for -services which run in the local system account it is Service-0x0-3e7$) and they -can't (without using special flag MB_SERVICE_NOTIFICATION or -MB_DEFAULT_DESKTOP_ONLY in the MessageBox function) interact with user. -However, you may configure a service to have GUI capabilities. Just set Type -field of the registry service entry equal SERVICE_INTERACTIVE_PROCESS. When -this key is specified SCM will connect the service with WinSta0 instead +By default Win32 services associated with non-visible windows station (for +services which run in the local system account it is Service-0x0-3e7$) and they +can't (without using special flag MB_SERVICE_NOTIFICATION or +MB_DEFAULT_DESKTOP_ONLY in the MessageBox function) interact with user. +However, you may configure a service to have GUI capabilities. Just set Type +field of the registry service entry equal SERVICE_INTERACTIVE_PROCESS. When +this key is specified SCM will connect the service with WinSta0 instead Service-0x0-3e7$ and it will alow to display windows and dialog boxes. ------------------------------------------------- @@ -30,15 +30,15 @@ Service-0x0-3e7$ and it will alow to display windows and dialog boxes. WinSta0 ------- --The one-and-only interactive WinSta. +-The one-and-only interactive WinSta. -No other winsta can be visible/active. --Only WinSta0 can receive input. +-Only WinSta0 can receive input. -All other WinSta's are invisible/non-interactive WinStas. What good is a invisible WinSta? Its used for running services in thus services cant -interact with the user. +interact with the user. -There are limits to what u can do in a invisible WinSta. +There are limits to what u can do in a invisible WinSta. -Bitblt wont work for instance, since nothing is really displayed in a invisible WinSta (to save resources). No point in using GDI resources for stuff noone can see. -SendInput wont work @@ -52,7 +52,7 @@ A Window station can either be interactive or noninteractive. (At the moment on When the interactively logged-on user launches any processes, these processes are associated with the "default" Desktop in the "Winsta0" Window station. The "default" Desktop is considered the active Desktop. A process on the active Desktop could switch Desktops such that another Desktop becomes the active Desktop such as the "Winlogon" Desktop. Only one Desktop can be the active Desktop at any one time. -Desktops associated with a noninteractive Window station can create user objects. These objects will never be visible to the interactively logged-on user and will never receive any user input. If you have a noninteractive Service running in the LocalSystem account, any user objects created by the service will not be visible to the interactively logged-on user. In addition, any processes launched by the service will also not be visible. +Desktops associated with a noninteractive Window station can create user objects. These objects will never be visible to the interactively logged-on user and will never receive any user input. If you have a noninteractive Service running in the LocalSystem account, any user objects created by the service will not be visible to the interactively logged-on user. In addition, any processes launched by the service will also not be visible. If our desktop has the same name as the active one, we are running on the active (input) desktop. This is true because desktops have exactly one name each, and within a window station, desktop names must be unique @@ -90,7 +90,7 @@ THREADS: DESKTOP: -owns windows --Only one desktop at a time can interact with the user, and that desktop must necessarily +-Only one desktop at a time can interact with the user, and that desktop must necessarily be associated with Winsta0 -Only one desktop is visible to the user and only one can receives input at any time -contain a logical display surface @@ -110,7 +110,7 @@ SESSION: WINDOW STATION: -only Winsta0 has access to the display -Only one window station, called Winsta0, can interact with the user display, keyboard, mouse --is a secure object +-is a secure object -Only the interactive window station WinSta0, can display output or receive input. Other window stations are used by "services" (but cant u switch winsta?? so a noninteractive winsta becomes active?) @@ -119,13 +119,13 @@ WINDOW STATION: -contains a set of desktop objects -contains handle table(s) (handles are valid throughout the whole windowstation, not only the creating process) -contain heaps (pointer(s) to the section heap(s) shared between user32/gdi32/win32k) --A Windows 2000 session will have several windows stations, one assigned to the logon session +-A Windows 2000 session will have several windows stations, one assigned to the logon session of the interactive user, and others assigned to the Winlogon process, the secure screen saver process, and any service that runs in a security context other than that of the interactive user. The interactive window station assigned to the logon session of the interactive user also contains the keyboard, mouse, and display device. The interactive window station is visible to the user and - can receive input from the user. All other window stations are noninteractive, which means that + can receive input from the user. All other window stations are noninteractive, which means that they cannot be made visible to the user, and cannot receive user input. WINDOWS @@ -138,7 +138,7 @@ The desktop associated with a thread must be on the window station associated wi A thread can use the SetThreadDesktop function to change its desktop. The GetThreadDesktop function retrieves a handle to the desktop associated with a specified thread. -The calling process must have an associated window station, either assigned by the system at process creation time or set by SetProcessWindowStation. A desktop is a secure object contained within a window station object. +The calling process must have an associated window station, either assigned by the system at process creation time or set by SetProcessWindowStation. A desktop is a secure object contained within a window station object. There can be several window stations in the system but only one of them can diff --git a/media/drivers/etc/networks b/media/drivers/etc/networks index 6269a0d1927..e00e1533d4a 100644 --- a/media/drivers/etc/networks +++ b/media/drivers/etc/networks @@ -1,6 +1,6 @@ # The ReactOS networks file # -# This file contains network name/network number mappings for +# This file contains network name/network number mappings for # local networks. Network numbers are recognized in dotted decimal form. # # Format: diff --git a/media/drivers/etc/services b/media/drivers/etc/services index 79e78695990..3f8c22039e5 100644 --- a/media/drivers/etc/services +++ b/media/drivers/etc/services @@ -242,10 +242,10 @@ ingres-net 134/tcp #INGRES-NET Service ingres-net 134/udp #INGRES-NET Service epmap 135/tcp loc-srv #DCE endpoint resolution epmap 135/udp loc-srv #DCE endpoint resolution -profile 136/tcp #PROFILE Naming System -profile 136/udp #PROFILE Naming System -netbios-ns 137/tcp nbname #NETBIOS Name Service -netbios-ns 137/udp nbname #NETBIOS Name Service +profile 136/tcp #PROFILE Naming System +profile 136/udp #PROFILE Naming System +netbios-ns 137/tcp nbname #NETBIOS Name Service +netbios-ns 137/udp nbname #NETBIOS Name Service netbios-dgm 138/tcp #NETBIOS Datagram Service netbios-dgm 138/udp nbdatagram #NETBIOS Datagram Service netbios-ssn 139/tcp nbsession #NETBIOS Session Service @@ -254,176 +254,176 @@ emfis-data 140/tcp #EMFIS Data Service emfis-data 140/udp #EMFIS Data Service emfis-cntl 141/tcp #EMFIS Control Service emfis-cntl 141/udp #EMFIS Control Service -bl-idm 142/tcp #Britton-Lee IDM -bl-idm 142/udp #Britton-Lee IDM +bl-idm 142/tcp #Britton-Lee IDM +bl-idm 142/udp #Britton-Lee IDM imap 143/tcp imap4 #Internet Message Access Protocol imap 143/udp #Internet Message Access Protocol uma 144/tcp #Universal Management Architecture uma 144/udp #Universal Management Architecture -uaac 145/tcp #UAAC Protocol -uaac 145/udp #UAAC Protocol +uaac 145/tcp #UAAC Protocol +uaac 145/udp #UAAC Protocol iso-tp0 146/tcp #ISO-IP0 iso-tp0 146/udp #ISO-IP0 iso-ip 147/tcp #ISO-IP iso-ip 147/udp #ISO-IP jargon 148/tcp #Jargon jargon 148/udp #Jargon -aed-512 149/tcp #AED 512 Emulation Service -aed-512 149/udp #AED 512 Emulation Service -sql-net 150/tcp #SQL-NET -sql-net 150/udp #SQL-NET -hems 151/tcp #HEMS -hems 151/udp #HEMS -bftp 152/tcp #Background File Transfer Program -bftp 152/udp #Background File Transfer Program -sgmp 153/tcp #SGMP -sgmp 153/udp #SGMP -netsc-prod 154/tcp #NETSC -netsc-prod 154/udp #NETSC -netsc-dev 155/tcp #NETSC -netsc-dev 155/udp #NETSC -sqlsrv 156/tcp #SQL Service -sqlsrv 156/udp #SQL Service +aed-512 149/tcp #AED 512 Emulation Service +aed-512 149/udp #AED 512 Emulation Service +sql-net 150/tcp #SQL-NET +sql-net 150/udp #SQL-NET +hems 151/tcp #HEMS +hems 151/udp #HEMS +bftp 152/tcp #Background File Transfer Program +bftp 152/udp #Background File Transfer Program +sgmp 153/tcp #SGMP +sgmp 153/udp #SGMP +netsc-prod 154/tcp #NETSC +netsc-prod 154/udp #NETSC +netsc-dev 155/tcp #NETSC +netsc-dev 155/udp #NETSC +sqlsrv 156/tcp #SQL Service +sqlsrv 156/udp #SQL Service knet-cmp 157/tcp #KNET/VM Command/Message Protocol knet-cmp 157/udp #KNET/VM Command/Message Protocol -pcmail-srv 158/tcp #PCMail Server -pcmail-srv 158/udp #PCMail Server -nss-routing 159/tcp #NSS-Routing -nss-routing 159/udp #NSS-Routing -sgmp-traps 160/tcp #SGMP-TRAPS -sgmp-traps 160/udp #SGMP-TRAPS +pcmail-srv 158/tcp #PCMail Server +pcmail-srv 158/udp #PCMail Server +nss-routing 159/tcp #NSS-Routing +nss-routing 159/udp #NSS-Routing +sgmp-traps 160/tcp #SGMP-TRAPS +sgmp-traps 160/udp #SGMP-TRAPS snmp 161/tcp #SNMP snmp 161/udp #SNMP snmptrap 162/tcp #SNMPTRAP snmptrap 162/udp snmp-trap #SNMPTRAP -cmip-man 163/tcp #CMIP/TCP Manager -cmip-man 163/udp #CMIP/TCP Manager -cmip-agent 164/tcp #CMIP/TCP Agent -cmip-agent 164/udp #CMIP/TCP Agent -xns-courier 165/tcp #Xerox -xns-courier 165/udp #Xerox -s-net 166/tcp #Sirius Systems -s-net 166/udp #Sirius Systems -namp 167/tcp #NAMP -namp 167/udp #NAMP -rsvd 168/tcp #RSVD -rsvd 168/udp #RSVD -send 169/tcp #SEND -send 169/udp #SEND -print-srv 170/tcp #Network PostScript -print-srv 170/udp #Network PostScript +cmip-man 163/tcp #CMIP/TCP Manager +cmip-man 163/udp #CMIP/TCP Manager +cmip-agent 164/tcp #CMIP/TCP Agent +cmip-agent 164/udp #CMIP/TCP Agent +xns-courier 165/tcp #Xerox +xns-courier 165/udp #Xerox +s-net 166/tcp #Sirius Systems +s-net 166/udp #Sirius Systems +namp 167/tcp #NAMP +namp 167/udp #NAMP +rsvd 168/tcp #RSVD +rsvd 168/udp #RSVD +send 169/tcp #SEND +send 169/udp #SEND +print-srv 170/tcp #Network PostScript +print-srv 170/udp #Network PostScript multiplex 171/tcp #Network Innovations Multiplex multiplex 171/udp #Network Innovations Multiplex -xyplex-mux 173/tcp #Xyplex -xyplex-mux 173/udp #Xyplex -mailq 174/tcp #MAILQ -mailq 174/udp #MAILQ -vmnet 175/tcp #VMNET -vmnet 175/udp #VMNET -genrad-mux 176/tcp #GENRAD-MUX -genrad-mux 176/udp #GENRAD-MUX -xdmcp 177/tcp #X Display Manager Control Protocol -xdmcp 177/udp #X Display Manager Control Protocol -nextstep 178/tcp #NextStep Window Server -nextstep 178/udp #NextStep Window Server -bgp 179/tcp #Border Gateway Protocol -bgp 179/udp #Border Gateway Protocol -ris 180/tcp #Intergraph -ris 180/udp #Intergraph -unify 181/tcp #Unify -unify 181/udp #Unify -audit 182/tcp #Unisys Audit SITP -audit 182/udp #Unisys Audit SITP -ocbinder 183/tcp #OCBinder -ocbinder 183/udp #OCBinder -ocserver 184/tcp #OCServer -ocserver 184/udp #OCServer -remote-kis 185/tcp #Remote-KIS -remote-kis 185/udp #Remote-KIS -kis 186/tcp #KIS Protocol -kis 186/udp #KIS Protocol +xyplex-mux 173/tcp #Xyplex +xyplex-mux 173/udp #Xyplex +mailq 174/tcp #MAILQ +mailq 174/udp #MAILQ +vmnet 175/tcp #VMNET +vmnet 175/udp #VMNET +genrad-mux 176/tcp #GENRAD-MUX +genrad-mux 176/udp #GENRAD-MUX +xdmcp 177/tcp #X Display Manager Control Protocol +xdmcp 177/udp #X Display Manager Control Protocol +nextstep 178/tcp #NextStep Window Server +nextstep 178/udp #NextStep Window Server +bgp 179/tcp #Border Gateway Protocol +bgp 179/udp #Border Gateway Protocol +ris 180/tcp #Intergraph +ris 180/udp #Intergraph +unify 181/tcp #Unify +unify 181/udp #Unify +audit 182/tcp #Unisys Audit SITP +audit 182/udp #Unisys Audit SITP +ocbinder 183/tcp #OCBinder +ocbinder 183/udp #OCBinder +ocserver 184/tcp #OCServer +ocserver 184/udp #OCServer +remote-kis 185/tcp #Remote-KIS +remote-kis 185/udp #Remote-KIS +kis 186/tcp #KIS Protocol +kis 186/udp #KIS Protocol aci 187/tcp #Application Communication Interface aci 187/udp #Application Communication Interface -mumps 188/tcp #Plus Five's MUMPS -mumps 188/udp #Plus Five's MUMPS -qft 189/tcp #Queued File Transport -qft 189/udp #Queued File Transport +mumps 188/tcp #Plus Five's MUMPS +mumps 188/udp #Plus Five's MUMPS +qft 189/tcp #Queued File Transport +qft 189/udp #Queued File Transport gacp 190/tcp #Gateway Access Control Protocol gacp 190/udp #Gateway Access Control Protocol -prospero 191/tcp #Prospero Directory Service -prospero 191/udp #Prospero Directory Service -osu-nms 192/tcp #OSU Network Monitoring System -osu-nms 192/udp #OSU Network Monitoring System -srmp 193/tcp #Spider Remote Monitoring Protocol -srmp 193/udp #Spider Remote Monitoring Protocol -irc 194/tcp #Internet Relay Chat Protocol -irc 194/udp #Internet Relay Chat Protocol -dn6-nlm-aud 195/tcp #DNSIX Network Level Module Audit -dn6-nlm-aud 195/udp #DNSIX Network Level Module Audit +prospero 191/tcp #Prospero Directory Service +prospero 191/udp #Prospero Directory Service +osu-nms 192/tcp #OSU Network Monitoring System +osu-nms 192/udp #OSU Network Monitoring System +srmp 193/tcp #Spider Remote Monitoring Protocol +srmp 193/udp #Spider Remote Monitoring Protocol +irc 194/tcp #Internet Relay Chat Protocol +irc 194/udp #Internet Relay Chat Protocol +dn6-nlm-aud 195/tcp #DNSIX Network Level Module Audit +dn6-nlm-aud 195/udp #DNSIX Network Level Module Audit dn6-smm-red 196/tcp #DNSIX Session Mgt Module Audit Redir dn6-smm-red 196/udp #DNSIX Session Mgt Module Audit Redir -dls 197/tcp #Directory Location Service -dls 197/udp #Directory Location Service +dls 197/tcp #Directory Location Service +dls 197/udp #Directory Location Service dls-mon 198/tcp #Directory Location Service Monitor dls-mon 198/udp #Directory Location Service Monitor smux 199/tcp #SMUX smux 199/udp #SMUX src 200/tcp #IBM System Resource Controller src 200/udp #IBM System Resource Controller -at-rtmp 201/tcp #AppleTalk Routing Maintenance -at-rtmp 201/udp #AppleTalk Routing Maintenance -at-nbp 202/tcp #AppleTalk Name Binding -at-nbp 202/udp #AppleTalk Name Binding -at-3 203/tcp #AppleTalk Unused -at-3 203/udp #AppleTalk Unused -at-echo 204/tcp #AppleTalk Echo -at-echo 204/udp #AppleTalk Echo -at-5 205/tcp #AppleTalk Unused -at-5 205/udp #AppleTalk Unused -at-zis 206/tcp #AppleTalk Zone Information -at-zis 206/udp #AppleTalk Zone Information -at-7 207/tcp #AppleTalk Unused -at-7 207/udp #AppleTalk Unused -at-8 208/tcp #AppleTalk Unused -at-8 208/udp #AppleTalk Unused +at-rtmp 201/tcp #AppleTalk Routing Maintenance +at-rtmp 201/udp #AppleTalk Routing Maintenance +at-nbp 202/tcp #AppleTalk Name Binding +at-nbp 202/udp #AppleTalk Name Binding +at-3 203/tcp #AppleTalk Unused +at-3 203/udp #AppleTalk Unused +at-echo 204/tcp #AppleTalk Echo +at-echo 204/udp #AppleTalk Echo +at-5 205/tcp #AppleTalk Unused +at-5 205/udp #AppleTalk Unused +at-zis 206/tcp #AppleTalk Zone Information +at-zis 206/udp #AppleTalk Zone Information +at-7 207/tcp #AppleTalk Unused +at-7 207/udp #AppleTalk Unused +at-8 208/tcp #AppleTalk Unused +at-8 208/udp #AppleTalk Unused qmtp 209/tcp #The Quick Mail Transfer Protocol qmtp 209/udp #The Quick Mail Transfer Protocol z39.50 210/tcp #ANSI Z39.50 z39.50 210/udp #ANSI Z39.50 -anet 212/tcp #ATEXSSTR -anet 212/udp #ATEXSSTR -ipx 213/tcp #IPX -ipx 213/udp #IPX -vmpwscs 214/tcp #VM PWSCS -vmpwscs 214/udp #VM PWSCS +anet 212/tcp #ATEXSSTR +anet 212/udp #ATEXSSTR +ipx 213/tcp #IPX +ipx 213/udp #IPX +vmpwscs 214/tcp #VM PWSCS +vmpwscs 214/udp #VM PWSCS softpc 215/tcp #Insignia Solutions softpc 215/udp #Insignia Solutions dbase 217/tcp #dBASE Unix dbase 217/udp #dBASE Unix mpp 218/tcp #Netix Message Posting Protocol mpp 218/udp #Netix Message Posting Protocol -uarps 219/tcp #Unisys ARPs -uarps 219/udp #Unisys ARPs +uarps 219/tcp #Unisys ARPs +uarps 219/udp #Unisys ARPs imap3 220/tcp #Interactive Mail Access Protocol v3 imap3 220/udp #Interactive Mail Access Protocol v3 -fln-spx 221/tcp #Berkeley rlogind with SPX auth -fln-spx 221/udp #Berkeley rlogind with SPX auth -rsh-spx 222/tcp #Berkeley rshd with SPX auth -rsh-spx 222/udp #Berkeley rshd with SPX auth -cdc 223/tcp #Certificate Distribution Center -cdc 223/udp #Certificate Distribution Center +fln-spx 221/tcp #Berkeley rlogind with SPX auth +fln-spx 221/udp #Berkeley rlogind with SPX auth +rsh-spx 222/tcp #Berkeley rshd with SPX auth +rsh-spx 222/udp #Berkeley rshd with SPX auth +cdc 223/tcp #Certificate Distribution Center +cdc 223/udp #Certificate Distribution Center masqdialer 224/tcp #masqdialer masqdialer 224/udp #masqdialer direct 242/tcp #Direct direct 242/udp #Direct -sur-meas 243/tcp #Survey Measurement -sur-meas 243/udp #Survey Measurement +sur-meas 243/tcp #Survey Measurement +sur-meas 243/udp #Survey Measurement inbusiness 244/tcp #inbusiness inbusiness 244/udp #inbusiness link 245/tcp #LINK link 245/udp #LINK -dsp3270 246/tcp #Display Systems Protocol -dsp3270 246/udp #Display Systems Protocol +dsp3270 246/tcp #Display Systems Protocol +dsp3270 246/udp #Display Systems Protocol subntbcst_tftp 247/tcp #SUBNTBCST_TFTP subntbcst_tftp 247/udp #SUBNTBCST_TFTP bhfhs 248/tcp #bhfhs @@ -470,8 +470,8 @@ k-block 287/tcp #K-BLOCK k-block 287/udp #K-BLOCK novastorbakcup 308/tcp #Novastor Backup novastorbakcup 308/udp #Novastor Backup -entrusttime 309/tcp #EntrustTime -entrusttime 309/udp #EntrustTime +entrusttime 309/tcp #EntrustTime +entrusttime 309/udp #EntrustTime bhmds 310/tcp #bhmds bhmds 310/udp #bhmds asip-webadmin 311/tcp #AppleShare IP WebAdmin @@ -554,7 +554,7 @@ mortgageware 367/tcp #MortgageWare mortgageware 367/udp #MortgageWare qbikgdp 368/tcp #QbikGDP qbikgdp 368/udp #QbikGDP -rpc2portmap 369/tcp #rpc2portmap +rpc2portmap 369/tcp #rpc2portmap rpc2portmap 369/udp #rpc2portmap codaauth2 370/tcp #codaauth2 codaauth2 370/udp #codaauth2 @@ -568,7 +568,7 @@ legent-2 374/tcp #Legent Corporation legent-2 374/udp #Legent Corporation hassle 375/tcp #Hassle hassle 375/udp #Hassle -nip 376/tcp #Amiga Envoy Network Inquiry Proto +nip 376/tcp #Amiga Envoy Network Inquiry Proto nip 376/udp #Amiga Envoy Network Inquiry Proto tnETOS 377/tcp #NEC Corporation tnETOS 377/udp #NEC Corporation @@ -592,8 +592,8 @@ asa 386/tcp #ASA Message Router Object Def. asa 386/udp #ASA Message Router Object Def. aurp 387/tcp #Appletalk Update-Based Routing Pro. aurp 387/udp #Appletalk Update-Based Routing Pro. -unidata-ldm 388/tcp #Unidata LDM -unidata-ldm 388/udp #Unidata LDM +unidata-ldm 388/tcp #Unidata LDM +unidata-ldm 388/udp #Unidata LDM ldap 389/tcp #Lightweight Directory Access Protocol ldap 389/udp #Lightweight Directory Access Protocol uis 390/tcp #UIS @@ -661,7 +661,7 @@ smpte 420/udp #SMPTE ariel2 421/tcp #Ariel 2 ariel2 421/udp #Ariel 2 ariel3 422/tcp #Ariel 3 -ariel3 422/udp #Ariel 3 +ariel3 422/udp #Ariel 3 opc-job-start 423/tcp #IBM Operations Planning and Control Start opc-job-start 423/udp #IBM Operations Planning and Control Start opc-job-track 424/tcp #IBM Operations Planning and Control Track @@ -680,16 +680,16 @@ utmpsd 430/tcp #UTMPSD utmpsd 430/udp #UTMPSD utmpcd 431/tcp #UTMPCD utmpcd 431/udp #UTMPCD -iasd 432/tcp #IASD -iasd 432/udp #IASD +iasd 432/tcp #IASD +iasd 432/udp #IASD nnsp 433/tcp #NNSP nnsp 433/udp #NNSP mobileip-agent 434/tcp #MobileIP-Agent mobileip-agent 434/udp #MobileIP-Agent mobilip-mn 435/tcp #MobilIP-MN mobilip-mn 435/udp #MobilIP-MN -dna-cml 436/tcp #DNA-CML -dna-cml 436/udp #DNA-CML +dna-cml 436/tcp #DNA-CML +dna-cml 436/udp #DNA-CML comscm 437/tcp #comscm comscm 437/udp #comscm dsfgw 438/tcp #dsfgw @@ -734,8 +734,8 @@ scohelp 457/tcp #scohelp scohelp 457/udp #scohelp appleqtc 458/tcp #apple quick time appleqtc 458/udp #apple quick time -ampr-rcmd 459/tcp #ampr-rcmd -ampr-rcmd 459/udp #ampr-rcmd +ampr-rcmd 459/tcp #ampr-rcmd +ampr-rcmd 459/udp #ampr-rcmd skronk 460/tcp #skronk skronk 460/udp #skronk datasurfsrv 461/tcp #DataRampSrv @@ -747,7 +747,7 @@ alpes 463/udp #alpes kpasswd 464/tcp #kpasswd kpasswd 464/udp #kpasswd urd 465/tcp #URL Rendesvous Directory for SSM -igmpv3lite 465/udp #IGMP over UDP for SSM +igmpv3lite 465/udp #IGMP over UDP for SSM digital-vrc 466/tcp #digital-vrc digital-vrc 466/udp #digital-vrc mylex-mapd 467/tcp #mylex-mapd @@ -864,7 +864,7 @@ ulp 522/udp #ULP ibm-db2 523/tcp #IBM-DB2 ibm-db2 523/udp #IBM-DB2 ncp 524/tcp #NCP -ncp 524/udp #NCP +ncp 524/udp #NCP timed 525/tcp #timeserver timed 525/udp timeserver #timeserver tempo 526/tcp newdate #newdate @@ -897,7 +897,7 @@ apertus-ldp 539/tcp #Apertus Technologies Load Determination apertus-ldp 539/udp #Apertus Technologies Load Determination uucp 540/tcp uucpd #uucpd uucp 540/udp #uucpd -uucp-rlogin 541/tcp #uucp-rlogin +uucp-rlogin 541/tcp #uucp-rlogin uucp-rlogin 541/udp #uucp-rlogin commerce 542/tcp #commerce commerce 542/udp #commerce @@ -1025,14 +1025,14 @@ urm 606/tcp #Cray Unified Resource Manager urm 606/udp #Cray Unified Resource Manager nqs 607/tcp #nqs nqs 607/udp #nqs -sift-uft 608/tcp #Sender-Initiated/Unsolicited File Transfer +sift-uft 608/tcp #Sender-Initiated/Unsolicited File Transfer sift-uft 608/udp #Sender-Initiated/Unsolicited File Transfer npmp-trap 609/tcp #npmp-trap npmp-trap 609/udp #npmp-trap npmp-local 610/tcp #npmp-local npmp-local 610/udp #npmp-local -npmp-gui 611/tcp #npmp-gui -npmp-gui 611/udp #npmp-gui +npmp-gui 611/tcp #npmp-gui +npmp-gui 611/udp #npmp-gui hmmp-ind 612/tcp #HMMP Indication hmmp-ind 612/udp #HMMP Indication hmmp-op 613/tcp #HMMP Operation @@ -1114,7 +1114,7 @@ obex 650/udp #OBEX ieee-mms 651/tcp #IEEE MMS ieee-mms 651/udp #IEEE MMS hello-port 652/tcp #HELLO_PORT -hello-port 652/udp #HELLO_PORT +hello-port 652/udp #HELLO_PORT repscmd 653/tcp #RepCmd repscmd 653/udp #RepCmd aodv 654/tcp #AODV @@ -1163,20 +1163,20 @@ dctp 675/tcp #DCTP dctp 675/udp #DCTP vpps-via 676/tcp #VPPS Via vpps-via 676/udp #VPPS Via -vpp 677/tcp #Virtual Presence Protocol -vpp 677/udp #Virtual Presence Protocol +vpp 677/tcp #Virtual Presence Protocol +vpp 677/udp #Virtual Presence Protocol ggf-ncp 678/tcp #GNU Generation Foundation NCP ggf-ncp 678/udp #GNU Generation Foundation NCP mrm 679/tcp #MRM mrm 679/udp #MRM -entrust-aaas 680/tcp #entrust-aaas -entrust-aaas 680/udp #entrust-aaas +entrust-aaas 680/tcp #entrust-aaas +entrust-aaas 680/udp #entrust-aaas entrust-aams 681/tcp #entrust-aams entrust-aams 681/udp #entrust-aams xfr 682/tcp #XFR xfr 682/udp #XFR -corba-iiop 683/tcp #CORBA IIOP -corba-iiop 683/udp #CORBA IIOP +corba-iiop 683/tcp #CORBA IIOP +corba-iiop 683/udp #CORBA IIOP corba-iiop-ssl 684/tcp #CORBA IIOP SSL corba-iiop-ssl 684/udp #CORBA IIOP SSL mdc-portmapper 685/tcp #MDC Port Mapper @@ -1290,7 +1290,7 @@ xact-backup 911/udp #xact-backup apex-mesh 912/tcp #APEX relay-relay service apex-mesh 912/udp #APEX relay-relay service apex-edge 913/tcp #APEX endpoint-relay service -apex-edge 913/udp #APEX endpoint-relay service +apex-edge 913/udp #APEX endpoint-relay service ftps-data 989/tcp #ftp protocol, data, over TLS/SSL ftps-data 989/udp #ftp protocol, data, over TLS/SSL ftps 990/tcp #ftp protocol, control, over TLS/SSL @@ -1352,10 +1352,10 @@ remote-as 1053/tcp #Remote Assistant (RA) remote-as 1053/udp #Remote Assistant (RA) brvread 1054/tcp #BRVREAD brvread 1054/udp #BRVREAD -ansyslmd 1055/tcp #ANSYS - License Manager +ansyslmd 1055/tcp #ANSYS - License Manager ansyslmd 1055/udp #ANSYS - License Manager vfo 1056/tcp #VFO -vfo 1056/udp #VFO +vfo 1056/udp #VFO startron 1057/tcp #STARTRON startron 1057/udp #STARTRON nim 1058/tcp #nim @@ -1376,10 +1376,10 @@ syscomlan 1065/tcp #SYSCOMLAN syscomlan 1065/udp #SYSCOMLAN fpo-fns 1066/tcp #FPO-FNS fpo-fns 1066/udp #FPO-FNS -instl_boots 1067/tcp #Installation Bootstrap Proto. Serv. -instl_boots 1067/udp #Installation Bootstrap Proto. Serv. -instl_bootc 1068/tcp #Installation Bootstrap Proto. Cli. -instl_bootc 1068/udp #Installation Bootstrap Proto. Cli. +instl_boots 1067/tcp #Installation Bootstrap Proto. Serv. +instl_boots 1067/udp #Installation Bootstrap Proto. Serv. +instl_bootc 1068/tcp #Installation Bootstrap Proto. Cli. +instl_bootc 1068/udp #Installation Bootstrap Proto. Cli. cognex-insight 1069/tcp #COGNEX-INSIGHT cognex-insight 1069/udp #COGNEX-INSIGHT gmrupdateserv 1070/tcp #GMRUpdateSERV @@ -1402,12 +1402,12 @@ avocent-proxy 1078/tcp #Avocent Proxy Protocol avocent-proxy 1078/udp #Avocent Proxy Protocol asprovatalk 1079/tcp #ASPROVATalk asprovatalk 1079/udp #ASPROVATalk -socks 1080/tcp #Socks -socks 1080/udp #Socks +socks 1080/tcp #Socks +socks 1080/udp #Socks pvuniwien 1081/tcp #PVUNIWIEN pvuniwien 1081/udp #PVUNIWIEN amt-esd-prot 1082/tcp #AMT-ESD-PROT -amt-esd-prot 1082/udp #AMT-ESD-PROT +amt-esd-prot 1082/udp #AMT-ESD-PROT ansoft-lm-1 1083/tcp #Anasoft License Manager ansoft-lm-1 1083/udp #Anasoft License Manager ansoft-lm-2 1084/tcp #Anasoft License Manager @@ -1417,12 +1417,12 @@ webobjects 1085/udp #Web Objects cplscrambler-lg 1086/tcp #CPL Scrambler Logging cplscrambler-lg 1086/udp #CPL Scrambler Logging cplscrambler-in 1087/tcp #CPL Scrambler Internal -cplscrambler-in 1087/udp #CPL Scrambler Internal +cplscrambler-in 1087/udp #CPL Scrambler Internal cplscrambler-al 1088/tcp #CPL Scrambler Alarm Log cplscrambler-al 1088/udp #CPL Scrambler Alarm Log -ff-annunc 1089/tcp #FF Annunciation -ff-annunc 1089/udp #FF Annunciation -ff-fms 1090/tcp #FF Fieldbus Message Specification +ff-annunc 1089/tcp #FF Annunciation +ff-annunc 1089/udp #FF Annunciation +ff-fms 1090/tcp #FF Fieldbus Message Specification ff-fms 1090/udp #FF Fieldbus Message Specification ff-sm 1091/tcp #FF System Management ff-sm 1091/udp #FF System Management @@ -1442,7 +1442,7 @@ rmiactivation 1098/tcp #RMI Activation rmiactivation 1098/udp #RMI Activation rmiregistry 1099/tcp #RMI Registry rmiregistry 1099/udp #RMI Registry -mctp 1100/tcp #MCTP +mctp 1100/tcp #MCTP mctp 1100/udp #MCTP pt2-discover 1101/tcp #PT2-DISCOVER pt2-discover 1101/udp #PT2-DISCOVER @@ -1455,9 +1455,9 @@ xrl 1104/udp #XRL ftranhc 1105/tcp #FTRANHC ftranhc 1105/udp #FTRANHC isoipsigport-1 1106/tcp #ISOIPSIGPORT-1 -isoipsigport-1 1106/udp #ISOIPSIGPORT-1 -isoipsigport-2 1107/tcp #ISOIPSIGPORT-2 -isoipsigport-2 1107/udp #ISOIPSIGPORT-2 +isoipsigport-1 1106/udp #ISOIPSIGPORT-1 +isoipsigport-2 1107/tcp #ISOIPSIGPORT-2 +isoipsigport-2 1107/udp #ISOIPSIGPORT-2 ratio-adp 1108/tcp #ratio-adp ratio-adp 1108/udp #ratio-adp nfsd-status 1110/tcp #Cluster status info @@ -1482,8 +1482,8 @@ availant-mgr 1122/tcp #availant-mgr availant-mgr 1122/udp #availant-mgr murray 1123/tcp #Murray murray 1123/udp #Murray -nfa 1155/tcp #Network File Access -nfa 1155/udp #Network File Access +nfa 1155/tcp #Network File Access +nfa 1155/udp #Network File Access health-polling 1161/tcp #Health Polling health-polling 1161/udp #Health Polling health-trap 1162/tcp #Health Trap @@ -1552,8 +1552,8 @@ qt-serveradmin 1220/tcp #QT SERVER ADMIN qt-serveradmin 1220/udp #QT SERVER ADMIN sweetware-apps 1221/tcp #SweetWARE Apps sweetware-apps 1221/udp #SweetWARE Apps -nerv 1222/tcp #SNI R&D network -nerv 1222/udp #SNI R&D network +nerv 1222/tcp #SNI R&D network +nerv 1222/udp #SNI R&D network tgp 1223/tcp #TGP tgp 1223/udp #TGP vpnz 1224/tcp #VPNz @@ -1665,7 +1665,7 @@ miva-mqs 1277/udp #mqs dellwebadmin-1 1278/tcp #Dell Web Admin 1 dellwebadmin-1 1278/udp #Dell Web Admin 1 dellwebadmin-2 1279/tcp #Dell Web Admin 2 -dellwebadmin-2 1279/udp #Dell Web Admin 2 +dellwebadmin-2 1279/udp #Dell Web Admin 2 pictrography 1280/tcp #Pictrography pictrography 1280/udp #Pictrography healthd 1281/tcp #healthd @@ -1679,13 +1679,13 @@ iee-qfx 1284/udp #IEE-QFX neoiface 1285/tcp #neoiface neoiface 1285/udp #neoiface netuitive 1286/tcp #netuitive -netuitive 1286/udp #netuitive +netuitive 1286/udp #netuitive navbuddy 1288/tcp #NavBuddy navbuddy 1288/udp #NavBuddy jwalkserver 1289/tcp #JWalkServer jwalkserver 1289/udp #JWalkServer -winjaserver 1290/tcp #WinJaServer -winjaserver 1290/udp #WinJaServer +winjaserver 1290/tcp #WinJaServer +winjaserver 1290/udp #WinJaServer seagulllms 1291/tcp #SEAGULLLMS seagulllms 1291/udp #SEAGULLLMS dsdn 1292/tcp #dsdn @@ -1796,114 +1796,114 @@ icap 1344/tcp #ICAP icap 1344/udp #ICAP vpjp 1345/tcp #VPJP vpjp 1345/udp #VPJP -alta-ana-lm 1346/tcp #Alta Analytics License Manager -alta-ana-lm 1346/udp #Alta Analytics License Manager +alta-ana-lm 1346/tcp #Alta Analytics License Manager +alta-ana-lm 1346/udp #Alta Analytics License Manager bbn-mmc 1347/tcp #multi media conferencing bbn-mmc 1347/udp #multi media conferencing bbn-mmx 1348/tcp #multi media conferencing bbn-mmx 1348/udp #multi media conferencing -sbook 1349/tcp #Registration Network Protocol -sbook 1349/udp #Registration Network Protocol -editbench 1350/tcp #Registration Network Protocol -editbench 1350/udp #Registration Network Protocol -equationbuilder 1351/tcp #Digital Tool Works (MIT) -equationbuilder 1351/udp #Digital Tool Works (MIT) -lotusnote 1352/tcp #Lotus Note -lotusnote 1352/udp #Lotus Note -relief 1353/tcp #Relief Consulting -relief 1353/udp #Relief Consulting -intuitive-edge 1355/tcp #Intuitive Edge -intuitive-edge 1355/udp #Intuitive Edge -cuillamartin 1356/tcp #CuillaMartin Company -cuillamartin 1356/udp #CuillaMartin Company -pegboard 1357/tcp #Electronic PegBoard -pegboard 1357/udp #Electronic PegBoard -connlcli 1358/tcp #CONNLCLI -connlcli 1358/udp #CONNLCLI -ftsrv 1359/tcp #FTSRV -ftsrv 1359/udp #FTSRV -mimer 1360/tcp #MIMER -mimer 1360/udp #MIMER -linx 1361/tcp #LinX -linx 1361/udp #LinX -timeflies 1362/tcp #TimeFlies -timeflies 1362/udp #TimeFlies +sbook 1349/tcp #Registration Network Protocol +sbook 1349/udp #Registration Network Protocol +editbench 1350/tcp #Registration Network Protocol +editbench 1350/udp #Registration Network Protocol +equationbuilder 1351/tcp #Digital Tool Works (MIT) +equationbuilder 1351/udp #Digital Tool Works (MIT) +lotusnote 1352/tcp #Lotus Note +lotusnote 1352/udp #Lotus Note +relief 1353/tcp #Relief Consulting +relief 1353/udp #Relief Consulting +intuitive-edge 1355/tcp #Intuitive Edge +intuitive-edge 1355/udp #Intuitive Edge +cuillamartin 1356/tcp #CuillaMartin Company +cuillamartin 1356/udp #CuillaMartin Company +pegboard 1357/tcp #Electronic PegBoard +pegboard 1357/udp #Electronic PegBoard +connlcli 1358/tcp #CONNLCLI +connlcli 1358/udp #CONNLCLI +ftsrv 1359/tcp #FTSRV +ftsrv 1359/udp #FTSRV +mimer 1360/tcp #MIMER +mimer 1360/udp #MIMER +linx 1361/tcp #LinX +linx 1361/udp #LinX +timeflies 1362/tcp #TimeFlies +timeflies 1362/udp #TimeFlies ndm-requester 1363/tcp #Network DataMover Requester ndm-requester 1363/udp #Network DataMover Requester -ndm-server 1364/tcp #Network DataMover Server -ndm-server 1364/udp #Network DataMover Server +ndm-server 1364/tcp #Network DataMover Server +ndm-server 1364/udp #Network DataMover Server adapt-sna 1365/tcp #Network Software Associates adapt-sna 1365/udp #Network Software Associates netware-csp 1366/tcp #Novell NetWare Comm Service Platform netware-csp 1366/udp #Novell NetWare Comm Service Platform -dcs 1367/tcp #DCS -dcs 1367/udp #DCS -screencast 1368/tcp #ScreenCast -screencast 1368/udp #ScreenCast -gv-us 1369/tcp #GlobalView to Unix Shell -gv-us 1369/udp #GlobalView to Unix Shell -us-gv 1370/tcp #Unix Shell to GlobalView -us-gv 1370/udp #Unix Shell to GlobalView -fc-cli 1371/tcp #Fujitsu Config Protocol -fc-cli 1371/udp #Fujitsu Config Protocol -fc-ser 1372/tcp #Fujitsu Config Protocol -fc-ser 1372/udp #Fujitsu Config Protocol -chromagrafx 1373/tcp #Chromagrafx -chromagrafx 1373/udp #Chromagrafx -molly 1374/tcp #EPI Software Systems -molly 1374/udp #EPI Software Systems -bytex 1375/tcp #Bytex -bytex 1375/udp #Bytex -ibm-pps 1376/tcp #IBM Person to Person Software -ibm-pps 1376/udp #IBM Person to Person Software -cichlid 1377/tcp #Cichlid License Manager -cichlid 1377/udp #Cichlid License Manager -elan 1378/tcp #Elan License Manager -elan 1378/udp #Elan License Manager -dbreporter 1379/tcp #Integrity Solutions -dbreporter 1379/udp #Integrity Solutions -telesis-licman 1380/tcp #Telesis Network License Manager -telesis-licman 1380/udp #Telesis Network License Manager -apple-licman 1381/tcp #Apple Network License Manager -apple-licman 1381/udp #Apple Network License Manager +dcs 1367/tcp #DCS +dcs 1367/udp #DCS +screencast 1368/tcp #ScreenCast +screencast 1368/udp #ScreenCast +gv-us 1369/tcp #GlobalView to Unix Shell +gv-us 1369/udp #GlobalView to Unix Shell +us-gv 1370/tcp #Unix Shell to GlobalView +us-gv 1370/udp #Unix Shell to GlobalView +fc-cli 1371/tcp #Fujitsu Config Protocol +fc-cli 1371/udp #Fujitsu Config Protocol +fc-ser 1372/tcp #Fujitsu Config Protocol +fc-ser 1372/udp #Fujitsu Config Protocol +chromagrafx 1373/tcp #Chromagrafx +chromagrafx 1373/udp #Chromagrafx +molly 1374/tcp #EPI Software Systems +molly 1374/udp #EPI Software Systems +bytex 1375/tcp #Bytex +bytex 1375/udp #Bytex +ibm-pps 1376/tcp #IBM Person to Person Software +ibm-pps 1376/udp #IBM Person to Person Software +cichlid 1377/tcp #Cichlid License Manager +cichlid 1377/udp #Cichlid License Manager +elan 1378/tcp #Elan License Manager +elan 1378/udp #Elan License Manager +dbreporter 1379/tcp #Integrity Solutions +dbreporter 1379/udp #Integrity Solutions +telesis-licman 1380/tcp #Telesis Network License Manager +telesis-licman 1380/udp #Telesis Network License Manager +apple-licman 1381/tcp #Apple Network License Manager +apple-licman 1381/udp #Apple Network License Manager udt_os 1382/tcp #udt_os udt_os 1382/udp #udt_os gwha 1383/tcp #GW Hannaway Network License Manager gwha 1383/udp #GW Hannaway Network License Manager -os-licman 1384/tcp #Objective Solutions License Manager -os-licman 1384/udp #Objective Solutions License Manager +os-licman 1384/tcp #Objective Solutions License Manager +os-licman 1384/udp #Objective Solutions License Manager atex_elmd 1385/tcp #Atex Publishing License Manager atex_elmd 1385/udp #Atex Publishing License Manager -checksum 1386/tcp #CheckSum License Manager -checksum 1386/udp #CheckSum License Manager -cadsi-lm 1387/tcp #Computer Aided Design Software Inc LM -cadsi-lm 1387/udp #Computer Aided Design Software Inc LM +checksum 1386/tcp #CheckSum License Manager +checksum 1386/udp #CheckSum License Manager +cadsi-lm 1387/tcp #Computer Aided Design Software Inc LM +cadsi-lm 1387/udp #Computer Aided Design Software Inc LM objective-dbc 1388/tcp #Objective Solutions DataBase Cache objective-dbc 1388/udp #Objective Solutions DataBase Cache -iclpv-dm 1389/tcp #Document Manager -iclpv-dm 1389/udp #Document Manager -iclpv-sc 1390/tcp #Storage Controller -iclpv-sc 1390/udp #Storage Controller -iclpv-sas 1391/tcp #Storage Access Server -iclpv-sas 1391/udp #Storage Access Server -iclpv-pm 1392/tcp #Print Manager -iclpv-pm 1392/udp #Print Manager -iclpv-nls 1393/tcp #Network Log Server -iclpv-nls 1393/udp #Network Log Server -iclpv-nlc 1394/tcp #Network Log Client -iclpv-nlc 1394/udp #Network Log Client -iclpv-wsm 1395/tcp #PC Workstation Manager software -iclpv-wsm 1395/udp #PC Workstation Manager software -dvl-activemail 1396/tcp #DVL Active Mail -dvl-activemail 1396/udp #DVL Active Mail -audio-activmail 1397/tcp #Audio Active Mail -audio-activmail 1397/udp #Audio Active Mail -video-activmail 1398/tcp #Video Active Mail -video-activmail 1398/udp #Video Active Mail -cadkey-licman 1399/tcp #Cadkey License Manager -cadkey-licman 1399/udp #Cadkey License Manager -cadkey-tablet 1400/tcp #Cadkey Tablet Daemon -cadkey-tablet 1400/udp #Cadkey Tablet Daemon +iclpv-dm 1389/tcp #Document Manager +iclpv-dm 1389/udp #Document Manager +iclpv-sc 1390/tcp #Storage Controller +iclpv-sc 1390/udp #Storage Controller +iclpv-sas 1391/tcp #Storage Access Server +iclpv-sas 1391/udp #Storage Access Server +iclpv-pm 1392/tcp #Print Manager +iclpv-pm 1392/udp #Print Manager +iclpv-nls 1393/tcp #Network Log Server +iclpv-nls 1393/udp #Network Log Server +iclpv-nlc 1394/tcp #Network Log Client +iclpv-nlc 1394/udp #Network Log Client +iclpv-wsm 1395/tcp #PC Workstation Manager software +iclpv-wsm 1395/udp #PC Workstation Manager software +dvl-activemail 1396/tcp #DVL Active Mail +dvl-activemail 1396/udp #DVL Active Mail +audio-activmail 1397/tcp #Audio Active Mail +audio-activmail 1397/udp #Audio Active Mail +video-activmail 1398/tcp #Video Active Mail +video-activmail 1398/udp #Video Active Mail +cadkey-licman 1399/tcp #Cadkey License Manager +cadkey-licman 1399/udp #Cadkey License Manager +cadkey-tablet 1400/tcp #Cadkey Tablet Daemon +cadkey-tablet 1400/udp #Cadkey Tablet Daemon goldleaf-licman 1401/tcp #Goldleaf License Manager goldleaf-licman 1401/udp #Goldleaf License Manager prm-sm-np 1402/tcp #Prospero Resource Manager @@ -1916,106 +1916,106 @@ ibm-res 1405/tcp #IBM Remote Execution Starter ibm-res 1405/udp #IBM Remote Execution Starter netlabs-lm 1406/tcp #NetLabs License Manager netlabs-lm 1406/udp #NetLabs License Manager -dbsa-lm 1407/tcp #DBSA License Manager -dbsa-lm 1407/udp #DBSA License Manager -sophia-lm 1408/tcp #Sophia License Manager -sophia-lm 1408/udp #Sophia License Manager -here-lm 1409/tcp #Here License Manager -here-lm 1409/udp #Here License Manager -hiq 1410/tcp #HiQ License Manager -hiq 1410/udp #HiQ License Manager -af 1411/tcp #AudioFile -af 1411/udp #AudioFile -innosys 1412/tcp #InnoSys -innosys 1412/udp #InnoSys -innosys-acl 1413/tcp #Innosys-ACL -innosys-acl 1413/udp #Innosys-ACL -ibm-mqseries 1414/tcp #IBM MQSeries -ibm-mqseries 1414/udp #IBM MQSeries -dbstar 1415/tcp #DBStar -dbstar 1415/udp #DBStar -novell-lu6.2 1416/tcp #Novell LU6.2 -novell-lu6.2 1416/udp #Novell LU6.2 -timbuktu-srv1 1417/tcp #Timbuktu Service 1 Port -timbuktu-srv1 1417/udp #Timbuktu Service 1 Port -timbuktu-srv2 1418/tcp #Timbuktu Service 2 Port -timbuktu-srv2 1418/udp #Timbuktu Service 2 Port -timbuktu-srv3 1419/tcp #Timbuktu Service 3 Port -timbuktu-srv3 1419/udp #Timbuktu Service 3 Port -timbuktu-srv4 1420/tcp #Timbuktu Service 4 Port -timbuktu-srv4 1420/udp #Timbuktu Service 4 Port +dbsa-lm 1407/tcp #DBSA License Manager +dbsa-lm 1407/udp #DBSA License Manager +sophia-lm 1408/tcp #Sophia License Manager +sophia-lm 1408/udp #Sophia License Manager +here-lm 1409/tcp #Here License Manager +here-lm 1409/udp #Here License Manager +hiq 1410/tcp #HiQ License Manager +hiq 1410/udp #HiQ License Manager +af 1411/tcp #AudioFile +af 1411/udp #AudioFile +innosys 1412/tcp #InnoSys +innosys 1412/udp #InnoSys +innosys-acl 1413/tcp #Innosys-ACL +innosys-acl 1413/udp #Innosys-ACL +ibm-mqseries 1414/tcp #IBM MQSeries +ibm-mqseries 1414/udp #IBM MQSeries +dbstar 1415/tcp #DBStar +dbstar 1415/udp #DBStar +novell-lu6.2 1416/tcp #Novell LU6.2 +novell-lu6.2 1416/udp #Novell LU6.2 +timbuktu-srv1 1417/tcp #Timbuktu Service 1 Port +timbuktu-srv1 1417/udp #Timbuktu Service 1 Port +timbuktu-srv2 1418/tcp #Timbuktu Service 2 Port +timbuktu-srv2 1418/udp #Timbuktu Service 2 Port +timbuktu-srv3 1419/tcp #Timbuktu Service 3 Port +timbuktu-srv3 1419/udp #Timbuktu Service 3 Port +timbuktu-srv4 1420/tcp #Timbuktu Service 4 Port +timbuktu-srv4 1420/udp #Timbuktu Service 4 Port gandalf-lm 1421/tcp #Gandalf License Manager gandalf-lm 1421/udp #Gandalf License Manager -autodesk-lm 1422/tcp #Autodesk License Manager -autodesk-lm 1422/udp #Autodesk License Manager -essbase 1423/tcp #Essbase Arbor Software -essbase 1423/udp #Essbase Arbor Software -hybrid 1424/tcp #Hybrid Encryption Protocol -hybrid 1424/udp #Hybrid Encryption Protocol -zion-lm 1425/tcp #Zion Software License Manager -zion-lm 1425/udp #Zion Software License Manager +autodesk-lm 1422/tcp #Autodesk License Manager +autodesk-lm 1422/udp #Autodesk License Manager +essbase 1423/tcp #Essbase Arbor Software +essbase 1423/udp #Essbase Arbor Software +hybrid 1424/tcp #Hybrid Encryption Protocol +hybrid 1424/udp #Hybrid Encryption Protocol +zion-lm 1425/tcp #Zion Software License Manager +zion-lm 1425/udp #Zion Software License Manager sais 1426/tcp #Satellite-data Acquisition System 1 sais 1426/udp #Satellite-data Acquisition System 1 -mloadd 1427/tcp #mloadd monitoring tool -mloadd 1427/udp #mloadd monitoring tool +mloadd 1427/tcp #mloadd monitoring tool +mloadd 1427/udp #mloadd monitoring tool informatik-lm 1428/tcp #Informatik License Manager informatik-lm 1428/udp #Informatik License Manager -nms 1429/tcp #Hypercom NMS -nms 1429/udp #Hypercom NMS -tpdu 1430/tcp #Hypercom TPDU -tpdu 1430/udp #Hypercom TPDU +nms 1429/tcp #Hypercom NMS +nms 1429/udp #Hypercom NMS +tpdu 1430/tcp #Hypercom TPDU +tpdu 1430/udp #Hypercom TPDU rgtp 1431/tcp #Reverse Gossip Transport rgtp 1431/udp #Reverse Gossip Transport -blueberry-lm 1432/tcp #Blueberry Software License Manager -blueberry-lm 1432/udp #Blueberry Software License Manager -ms-sql-s 1433/tcp #Microsoft-SQL-Server -ms-sql-s 1433/udp #Microsoft-SQL-Server +blueberry-lm 1432/tcp #Blueberry Software License Manager +blueberry-lm 1432/udp #Blueberry Software License Manager +ms-sql-s 1433/tcp #Microsoft-SQL-Server +ms-sql-s 1433/udp #Microsoft-SQL-Server ms-sql-m 1434/tcp #Microsoft-SQL-Monitor -ms-sql-m 1434/udp #Microsoft-SQL-Monitor +ms-sql-m 1434/udp #Microsoft-SQL-Monitor ibm-cics 1435/tcp #IBM CICS ibm-cics 1435/udp #IBM CICS saism 1436/tcp #Satellite-data Acquisition System 2 saism 1436/udp #Satellite-data Acquisition System 2 tabula 1437/tcp #Tabula tabula 1437/udp #Tabula -eicon-server 1438/tcp #Eicon Security Agent/Server -eicon-server 1438/udp #Eicon Security Agent/Server -eicon-x25 1439/tcp #Eicon X25/SNA Gateway -eicon-x25 1439/udp #Eicon X25/SNA Gateway -eicon-slp 1440/tcp #Eicon Service Location Protocol -eicon-slp 1440/udp #Eicon Service Location Protocol -cadis-1 1441/tcp #Cadis License Management -cadis-1 1441/udp #Cadis License Management -cadis-2 1442/tcp #Cadis License Management -cadis-2 1442/udp #Cadis License Management -ies-lm 1443/tcp #Integrated Engineering Software -ies-lm 1443/udp #Integrated Engineering Software -marcam-lm 1444/tcp #Marcam License Management -marcam-lm 1444/udp #Marcam License Management -proxima-lm 1445/tcp #Proxima License Manager -proxima-lm 1445/udp #Proxima License Manager +eicon-server 1438/tcp #Eicon Security Agent/Server +eicon-server 1438/udp #Eicon Security Agent/Server +eicon-x25 1439/tcp #Eicon X25/SNA Gateway +eicon-x25 1439/udp #Eicon X25/SNA Gateway +eicon-slp 1440/tcp #Eicon Service Location Protocol +eicon-slp 1440/udp #Eicon Service Location Protocol +cadis-1 1441/tcp #Cadis License Management +cadis-1 1441/udp #Cadis License Management +cadis-2 1442/tcp #Cadis License Management +cadis-2 1442/udp #Cadis License Management +ies-lm 1443/tcp #Integrated Engineering Software +ies-lm 1443/udp #Integrated Engineering Software +marcam-lm 1444/tcp #Marcam License Management +marcam-lm 1444/udp #Marcam License Management +proxima-lm 1445/tcp #Proxima License Manager +proxima-lm 1445/udp #Proxima License Manager ora-lm 1446/tcp #Optical Research Associates License Manager ora-lm 1446/udp #Optical Research Associates License Manager apri-lm 1447/tcp #Applied Parallel Research LM apri-lm 1447/udp #Applied Parallel Research LM oc-lm 1448/tcp #OpenConnect License Manager oc-lm 1448/udp #OpenConnect License Manager -peport 1449/tcp #PEport -peport 1449/udp #PEport -dwf 1450/tcp #Tandem Distributed Workbench Facility -dwf 1450/udp #Tandem Distributed Workbench Facility +peport 1449/tcp #PEport +peport 1449/udp #PEport +dwf 1450/tcp #Tandem Distributed Workbench Facility +dwf 1450/udp #Tandem Distributed Workbench Facility infoman 1451/tcp #IBM Information Management infoman 1451/udp #IBM Information Management -gtegsc-lm 1452/tcp #GTE Government Systems License Man -gtegsc-lm 1452/udp #GTE Government Systems License Man -genie-lm 1453/tcp #Genie License Manager -genie-lm 1453/udp #Genie License Manager -interhdl_elmd 1454/tcp #interHDL License Manager -interhdl_elmd 1454/udp #interHDL License Manager -esl-lm 1455/tcp #ESL License Manager -esl-lm 1455/udp #ESL License Manager -dca 1456/tcp #DCA -dca 1456/udp #DCA +gtegsc-lm 1452/tcp #GTE Government Systems License Man +gtegsc-lm 1452/udp #GTE Government Systems License Man +genie-lm 1453/tcp #Genie License Manager +genie-lm 1453/udp #Genie License Manager +interhdl_elmd 1454/tcp #interHDL License Manager +interhdl_elmd 1454/udp #interHDL License Manager +esl-lm 1455/tcp #ESL License Manager +esl-lm 1455/udp #ESL License Manager +dca 1456/tcp #DCA +dca 1456/udp #DCA valisys-lm 1457/tcp #Valisys License Manager valisys-lm 1457/udp #Valisys License Manager nrcabq-lm 1458/tcp #Nichols Research Corp. @@ -2024,76 +2024,76 @@ proshare1 1459/tcp #Proshare Notebook Application proshare1 1459/udp #Proshare Notebook Application proshare2 1460/tcp #Proshare Notebook Application proshare2 1460/udp #Proshare Notebook Application -ibm_wrless_lan 1461/tcp #IBM Wireless LAN -ibm_wrless_lan 1461/udp #IBM Wireless LAN +ibm_wrless_lan 1461/tcp #IBM Wireless LAN +ibm_wrless_lan 1461/udp #IBM Wireless LAN world-lm 1462/tcp #World License Manager world-lm 1462/udp #World License Manager nucleus 1463/tcp #Nucleus nucleus 1463/udp #Nucleus msl_lmd 1464/tcp #MSL License Manager msl_lmd 1464/udp #MSL License Manager -pipes 1465/tcp #Pipes Platform +pipes 1465/tcp #Pipes Platform pipes 1465/udp #Pipes Platform mfarlin@peerlogic.com oceansoft-lm 1466/tcp #Ocean Software License Manager oceansoft-lm 1466/udp #Ocean Software License Manager -csdmbase 1467/tcp #CSDMBASE -csdmbase 1467/udp #CSDMBASE -csdm 1468/tcp #CSDM -csdm 1468/udp #CSDM +csdmbase 1467/tcp #CSDMBASE +csdmbase 1467/udp #CSDMBASE +csdm 1468/tcp #CSDM +csdm 1468/udp #CSDM aal-lm 1469/tcp #Active Analysis Limited License Manager aal-lm 1469/udp #Active Analysis Limited License Manager -uaiact 1470/tcp #Universal Analytics -uaiact 1470/udp #Universal Analytics -csdmbase 1471/tcp #csdmbase -csdmbase 1471/udp #csdmbase -csdm 1472/tcp #csdm -csdm 1472/udp #csdm -openmath 1473/tcp #OpenMath -openmath 1473/udp #OpenMath -telefinder 1474/tcp #Telefinder -telefinder 1474/udp #Telefinder -taligent-lm 1475/tcp #Taligent License Manager -taligent-lm 1475/udp #Taligent License Manager -clvm-cfg 1476/tcp #clvm-cfg -clvm-cfg 1476/udp #clvm-cfg -ms-sna-server 1477/tcp #ms-sna-server -ms-sna-server 1477/udp #ms-sna-server -ms-sna-base 1478/tcp #ms-sna-base -ms-sna-base 1478/udp #ms-sna-base -dberegister 1479/tcp #dberegister -dberegister 1479/udp #dberegister -pacerforum 1480/tcp #PacerForum -pacerforum 1480/udp #PacerForum -airs 1481/tcp #AIRS -airs 1481/udp #AIRS +uaiact 1470/tcp #Universal Analytics +uaiact 1470/udp #Universal Analytics +csdmbase 1471/tcp #csdmbase +csdmbase 1471/udp #csdmbase +csdm 1472/tcp #csdm +csdm 1472/udp #csdm +openmath 1473/tcp #OpenMath +openmath 1473/udp #OpenMath +telefinder 1474/tcp #Telefinder +telefinder 1474/udp #Telefinder +taligent-lm 1475/tcp #Taligent License Manager +taligent-lm 1475/udp #Taligent License Manager +clvm-cfg 1476/tcp #clvm-cfg +clvm-cfg 1476/udp #clvm-cfg +ms-sna-server 1477/tcp #ms-sna-server +ms-sna-server 1477/udp #ms-sna-server +ms-sna-base 1478/tcp #ms-sna-base +ms-sna-base 1478/udp #ms-sna-base +dberegister 1479/tcp #dberegister +dberegister 1479/udp #dberegister +pacerforum 1480/tcp #PacerForum +pacerforum 1480/udp #PacerForum +airs 1481/tcp #AIRS +airs 1481/udp #AIRS miteksys-lm 1482/tcp #Miteksys License Manager miteksys-lm 1482/udp #Miteksys License Manager -afs 1483/tcp #AFS License Manager -afs 1483/udp #AFS License Manager -confluent 1484/tcp #Confluent License Manager -confluent 1484/udp #Confluent License Manager -lansource 1485/tcp #LANSource -lansource 1485/udp #LANSource -nms_topo_serv 1486/tcp #nms_topo_serv -nms_topo_serv 1486/udp #nms_topo_serv -localinfosrvr 1487/tcp #LocalInfoSrvr -localinfosrvr 1487/udp #LocalInfoSrvr -docstor 1488/tcp #DocStor -docstor 1488/udp #DocStor -dmdocbroker 1489/tcp #dmdocbroker -dmdocbroker 1489/udp #dmdocbroker -insitu-conf 1490/tcp #insitu-conf -insitu-conf 1490/udp #insitu-conf -anynetgateway 1491/tcp #anynetgateway -anynetgateway 1491/udp #anynetgateway -stone-design-1 1492/tcp #stone-design-1 -stone-design-1 1492/udp #stone-design-1 -netmap_lm 1493/tcp #netmap_lm -netmap_lm 1493/udp #netmap_lm -ica 1494/tcp #ica -ica 1494/udp #ica -cvc 1495/tcp #cvc -cvc 1495/udp #cvc +afs 1483/tcp #AFS License Manager +afs 1483/udp #AFS License Manager +confluent 1484/tcp #Confluent License Manager +confluent 1484/udp #Confluent License Manager +lansource 1485/tcp #LANSource +lansource 1485/udp #LANSource +nms_topo_serv 1486/tcp #nms_topo_serv +nms_topo_serv 1486/udp #nms_topo_serv +localinfosrvr 1487/tcp #LocalInfoSrvr +localinfosrvr 1487/udp #LocalInfoSrvr +docstor 1488/tcp #DocStor +docstor 1488/udp #DocStor +dmdocbroker 1489/tcp #dmdocbroker +dmdocbroker 1489/udp #dmdocbroker +insitu-conf 1490/tcp #insitu-conf +insitu-conf 1490/udp #insitu-conf +anynetgateway 1491/tcp #anynetgateway +anynetgateway 1491/udp #anynetgateway +stone-design-1 1492/tcp #stone-design-1 +stone-design-1 1492/udp #stone-design-1 +netmap_lm 1493/tcp #netmap_lm +netmap_lm 1493/udp #netmap_lm +ica 1494/tcp #ica +ica 1494/udp #ica +cvc 1495/tcp #cvc +cvc 1495/udp #cvc liberty-lm 1496/tcp #liberty-lm liberty-lm 1496/udp #liberty-lm rfx-lm 1497/tcp #rfx-lm @@ -2104,8 +2104,8 @@ fhc 1499/tcp #Federico Heinz Consultora fhc 1499/udp #Federico Heinz Consultora vlsi-lm 1500/tcp #VLSI License Manager vlsi-lm 1500/udp #VLSI License Manager -saiscm 1501/tcp #Satellite-data Acquisition System 3 -saiscm 1501/udp #Satellite-data Acquisition System 3 +saiscm 1501/tcp #Satellite-data Acquisition System 3 +saiscm 1501/udp #Satellite-data Acquisition System 3 shivadiscovery 1502/tcp #Shiva shivadiscovery 1502/udp #Shiva imtc-mcs 1503/tcp #Databeam @@ -2156,8 +2156,8 @@ orasrv 1525/tcp #oracle orasrv 1525/udp #oracle prospero-np 1525/tcp #Prospero Directory Service non-priv prospero-np 1525/udp #Prospero Directory Service non-priv -pdap-np 1526/tcp #Prospero Data Access Prot non-priv -pdap-np 1526/udp #Prospero Data Access Prot non-priv +pdap-np 1526/tcp #Prospero Data Access Prot non-priv +pdap-np 1526/udp #Prospero Data Access Prot non-priv tlisrv 1527/tcp #oracle tlisrv 1527/udp #oracle mciautoreg 1528/tcp #micautoreg @@ -2172,10 +2172,10 @@ miroconnect 1532/tcp #miroconnect miroconnect 1532/udp #miroconnect virtual-places 1533/tcp #Virtual Places Software virtual-places 1533/udp #Virtual Places Software -micromuse-lm 1534/tcp #micromuse-lm -micromuse-lm 1534/udp #micromuse-lm -ampr-info 1535/tcp #ampr-info -ampr-info 1535/udp #ampr-info +micromuse-lm 1534/tcp #micromuse-lm +micromuse-lm 1534/udp #micromuse-lm +ampr-info 1535/tcp #ampr-info +ampr-info 1535/udp #ampr-info ampr-inter 1536/tcp #ampr-inter ampr-inter 1536/udp #ampr-inter sdsc-lm 1537/tcp #isi-lm @@ -2217,7 +2217,7 @@ caci-lm 1554/udp #CACI Products Company License Manager livelan 1555/tcp #livelan livelan 1555/udp #livelan veritas_pbx 1556/tcp #VERITAS Private Branch Exchange -veritas_pbx 1556/udp #VERITAS Private Branch Exchange +veritas_pbx 1556/udp #VERITAS Private Branch Exchange arbortext-lm 1557/tcp #ArborText License Manager arbortext-lm 1557/udp #ArborText License Manager xingmpeg 1558/tcp #xingmpeg @@ -2280,8 +2280,8 @@ ibm-abtact 1586/tcp #ibm-abtact ibm-abtact 1586/udp #ibm-abtact pra_elmd 1587/tcp #pra_elmd pra_elmd 1587/udp #pra_elmd -triquest-lm 1588/tcp #triquest-lm -triquest-lm 1588/udp #triquest-lm +triquest-lm 1588/tcp #triquest-lm +triquest-lm 1588/udp #triquest-lm vqp 1589/tcp #VQP vqp 1589/udp #VQP gemini-lm 1590/tcp #gemini-lm @@ -2364,8 +2364,8 @@ lontalk-urgnt 1629/tcp #LonTalk urgent lontalk-urgnt 1629/udp #LonTalk urgent oraclenet8cman 1630/tcp #Oracle Net8 Cman oraclenet8cman 1630/udp #Oracle Net8 Cman -visitview 1631/tcp #Visit view -visitview 1631/udp #Visit view +visitview 1631/tcp #Visit view +visitview 1631/udp #Visit view pammratc 1632/tcp #PAMMRATC pammratc 1632/udp #PAMMRATC pammrpc 1633/tcp #PAMMRPC @@ -2391,8 +2391,8 @@ isis-am 1642/udp #isis-am isis-ambc 1643/tcp #isis-ambc isis-ambc 1643/udp #isis-ambc saiseh 1644/tcp #Satellite-data Acquisition System 4 -sightline 1645/tcp #SightLine -sightline 1645/udp #SightLine +sightline 1645/tcp #SightLine +sightline 1645/udp #SightLine sa-msg-port 1646/tcp #sa-msg-port sa-msg-port 1646/udp #sa-msg-port rsap 1647/tcp #rsap @@ -2400,7 +2400,7 @@ rsap 1647/udp #rsap concurrent-lm 1648/tcp #concurrent-lm concurrent-lm 1648/udp #concurrent-lm kermit 1649/tcp #kermit -kermit 1649/udp #kermit +kermit 1649/udp #kermit nkd 1650/tcp #nkdn nkd 1650/udp #nkd shiva_confsrvr 1651/tcp #shiva_confsrvr @@ -2461,8 +2461,8 @@ prolink 1678/tcp #prolink prolink 1678/udp #prolink darcorp-lm 1679/tcp #darcorp-lm darcorp-lm 1679/udp #darcorp-lm -microcom-sbp 1680/tcp #microcom-sbp -microcom-sbp 1680/udp #microcom-sbp +microcom-sbp 1680/tcp #microcom-sbp +microcom-sbp 1680/udp #microcom-sbp sd-elmd 1681/tcp #sd-elmd sd-elmd 1681/udp #sd-elmd lanyon-lantern 1682/tcp #lanyon-lantern @@ -2541,8 +2541,8 @@ fj-hdnet 1717/tcp #fj-hdnet fj-hdnet 1717/udp #fj-hdnet h323gatedisc 1718/tcp #h323gatedisc h323gatedisc 1718/udp #h323gatedisc -h323gatestat 1719/tcp #h323gatestat -h323gatestat 1719/udp #h323gatestat +h323gatestat 1719/tcp #h323gatestat +h323gatestat 1719/udp #h323gatestat h323hostcall 1720/tcp #h323hostcall h323hostcall 1720/udp #h323hostcall caicci 1721/tcp #caicci @@ -2607,8 +2607,8 @@ sslp 1750/tcp #Simple Socket Library's PortMaster sslp 1750/udp #Simple Socket Library's PortMaster swiftnet 1751/tcp #SwiftNet swiftnet 1751/udp #SwiftNet -lofr-lm 1752/tcp #Leap of Faith Research License Manager -lofr-lm 1752/udp #Leap of Faith Research License Manager +lofr-lm 1752/tcp #Leap of Faith Research License Manager +lofr-lm 1752/udp #Leap of Faith Research License Manager oracle-em2 1754/tcp #oracle-em2 oracle-em2 1754/udp #oracle-em2 ms-streaming 1755/tcp #ms-streaming @@ -2662,7 +2662,7 @@ pharmasoft 1779/udp #pharmasoft dpkeyserv 1780/tcp #dpkeyserv dpkeyserv 1780/udp #dpkeyserv answersoft-lm 1781/tcp #answersoft-lm -answersoft-lm 1781/udp #answersoft-lm +answersoft-lm 1781/udp #answersoft-lm hp-hcip 1782/tcp #hp-hcip hp-hcip 1782/udp #hp-hcip finle-lm 1784/tcp #Finle License Manager @@ -2691,7 +2691,7 @@ dpi-proxy 1795/tcp #dpi-proxy dpi-proxy 1795/udp #dpi-proxy vocaltec-admin 1796/tcp #Vocaltec Server Administration vocaltec-admin 1796/udp #Vocaltec Server Administration -uma 1797/tcp #UMA +uma 1797/tcp #UMA uma 1797/udp #UMA etp 1798/tcp #Event Transfer Protocol etp 1798/udp #Event Transfer Protocol @@ -2751,12 +2751,12 @@ direcpc-video 1825/tcp #DirecPC Video direcpc-video 1825/udp #DirecPC Video ardt 1826/tcp #ARDT ardt 1826/udp #ARDT -asi 1827/tcp #ASI -asi 1827/udp #ASI +asi 1827/tcp #ASI +asi 1827/udp #ASI itm-mcell-u 1828/tcp #itm-mcell-u itm-mcell-u 1828/udp #itm-mcell-u -optika-emedia 1829/tcp #Optika eMedia -optika-emedia 1829/udp #Optika eMedia +optika-emedia 1829/tcp #Optika eMedia +optika-emedia 1829/udp #Optika eMedia net8-cman 1830/tcp #Oracle Net8 CMan Admin net8-cman 1830/udp #Oracle Net8 CMan Admin myrtle 1831/tcp #Myrtle @@ -2882,7 +2882,7 @@ wilkenlistener 1890/udp #wilkenListener childkey-notif 1891/tcp #ChildKey Notification childkey-notif 1891/udp #ChildKey Notification childkey-ctrl 1892/tcp #ChildKey Control -childkey-ctrl 1892/udp #ChildKey Control +childkey-ctrl 1892/udp #ChildKey Control elad 1893/tcp #ELAD Protocol elad 1893/udp #ELAD Protocol o2server-port 1894/tcp #O2Server Port @@ -2919,8 +2919,8 @@ ultrabac 1910/tcp #UltraBac Software communications port ultrabac 1910/udp #UltraBac Software communications port mtp 1911/tcp #Starlight Networks Multimedia Transport Protocol mtp 1911/udp #Starlight Networks Multimedia Transport Protocol -rhp-iibp 1912/tcp #rhp-iibp -rhp-iibp 1912/udp #rhp-iibp +rhp-iibp 1912/tcp #rhp-iibp +rhp-iibp 1912/udp #rhp-iibp armadp 1913/tcp #armadp armadp 1913/udp #armadp elm-momentum 1914/tcp #Elm-Momentum @@ -2931,7 +2931,7 @@ persona 1916/tcp #Persoft Persona persona 1916/udp #Persoft Persona noagent 1917/tcp #nOAgent noagent 1917/udp #nOAgent -can-nds 1918/tcp #Candle Directory Service - NDS +can-nds 1918/tcp #Candle Directory Service - NDS can-nds 1918/udp #Candle Directory Service - NDS can-dch 1919/tcp #Candle Directory Service - DCH can-dch 1919/udp #Candle Directory Service - DCH @@ -2939,8 +2939,8 @@ can-ferret 1920/tcp #Candle Directory Service - FERRET can-ferret 1920/udp #Candle Directory Service - FERRET noadmin 1921/tcp #NoAdmin noadmin 1921/udp #NoAdmin -tapestry 1922/tcp #Tapestry -tapestry 1922/udp #Tapestry +tapestry 1922/tcp #Tapestry +tapestry 1922/udp #Tapestry spice 1923/tcp #SPICE spice 1923/udp #SPICE xiip 1924/tcp #XIIP @@ -3047,8 +3047,8 @@ drp 1974/tcp #DRP drp 1974/udp #DRP tcoflashagent 1975/tcp #TCO Flash Agent tcoflashagent 1975/udp #TCO Flash Agent -tcoregagent 1976/tcp #TCO Reg Agent -tcoregagent 1976/udp #TCO Reg Agent +tcoregagent 1976/tcp #TCO Reg Agent +tcoregagent 1976/udp #TCO Reg Agent tcoaddressbook 1977/tcp #TCO Address Book tcoaddressbook 1977/udp #TCO Address Book unisql 1978/tcp #UniSQL @@ -3182,8 +3182,8 @@ gnunet 2086/tcp #GNUnet gnunet 2086/udp #GNUnet eli 2087/tcp #ELI - Event Logging Integration eli 2087/udp #ELI - Event Logging Integration -sep 2089/tcp #Security Encapsulation Protocol - SEP -sep 2089/udp #Security Encapsulation Protocol - SEP +sep 2089/tcp #Security Encapsulation Protocol - SEP +sep 2089/udp #Security Encapsulation Protocol - SEP lrp 2090/tcp #Load Report Protocol lrp 2090/udp #Load Report Protocol prp 2091/tcp #PRP @@ -3218,8 +3218,8 @@ minipay 2105/tcp #MiniPay minipay 2105/udp #MiniPay mzap 2106/tcp #MZAP mzap 2106/udp #MZAP -bintec-admin 2107/tcp #BinTec Admin -bintec-admin 2107/udp #BinTec Admin +bintec-admin 2107/tcp #BinTec Admin +bintec-admin 2107/udp #BinTec Admin comcam 2108/tcp #Comcam comcam 2108/udp #Comcam ergolight 2109/tcp #Ergolight @@ -3282,7 +3282,7 @@ connect 2137/tcp #CONNECT connect 2137/udp #CONNECT unbind-cluster 2138/tcp #UNBIND-CLUSTER unbind-cluster 2138/udp #UNBIND-CLUSTER -ias-auth 2139/tcp #IAS-AUTH +ias-auth 2139/tcp #IAS-AUTH ias-auth 2139/udp #IAS-AUTH ias-reg 2140/tcp #IAS-REG ias-reg 2140/udp #IAS-REG @@ -3366,7 +3366,7 @@ optech-port1-lm 2237/tcp #Optech Port1 License Manager optech-port1-lm 2237/udp #Optech Port1 License Manager aviva-sna 2238/tcp #AVIVA SNA SERVER aviva-sna 2238/udp #AVIVA SNA SERVER -imagequery 2239/tcp #Image Query +imagequery 2239/tcp #Image Query imagequery 2239/udp #Image Query recipe 2240/tcp #RECIPe recipe 2240/udp #RECIPe @@ -3496,7 +3496,7 @@ tscchat 2330/tcp #TSCCHAT tscchat 2330/udp #TSCCHAT agentview 2331/tcp #AGENTVIEW agentview 2331/udp #AGENTVIEW -rcc-host 2332/tcp #RCC Host +rcc-host 2332/tcp #RCC Host rcc-host 2332/udp #RCC Host snapp 2333/tcp #SNAPP snapp 2333/udp #SNAPP @@ -3558,8 +3558,8 @@ tl1 2361/tcp #TL1 tl1 2361/udp #TL1 digiman 2362/tcp #digiman digiman 2362/udp #digiman -mediacntrlnfsd 2363/tcp #Media Central NFSD -mediacntrlnfsd 2363/udp #Media Central NFSD +mediacntrlnfsd 2363/tcp #Media Central NFSD +mediacntrlnfsd 2363/udp #Media Central NFSD oi-2000 2364/tcp #OI-2000 oi-2000 2364/udp #OI-2000 dbref 2365/tcp #dbref @@ -3640,13 +3640,13 @@ netwave-ap-mgmt 2411/tcp #Netwave AP Management netwave-ap-mgmt 2411/udp #Netwave AP Management cdn 2412/tcp #CDN cdn 2412/udp #CDN -orion-rmi-reg 2413/tcp #orion-rmi-reg +orion-rmi-reg 2413/tcp #orion-rmi-reg orion-rmi-reg 2413/udp #orion-rmi-reg beeyond 2414/tcp #Beeyond beeyond 2414/udp #Beeyond codima-rtp 2415/tcp #Codima Remote Transaction Protocol codima-rtp 2415/udp #Codima Remote Transaction Protocol -rmtserver 2416/tcp #RMT Server +rmtserver 2416/tcp #RMT Server rmtserver 2416/udp #RMT Server composit-server 2417/tcp #Composit Server composit-server 2417/udp #Composit Server @@ -3737,7 +3737,7 @@ ms-theater 2460/udp #ms-theater qadmifoper 2461/tcp #qadmifoper qadmifoper 2461/udp #qadmifoper qadmifevent 2462/tcp #qadmifevent -qadmifevent 2462/udp #qadmifevent +qadmifevent 2462/udp #qadmifevent symbios-raid 2463/tcp #Symbios Raid symbios-raid 2463/udp #Symbios Raid direcpc-si 2464/tcp #DirecPC SI @@ -3820,8 +3820,8 @@ kentrox-prot 2502/tcp #Kentrox Protocol kentrox-prot 2502/udp #Kentrox Protocol nms-dpnss 2503/tcp #NMS-DPNSS nms-dpnss 2503/udp #NMS-DPNSS -wlbs 2504/tcp #WLBS -wlbs 2504/udp #WLBS +wlbs 2504/tcp #WLBS +wlbs 2504/udp #WLBS jbroker 2506/tcp #jbroker jbroker 2506/udp #jbroker spock 2507/tcp #spock @@ -3842,8 +3842,8 @@ facsys-ntp 2514/tcp #Facsys NTP facsys-ntp 2514/udp #Facsys NTP facsys-router 2515/tcp #Facsys Router facsys-router 2515/udp #Facsys Router -maincontrol 2516/tcp #Main Control -maincontrol 2516/udp #Main Control +maincontrol 2516/tcp #Main Control +maincontrol 2516/udp #Main Control call-sig-trans 2517/tcp #H.323 Annex E call signaling transport call-sig-trans 2517/udp #H.323 Annex E call signaling transport willy 2518/tcp #Willy @@ -3860,8 +3860,8 @@ qke-llc-v3 2523/tcp #Qke LLC V.3 qke-llc-v3 2523/udp #Qke LLC V.3 optiwave-lm 2524/tcp #Optiwave License Management optiwave-lm 2524/udp #Optiwave License Management -ms-v-worlds 2525/tcp #MS V-Worlds -ms-v-worlds 2525/udp #MS V-Worlds +ms-v-worlds 2525/tcp #MS V-Worlds +ms-v-worlds 2525/udp #MS V-Worlds ema-sent-lm 2526/tcp #EMA License Manager ema-sent-lm 2526/udp #EMA License Manager iqserver 2527/tcp #IQ Server @@ -3893,7 +3893,7 @@ vsiadmin 2539/udp #VSI Admin lonworks 2540/tcp #LonWorks lonworks 2540/udp #LonWorks lonworks2 2541/tcp #LonWorks2 -lonworks2 2541/udp #LonWorks2 +lonworks2 2541/udp #LonWorks2 davinci 2542/tcp #daVinci Presenter davinci 2542/udp #daVinci Presenter reftek 2543/tcp #REFTEK @@ -4017,8 +4017,8 @@ discp-server 2602/tcp #discp server discp-server 2602/udp #discp server servicemeter 2603/tcp #Service Meter servicemeter 2603/udp #Service Meter -nsc-ccs 2604/tcp #NSC CCS -nsc-ccs 2604/udp #NSC CCS +nsc-ccs 2604/tcp #NSC CCS +nsc-ccs 2604/udp #NSC CCS nsc-posa 2605/tcp #NSC POSA nsc-posa 2605/udp #NSC POSA netmon 2606/tcp #Dell Netmon @@ -4027,8 +4027,8 @@ connection 2607/tcp #Dell Connection connection 2607/udp #Dell Connection wag-service 2608/tcp #Wag Service wag-service 2608/udp #Wag Service -system-monitor 2609/tcp #System Monitor -system-monitor 2609/udp #System Monitor +system-monitor 2609/tcp #System Monitor +system-monitor 2609/udp #System Monitor versa-tek 2610/tcp #VersaTek versa-tek 2610/udp #VersaTek lionhead 2611/tcp #LIONHEAD @@ -4155,8 +4155,8 @@ newlixreg 2671/tcp #newlixreg newlixreg 2671/udp #newlixreg nhserver 2672/tcp #nhserver nhserver 2672/udp #nhserver -firstcall42 2673/tcp #First Call 42 -firstcall42 2673/udp #First Call 42 +firstcall42 2673/tcp #First Call 42 +firstcall42 2673/udp #First Call 42 ewnn 2674/tcp #ewnn ewnn 2674/udp #ewnn ttc-etap 2675/tcp #TTC ETAP @@ -4173,8 +4173,8 @@ pxc-sapxom 2680/tcp #pxc-sapxom pxc-sapxom 2680/udp #pxc-sapxom mpnjsomb 2681/tcp #mpnjsomb mpnjsomb 2681/udp #mpnjsomb -ncdloadbalance 2683/tcp #NCDLoadBalance -ncdloadbalance 2683/udp #NCDLoadBalance +ncdloadbalance 2683/tcp #NCDLoadBalance +ncdloadbalance 2683/udp #NCDLoadBalance mpnjsosv 2684/tcp #mpnjsosv mpnjsosv 2684/udp #mpnjsosv mpnjsocl 2685/tcp #mpnjsocl @@ -4193,14 +4193,14 @@ itinternet 2691/tcp #ITInternet ISM Server itinternet 2691/udp #ITInternet ISM Server admins-lms 2692/tcp #Admins LMS admins-lms 2692/udp #Admins LMS -pwrsevent 2694/tcp #pwrsevent -pwrsevent 2694/udp #pwrsevent +pwrsevent 2694/tcp #pwrsevent +pwrsevent 2694/udp #pwrsevent vspread 2695/tcp #VSPREAD vspread 2695/udp #VSPREAD unifyadmin 2696/tcp #Unify Admin unifyadmin 2696/udp #Unify Admin -oce-snmp-trap 2697/tcp #Oce SNMP Trap Port -oce-snmp-trap 2697/udp #Oce SNMP Trap Port +oce-snmp-trap 2697/tcp #Oce SNMP Trap Port +oce-snmp-trap 2697/udp #Oce SNMP Trap Port mck-ivpip 2698/tcp #MCK-IVPIP mck-ivpip 2698/udp #MCK-IVPIP csoft-plusclnt 2699/tcp #Csoft Plus Client @@ -4273,8 +4273,8 @@ g5m 2732/tcp #G5M g5m 2732/udp #G5M signet-ctf 2733/tcp #Signet CTF signet-ctf 2733/udp #Signet CTF -ccs-software 2734/tcp #CCS Software -ccs-software 2734/udp #CCS Software +ccs-software 2734/tcp #CCS Software +ccs-software 2734/udp #CCS Software netiq-mc 2735/tcp #NetIQ Monitor Console netiq-mc 2735/udp #NetIQ Monitor Console radwiz-nms-srv 2736/tcp #RADWIZ NMS SRV @@ -4351,8 +4351,8 @@ ridgeway1 2776/tcp #Ridgeway Systems & Software ridgeway1 2776/udp #Ridgeway Systems & Software ridgeway2 2777/tcp #Ridgeway Systems & Software ridgeway2 2777/udp #Ridgeway Systems & Software -gwen-sonya 2778/tcp #Gwen-Sonya -gwen-sonya 2778/udp #Gwen-Sonya +gwen-sonya 2778/tcp #Gwen-Sonya +gwen-sonya 2778/udp #Gwen-Sonya lbc-sync 2779/tcp #LBC Sync lbc-sync 2779/udp #LBC Sync lbc-control 2780/tcp #LBC Control @@ -4444,13 +4444,13 @@ ka0wuc 2822/udp #ka0wuc cqg-netlan 2823/tcp #CQG Net/LAN cqg-netlan 2823/udp #CQG Net/LAN cqg-netlan-1 2824/tcp #CQG Net/LAN 1 -cqg-netlan-1 2824/udp #CQG Net/Lan 1 +cqg-netlan-1 2824/udp #CQG Net/Lan 1 slc-systemlog 2826/tcp #slc systemlog slc-systemlog 2826/udp #slc systemlog slc-ctrlrloops 2827/tcp #slc ctrlrloops slc-ctrlrloops 2827/udp #slc ctrlrloops -itm-lm 2828/tcp #ITM License Manager -itm-lm 2828/udp #ITM License Manager +itm-lm 2828/tcp #ITM License Manager +itm-lm 2828/udp #ITM License Manager silkp1 2829/tcp #silkp1 silkp1 2829/udp #silkp1 silkp2 2830/tcp #silkp2 @@ -4653,7 +4653,7 @@ circle-x 2931/tcp #Circle-X circle-x 2931/udp #Circle-X incp 2932/tcp #INCP incp 2932/udp #INCP -4-tieropmgw 2933/tcp #4-TIER OPM GW +4-tieropmgw 2933/tcp #4-TIER OPM GW 4-tieropmgw 2933/udp #4-TIER OPM GW 4-tieropmcli 2934/tcp #4-TIER OPM CLI 4-tieropmcli 2934/udp #4-TIER OPM CLI @@ -4745,8 +4745,8 @@ ttc-etap-ns 2977/tcp #TTCs Enterprise Test Access Protocol - NS ttc-etap-ns 2977/udp #TTCs Enterprise Test Access Protocol - NS ttc-etap-ds 2978/tcp #TTCs Enterprise Test Access Protocol - DS ttc-etap-ds 2978/udp #TTCs Enterprise Test Access Protocol - DS -h263-video 2979/tcp #H.263 Video Streaming -h263-video 2979/udp #H.263 Video Streaming +h263-video 2979/tcp #H.263 Video Streaming +h263-video 2979/udp #H.263 Video Streaming wimd 2980/tcp #Instant Messaging Service wimd 2980/udp #Instant Messaging Service mylxamport 2981/tcp #MYLXAMPORT @@ -4841,8 +4841,8 @@ magicnotes 3023/tcp #magicnotes magicnotes 3023/udp #magicnotes nds_sso 3024/tcp #NDS_SSO nds_sso 3024/udp #NDS_SSO -arepa-raft 3025/tcp #Arepa Raft -arepa-raft 3025/udp #Arepa Raft +arepa-raft 3025/tcp #Arepa Raft +arepa-raft 3025/udp #Arepa Raft agri-gateway 3026/tcp #AGRI Gateway agri-gateway 3026/udp #AGRI Gateway arepa-cas 3030/tcp #Arepa Cas @@ -5023,7 +5023,7 @@ pkagent 3118/tcp #PKAgent pkagent 3118/udp #PKAgent d2000kernel 3119/tcp #D2000 Kernel Port d2000kernel 3119/udp #D2000 Kernel Port -d2000webserver 3120/tcp #D2000 Webserver Port +d2000webserver 3120/tcp #D2000 Webserver Port d2000webserver 3120/udp #D2000 Webserver Port vtr-emulator 3122/tcp #MTI VTR Emulator port vtr-emulator 3122/udp #MTI VTR Emulator port @@ -5249,7 +5249,7 @@ mdtp 3232/tcp #MDT port mdtp 3232/udp #MDT port whisker 3233/tcp #WhiskerControl main port whisker 3233/udp #WhiskerControl main port -alchemy 3234/tcp #Alchemy Server +alchemy 3234/tcp #Alchemy Server alchemy 3234/udp #Alchemy Server mdap-port 3235/tcp #MDAP port mdap-port 3235/udp #MDAP Port @@ -5491,7 +5491,7 @@ wg-netforce 3359/tcp #WG NetForce wg-netforce 3359/udp #WG NetForce kv-server 3360/tcp #KV Server kv-server 3360/udp #KV Server -kv-agent 3361/tcp #KV Agent +kv-agent 3361/tcp #KV Agent kv-agent 3361/udp #KV Agent dj-ilm 3362/tcp #DJ ILM dj-ilm 3362/udp #DJ ILM @@ -5554,7 +5554,7 @@ dyna-lm 3395/udp #Dyna License Manager (Elam) printer_agent 3396/tcp #Printer Agent printer_agent 3396/udp #Printer Agent cloanto-lm 3397/tcp #Cloanto License Manager -cloanto-lm 3397/udp #Cloanto License Manager +cloanto-lm 3397/udp #Cloanto License Manager mercantile 3398/tcp #Mercantile mercantile 3398/udp #Mercantile csms 3399/tcp #CSMS @@ -5739,7 +5739,7 @@ dtp-dia 3489/udp #DTP/DIA colubris 3490/tcp #Colubris Management Port colubris 3490/udp #Colubris Management Port swr-port 3491/tcp #SWR Port -swr-port 3491/udp #SWR Port +swr-port 3491/udp #SWR Port tvdumtray-port 3492/tcp #TVDUM Tray Port tvdumtray-port 3492/udp #TVDUM Tray Port nut 3493/tcp #Network UPS Tools @@ -5789,7 +5789,7 @@ must-p2p 3514/udp #MUST Peer to Peer must-backplane 3515/tcp #MUST Backplane must-backplane 3515/udp #MUST Backplane smartcard-port 3516/tcp #Smartcard Port -smartcard-port 3516/udp #Smartcard Port +smartcard-port 3516/udp #Smartcard Port 802-11-iapp 3517/tcp #IEEE 802.11 WLANs WG IAPP 802-11-iapp 3517/udp #IEEE 802.11 WLANs WG IAPP artifact-msg 3518/tcp #Artifact Message Server @@ -5802,7 +5802,7 @@ mc3ss 3521/tcp #Telequip Labs MC3SS mc3ss 3521/udp #Telequip Labs MC3SS nssocketport 3522/tcp #DO over NSSocketPort nssocketport 3522/udp #DO over NSSocketPort -odeumservlink 3523/tcp #Odeum Serverlink +odeumservlink 3523/tcp #Odeum Serverlink odeumservlink 3523/udp #Odeum Serverlink ecmport 3524/tcp #ECM Server port ecmport 3524/udp #ECM Server port @@ -5852,7 +5852,7 @@ symantec-sim 3547/tcp #Symantec SIM symantec-sim 3547/udp #Symantec SIM interworld 3548/tcp #Interworld interworld 3548/udp #Interworld -tellumat-nms 3549/tcp #Tellumat MDR NMS +tellumat-nms 3549/tcp #Tellumat MDR NMS tellumat-nms 3549/udp #Tellumat MDR NMS ssmpp 3550/tcp #Secure SMPP ssmpp 3550/udp #Secure SMPP @@ -5988,10 +5988,10 @@ start-network 3615/udp #Start Messaging Network cd3o-protocol 3616/tcp #cd3o Control Protocol cd3o-protocol 3616/udp #cd3o Control Protocol sharp-server 3617/tcp #ATI SHARP Logic Engine -sharp-server 3617/udp #ATI SHARP Logic Engine +sharp-server 3617/udp #ATI SHARP Logic Engine aairnet-1 3618/tcp #AAIR-Network 1 aairnet-1 3618/udp #AAIR-Network 1 -aairnet-2 3619/tcp #AAIR-Network 2 +aairnet-2 3619/tcp #AAIR-Network 2 aairnet-2 3619/udp #AAIR-Network 2 ep-pcp 3620/tcp #EPSON Projector Control Port ep-pcp 3620/udp #EPSON Projector Control Port @@ -6022,7 +6022,7 @@ distcc 3632/udp #distributed compiler wacp 3633/tcp #Wyrnix AIS port wacp 3633/udp #Wyrnix AIS port hlibmgr 3634/tcp #hNTSP Library Manager -hlibmgr 3634/udp #hNTSP Library Manager +hlibmgr 3634/udp #hNTSP Library Manager sdo 3635/tcp #Simple Distributed Objects sdo 3635/udp #Simple Distributed Objects opscenter 3636/tcp #OpsCenter @@ -6031,8 +6031,8 @@ scservp 3637/tcp #Customer Service Port scservp 3637/udp #Customer Service Port ehp-backup 3638/tcp #EHP Backup Protocol ehp-backup 3638/udp #EHP Backup Protocol -xap-ha 3639/tcp #Extensible Automation -xap-ha 3639/udp #Extensible Automation +xap-ha 3639/tcp #Extensible Automation +xap-ha 3639/udp #Extensible Automation netplay-port1 3640/tcp #Netplay Port 1 netplay-port1 3640/udp #Netplay Port 1 netplay-port2 3641/tcp #Netplay Port 2 @@ -6044,7 +6044,7 @@ audiojuggler 3643/udp #AudioJuggler ssowatch 3644/tcp #ssowatch ssowatch 3644/udp #ssowatch cyc 3645/tcp #Cyc -cyc 3645/udp #Cyc +cyc 3645/udp #Cyc xss-srv-port 3646/tcp #XSS Server Port xss-srv-port 3646/udp #XSS Server Port splitlock-gw 3647/tcp #Splitlock Gateway @@ -6064,7 +6064,7 @@ tsp 3653/udp #Tunnel Setup Protocol vaprtm 3654/tcp #VAP RealTime Messenger vaprtm 3654/udp #VAP RealTime Messenger abatemgr 3655/tcp #ActiveBatch Exec Agent -abatemgr 3655/udp #ActiveBatch Exec Agent +abatemgr 3655/udp #ActiveBatch Exec Agent abatjss 3656/tcp #ActiveBatch Job Scheduler abatjss 3656/udp #ActiveBatch Job Scheduler immedianet-bcn 3657/tcp #ImmediaNet Beacon @@ -6156,7 +6156,7 @@ kpn-icw 3699/udp #Internet Call Waiting lrs-paging 3700/tcp #LRS NetPage lrs-paging 3700/udp #LRS NetPage netcelera 3701/tcp #NetCelera -netcelera 3701/udp #NetCelera +netcelera 3701/udp #NetCelera ws-discovery 3702/tcp #Web Service Discovery ws-discovery 3702/udp #Web Service Discovery adobeserver-3 3703/tcp #Adobe Server 3 @@ -6257,7 +6257,7 @@ vipremoteagent 3752/tcp #Vigil-IP RemoteAgent vipremoteagent 3752/udp #Vigil-IP RemoteAgent nattyserver 3753/tcp #NattyServer Port nattyserver 3753/udp #NattyServer Port -timestenbroker 3754/tcp #TimesTen Broker Port +timestenbroker 3754/tcp #TimesTen Broker Port timestenbroker 3754/udp #TimesTen Broker Port sas-remote-hlp 3755/tcp #SAS Remote Help Server sas-remote-hlp 3755/udp #SAS Remote Help Server @@ -6318,7 +6318,7 @@ bim-pem 3783/udp #Impact Mgr./PEM Gateway bfd 3784/tcp #BFD bfd 3784/udp #BFD bfd-control 3785/tcp #BFD-Control -bfd-control 3785/udp #BFD-Control +bfd-control 3785/udp #BFD-Control upstriggervsw 3786/tcp #VSW Upstrigger port upstriggervsw 3786/udp #VSW Upstrigger port fintrx 3787/tcp #Fintrx @@ -6423,8 +6423,8 @@ trap-port-mom 3858/tcp #Trap Port MOM trap-port-mom 3858/udp #Trap Port MOM nav-port 3859/tcp #Navini Port nav-port 3859/udp #Navini Port -ewlm 3860/tcp #eWLM -ewlm 3860/udp #eWLM +ewlm 3860/tcp #eWLM +ewlm 3860/udp #eWLM winshadow-hd 3861/tcp #winShadow Host Discovery winshadow-hd 3861/udp #winShadow Host Discovery giga-pocket 3862/tcp #GIGA-POCKET @@ -6512,7 +6512,7 @@ charsetmgr 3903/tcp #CharsetMGR charsetmgr 3903/udp #CharsetMGR omnilink-port 3904/tcp #Arnet Omnilink Port omnilink-port 3904/udp #Arnet Omnilink Port -mupdate 3905/tcp #Mailbox Update (MUPDATE) protocol +mupdate 3905/tcp #Mailbox Update (MUPDATE) protocol mupdate 3905/udp #Mailbox Update (MUPDATE) protocol topovista-data 3906/tcp #TopoVista elevation data topovista-data 3906/udp #TopoVista elevation data @@ -6582,7 +6582,7 @@ dbcontrol_agent 3938/tcp #Oracle dbControl Agent po dbcontrol_agent 3938/udp #Oracel dbControl Agent po aamp 3939/tcp #Anti-virus Application Management Port aamp 3939/udp #Anti-virus Application Management Port -xecp-node 3940/tcp #XeCP Node Service +xecp-node 3940/tcp #XeCP Node Service xecp-node 3940/udp #XeCP Node Service homeportal-web 3941/tcp #Home Portal Web Server homeportal-web 3941/udp #Home Portal Web Server @@ -6630,8 +6630,8 @@ pxc-spvr 4006/tcp #pxc-spvr pxc-spvr 4006/udp #pxc-spvr pxc-splr 4007/tcp #pxc-splr pxc-splr 4007/udp #pxc-splr -netcheque 4008/tcp #NetCheque accounting -netcheque 4008/udp #NetCheque accounting +netcheque 4008/tcp #NetCheque accounting +netcheque 4008/udp #NetCheque accounting chimera-hwm 4009/tcp #Chimera HWM chimera-hwm 4009/udp #Chimera HWM samsung-unidex 4010/tcp #Samsung Unidex @@ -6682,7 +6682,7 @@ vrts-auth-port 4032/tcp #VERITAS Authorization Service vrts-auth-port 4032/udp #VERITAS Authorization Service sanavigator 4033/tcp #SANavigator Peer Port sanavigator 4033/udp #SANavigator Peer Port -ubxd 4034/tcp #Ubiquinox Daemon +ubxd 4034/tcp #Ubiquinox Daemon ubxd 4034/udp #Ubiquinox Daemon wap-push-http 4035/tcp #WAP Push OTA-HTTP port wap-push-http 4035/udp #WAP Push OTA-HTTP port @@ -6750,8 +6750,8 @@ net-device 4350/tcp #Net Device net-device 4350/udp #Net Device plcy-net-svcs 4351/tcp #PLCY Net Services plcy-net-svcs 4351/udp #PLCY Net Services -f5-iquery 4353/tcp #F5 iQuery -f5-iquery 4353/udp #F5 iQuery +f5-iquery 4353/tcp #F5 iQuery +f5-iquery 4353/udp #F5 iQuery qsnet-trans 4354/tcp #QSNet Transmitter qsnet-trans 4354/udp #QSNet Transmitter qsnet-workst 4355/tcp #QSNet Workstation @@ -6811,8 +6811,8 @@ hylafax 4559/tcp #HylaFAX hylafax 4559/udp #HylaFAX tram 4567/tcp #TRAM tram 4567/udp #TRAM -bmc-reporting 4568/tcp #BMC Reporting -bmc-reporting 4568/udp #BMC Reporting +bmc-reporting 4568/tcp #BMC Reporting +bmc-reporting 4568/udp #BMC Reporting piranha1 4600/tcp #Piranha1 piranha1 4600/udp #Piranha1 piranha2 4601/tcp #Piranha2 @@ -6834,7 +6834,7 @@ ilss 4802/udp #Icona License System Server htcp 4827/tcp #HTCP htcp 4827/udp #HTCP varadero-0 4837/tcp #Varadero-0 -varadero-0 4837/udp #Varadero-0 +varadero-0 4837/udp #Varadero-0 varadero-1 4838/tcp #Varadero-1 varadero-1 4838/udp #Varadero-1 varadero-2 4839/tcp #Varadero-2 @@ -6949,13 +6949,13 @@ aol-2 5192/tcp #AmericaOnline2 aol-2 5192/udp #AmericaOnline2 aol-3 5193/tcp #AmericaOnline3 aol-3 5193/udp #AmericaOnline3 -targus-getdata 5200/tcp #TARGUS GetData -targus-getdata 5200/udp #TARGUS GetData +targus-getdata 5200/tcp #TARGUS GetData +targus-getdata 5200/udp #TARGUS GetData targus-getdata1 5201/tcp #TARGUS GetData 1 targus-getdata1 5201/udp #TARGUS GetData 1 targus-getdata2 5202/tcp #TARGUS GetData 2 targus-getdata2 5202/udp #TARGUS GetData 2 -targus-getdata3 5203/tcp #TARGUS GetData 3 +targus-getdata3 5203/tcp #TARGUS GetData 3 targus-getdata3 5203/udp #TARGUS GetData 3 xmpp-client 5222/tcp #XMPP Client Connection xmpp-client 5222/udp #XMPP Client Connection @@ -6965,7 +6965,7 @@ hp-status 5226/tcp #HP Status hp-status 5226/udp #HP Status igateway 5250/tcp #iGateway igateway 5250/udp #iGateway -3com-njack-1 5264/tcp #3Com Network Jack Port 1 +3com-njack-1 5264/tcp #3Com Network Jack Port 1 3com-njack-1 5264/udp #3Com Network Jack Port 1 3com-njack-2 5265/tcp #3Com Network Jack Port 2 3com-njack-2 5265/udp #3Com Network Jack Port 2 @@ -6985,7 +6985,7 @@ hacl-probe 5303/tcp ## HA cluster probing hacl-probe 5303/udp ## HA cluster probing hacl-local 5304/tcp ## HA Cluster Commands hacl-local 5304/udp -hacl-test 5305/tcp ## HA Cluster Test +hacl-test 5305/tcp ## HA Cluster Test hacl-test 5305/udp sun-mc-grp 5306/tcp #Sun MC Group sun-mc-grp 5306/udp #Sun MC Group @@ -7007,7 +7007,7 @@ hacl-poll 5315/tcp #HA Cluster UDP Polling hacl-poll 5315/udp #HA Cluster UDP Polling mdns 5353/tcp #Multicast DNS mdns 5353/udp #Multicast DNS -mdnsresponder 5354/tcp #Multicast DNS Responder IPC +mdnsresponder 5354/tcp #Multicast DNS Responder IPC mdnsresponder 5354/udp #Multicast DNS Responder IPC excerpt 5400/tcp #Excerpt Search excerpt 5400/udp #Excerpt Search @@ -7133,8 +7133,8 @@ raadmin 5676/tcp #RA Administration raadmin 5676/udp #RA Administration questdb2-lnchr 5677/tcp #Quest Central DB2 Launchr questdb2-lnchr 5677/udp #Quest Central DB2 Launchr -rrac 5678/tcp #Remote Replication Agent Connection -rrac 5678/udp #Remote Replication Agent Connection +rrac 5678/tcp #Remote Replication Agent Connection +rrac 5678/udp #Remote Replication Agent Connection dccm 5679/tcp #Direct Cable Connect Manager dccm 5679/udp #Direct Cable Connect Manager ggz 5688/tcp #GGZ Gaming Zone @@ -7143,14 +7143,14 @@ proshareaudio 5713/tcp #proshare conf audio proshareaudio 5713/udp #proshare conf audio prosharevideo 5714/tcp #proshare conf video prosharevideo 5714/udp #proshare conf video -prosharedata 5715/tcp #proshare conf data -prosharedata 5715/udp #proshare conf data +prosharedata 5715/tcp #proshare conf data +prosharedata 5715/udp #proshare conf data prosharerequest 5716/tcp #proshare conf request prosharerequest 5716/udp #proshare conf request -prosharenotify 5717/tcp #proshare conf notify -prosharenotify 5717/udp #proshare conf notify +prosharenotify 5717/tcp #proshare conf notify +prosharenotify 5717/udp #proshare conf notify ms-licensing 5720/tcp #MS-Licensing -ms-licensing 5720/udp #MS-Licensing +ms-licensing 5720/udp #MS-Licensing openmail 5729/tcp #Openmail User Agent Layer openmail 5729/udp #Openmail User Agent Layer unieng 5730/tcp #Steltor's calendar access @@ -7244,7 +7244,7 @@ softcm 6110/udp #HP SoftBench CM spc 6111/tcp #HP SoftBench Sub-Process Control spc 6111/udp #HP SoftBench Sub-Process Control dtspcd 6112/tcp #dtspcd -dtspcd 6112/udp #dtspcd +dtspcd 6112/udp #dtspcd backup-express 6123/tcp #Backup Express backup-express 6123/udp #Backup Express meta-corp 6141/tcp #Meta Corporation License Manager @@ -7263,16 +7263,16 @@ montage-lm 6147/tcp #Montage License Manager montage-lm 6147/udp #Montage License Manager ricardo-lm 6148/tcp #Ricardo North America License Manager ricardo-lm 6148/udp #Ricardo North America License Manager -tal-pod 6149/tcp #tal-pod -tal-pod 6149/udp #tal-pod +tal-pod 6149/tcp #tal-pod +tal-pod 6149/udp #tal-pod crip 6253/tcp #CRIP crip 6253/udp #CRIP bmc-grx 6300/tcp #BMC GRX bmc-grx 6300/udp #BMC GRX emp-server1 6321/tcp #Empress Software Connectivity Server 1 -emp-server1 6321/udp #Empress Software Connectivity Server 1 -emp-server2 6322/tcp #Empress Software Connectivity Server 2 -emp-server2 6322/udp #Empress Software Connectivity Server 2 +emp-server1 6321/udp #Empress Software Connectivity Server 1 +emp-server2 6322/tcp #Empress Software Connectivity Server 2 +emp-server2 6322/udp #Empress Software Connectivity Server 2 sflow 6343/tcp #sFlow traffic monitoring sflow 6343/udp #sFlow traffic monitoring gnutella-svc 6346/tcp #gnutella-svc @@ -7341,7 +7341,7 @@ ibprotocol 6714/tcp #Internet Backplane Protocol ibprotocol 6714/udp #Internet Backplane Protocol bmc-perf-agent 6767/tcp #BMC PERFORM AGENT bmc-perf-agent 6767/udp #BMC PERFORM AGENT -bmc-perf-mgrd 6768/tcp #BMC PERFORM MGRD +bmc-perf-mgrd 6768/tcp #BMC PERFORM MGRD bmc-perf-mgrd 6768/udp #BMC PERFORM MGRD smc-http 6788/tcp #SMC-HTTP smc-http 6788/udp #SMC-HTTP @@ -7425,12 +7425,12 @@ virprot-lm 7121/tcp #Virtual Prototypes License Manager virprot-lm 7121/udp #Virtual Prototypes License Manager clutild 7174/tcp #Clutild clutild 7174/udp #Clutild -fodms 7200/tcp #FODMS FLIP -fodms 7200/udp #FODMS FLIP +fodms 7200/tcp #FODMS FLIP +fodms 7200/udp #FODMS FLIP dlip 7201/tcp #DLIP dlip 7201/udp #DLIP ramp 7227/tcp #Registry A & M Protocol -ramp 7227/udp #Registry A $ M Protocol +ramp 7227/udp #Registry A $ M Protocol itactionserver1 7280/tcp #ITACTIONSERVER 1 itactionserver1 7280/udp #ITACTIONSERVER 1 itactionserver2 7281/tcp #ITACTIONSERVER 2 @@ -7469,7 +7469,7 @@ nta-ds 7544/tcp #FlowAnalyzer DisplayServer nta-ds 7544/udp #FlowAnalyzer DisplayServer nta-us 7545/tcp #FlowAnalyzer UtilityServer nta-us 7545/udp #FlowAnalyzer UtilityServer -vsi-omega 7566/tcp #VSI Omega +vsi-omega 7566/tcp #VSI Omega vsi-omega 7566/udp #VSI Omega aries-kfinder 7570/tcp #Aries Kfinder aries-kfinder 7570/udp #Aries Kfinder @@ -7530,7 +7530,7 @@ teradataordbms 8002/udp #Teradata ORDBMS http-alt 8008/tcp #HTTP Alternate http-alt 8008/udp #HTTP Alternate oa-system 8022/tcp #oa-system -oa-system 8022/udp #oa-system +oa-system 8022/udp #oa-system pro-ed 8032/tcp #ProEd pro-ed 8032/udp #ProEd mindprint 8033/tcp #MindPrint @@ -7693,11 +7693,11 @@ xmltec-xmlmail 9091/tcp #xmltec-xmlmail xmltec-xmlmail 9091/udp #xmltec-xmlmail hp-pdl-datastr 9100/tcp #PDL Data Streaming Port hp-pdl-datastr 9100/udp #PDL Data Streaming Port -pdl-datastream 9100/tcp #Printer PDL Data Stream -pdl-datastream 9100/udp #Printer PDL Data Stream +pdl-datastream 9100/tcp #Printer PDL Data Stream +pdl-datastream 9100/udp #Printer PDL Data Stream bacula-dir 9101/tcp #Bacula Director bacula-dir 9101/udp #Bacula Director -bacula-fd 9102/tcp #Bacula File Daemon +bacula-fd 9102/tcp #Bacula File Daemon bacula-fd 9102/udp #Bacula File Daemon bacula-sd 9103/tcp #Bacula Storage Daemon bacula-sd 9103/udp #Bacula Storage Daemon @@ -7803,7 +7803,7 @@ sype-transport 9911/tcp #SYPECom Transport Protocol sype-transport 9911/udp #SYPECom Transport Protocol apc-9950 9950/tcp #APC 9950 apc-9950 9950/udp #APC 9950 -apc-9951 9951/tcp #APC 9951 +apc-9951 9951/tcp #APC 9951 apc-9951 9951/udp #APC 9951 apc-9952 9952/tcp #APC 9952 apc-9952 9952/udp #APC 9952 @@ -7835,8 +7835,8 @@ mvs-capacity 10007/tcp #MVS Capacity mvs-capacity 10007/udp #MVS Capacity octopus 10008/tcp #Octopus Multiplexer octopus 10008/udp #Octopus Multiplexer -amanda 10080/tcp #Amanda -amanda 10080/udp #Amanda +amanda 10080/tcp #Amanda +amanda 10080/udp #Amanda itap-ddtp 10100/tcp #VERITAS ITAP DDTP itap-ddtp 10100/udp #VERITAS ITAP DDTP ezmeeting-2 10101/tcp #eZmeeting @@ -7861,8 +7861,8 @@ apollo-relay 10252/tcp #Apollo Relay Port apollo-relay 10252/udp #Apollo Relay Port axis-wimp-port 10260/tcp #Axis WIMP Port axis-wimp-port 10260/udp #Axis WIMP Port -blocks 10288/tcp #Blocks -blocks 10288/udp #Blocks +blocks 10288/tcp #Blocks +blocks 10288/udp #Blocks rmiaux 10990/tcp #Auxiliary RMI Port rmiaux 10990/udp #Auxiliary RMI Port irisa 11000/tcp #IRISA @@ -7911,8 +7911,8 @@ hivep 12172/tcp #HiveP hivep 12172/udp #HiveP italk 12345/tcp #Italk Chat System italk 12345/udp #Italk Chat System -tsaf 12753/tcp #tsaf port -tsaf 12753/udp #tsaf port +tsaf 12753/tcp #tsaf port +tsaf 12753/udp #tsaf port i-zipqd 13160/tcp #I-ZIPQD i-zipqd 13160/udp #I-ZIPQD powwow-client 13223/tcp #PowWow Client @@ -7983,8 +7983,8 @@ chipper 17219/tcp #Chipper chipper 17219/udp #Chipper biimenu 18000/tcp #Beckman Instruments, Inc. biimenu 18000/udp #Beckman Instruments, Inc. -opsec-cvp 18181/tcp #OPSEC CVP -opsec-cvp 18181/udp #OPSEC CVP +opsec-cvp 18181/tcp #OPSEC CVP +opsec-cvp 18181/udp #OPSEC CVP opsec-ufp 18182/tcp #OPSEC UFP opsec-ufp 18182/udp #OPSEC UFP opsec-sam 18183/tcp #OPSEC SAM @@ -8003,8 +8003,8 @@ ac-cluster 18463/tcp #AC Cluster ac-cluster 18463/udp #AC Cluster ique 18769/tcp #IQue Protocol ique 18769/udp #IQue Protocol -apc-necmp 18888/tcp #APCNECMP -apc-necmp 18888/udp #APCNECMP +apc-necmp 18888/tcp #APCNECMP +apc-necmp 18888/udp #APCNECMP opsec-uaa 19191/tcp #OPSEC UAA opsec-uaa 19191/udp #OPSEC UAA ua-secureagent 19194/tcp #UserAuthority SecureAgent @@ -8015,7 +8015,7 @@ keyshadow 19315/tcp #Key Shadow for SASSAFRAS keyshadow 19315/udp #Key Shadow for SASSAFRAS mtrgtrans 19398/tcp #mtrgtrans mtrgtrans 19398/udp #mtrgtrans -hp-sco 19410/tcp #hp-sco +hp-sco 19410/tcp #hp-sco hp-sco 19410/udp #hp-sco hp-sca 19411/tcp #hp-sca hp-sca 19411/udp #hp-sca @@ -8083,7 +8083,7 @@ filesphere 24242/tcp #fileSphere filesphere 24242/udp #fileSphere vista-4gl 24249/tcp #Vista 4GL vista-4gl 24249/udp #Vista 4GL -intel_rci 24386/tcp #Intel RCI +intel_rci 24386/tcp #Intel RCI intel_rci 24386/udp #Intel RCI binkp 24554/tcp #BINKP binkp 24554/udp #BINKP @@ -8113,7 +8113,7 @@ icl-twobase9 25008/tcp #icl-twobase9 icl-twobase9 25008/udp #icl-twobase9 icl-twobase10 25009/tcp #icl-twobase10 icl-twobase10 25009/udp #icl-twobase10 -vocaltec-hos 25793/tcp #Vocaltec Address Server +vocaltec-hos 25793/tcp #Vocaltec Address Server vocaltec-hos 25793/udp #Vocaltec Address Server niobserver 25901/tcp #NIObserver niobserver 25901/udp #NIObserver @@ -8131,13 +8131,13 @@ k3software-svr 26262/tcp #K3 Software-Server k3software-svr 26262/udp #K3 Software-Server k3software-cli 26263/tcp #K3 Software-Client k3software-cli 26263/udp #K3 Software-Client -gserver 26264/tcp #Gserver +gserver 26264/tcp #Gserver gserver 26264/udp #Gserver imagepump 27345/tcp #ImagePump imagepump 27345/udp #ImagePump kopek-httphead 27504/tcp #Kopek HTTP Head Port kopek-httphead 27504/udp #Kopek HTTP Head Port -tw-auth-key 27999/tcp #TW Authentication/Key Distribution and +tw-auth-key 27999/tcp #TW Authentication/Key Distribution and tw-auth-key 27999/udp #Attribute Certificate Services pago-services1 30001/tcp #Pago Services 1 pago-services1 30001/udp #Pago Services 1 @@ -8157,7 +8157,7 @@ filenet-nch 32770/tcp #Filenet NCH filenet-nch 32770/udp #Filenet NCH filenet-rmi 32771/tcp #FileNET RMI filenet-rmi 32771/udp #FileNet RMI -filenet-pa 32772/tcp #FileNET Process Analyzer +filenet-pa 32772/tcp #FileNET Process Analyzer filenet-pa 32772/udp #FileNET Process Analyzer filenet-cm 32773/tcp #FileNET Component Manager filenet-cm 32773/udp #FileNET Component Manager @@ -8171,7 +8171,7 @@ traceroute 33434/tcp #traceroute use traceroute 33434/udp #traceroute use turbonote-2 34249/tcp #TurboNote Relay Server Default Port turbonote-2 34249/udp #TurboNote Relay Server Default Port -p-net-local 34378/tcp #P-Net on IP local +p-net-local 34378/tcp #P-Net on IP local p-net-local 34378/udp #P-Net on IP local p-net-remote 34379/tcp #P-Net on IP remote p-net-remote 34379/udp #P-Net on IP remote @@ -8209,7 +8209,7 @@ pmcdproxy 44322/tcp #PCP server (pmcd) proxy pmcdproxy 44322/udp #PCP server (pmcd) proxy rockwell-encap 44818/tcp #Rockwell Encapsulation rockwell-encap 44818/udp #Rockwell Encapsulation -invision-ag 45054/tcp #InVision AG +invision-ag 45054/tcp #InVision AG invision-ag 45054/udp #InVision AG eba 45678/tcp #EBA PRISE eba 45678/udp #EBA PRISE diff --git a/media/inf/defltsv.inf b/media/inf/defltsv.inf index 9da45bcb77f..a2131c18475 100644 --- a/media/inf/defltsv.inf +++ b/media/inf/defltsv.inf @@ -58,7 +58,7 @@ AuditLogonEvents = 1; SeAssignPrimaryTokenPrivilege = *S-1-5-19, *S-1-5-20 SeAuditPrivilege = *S-1-5-19, *S-1-5-20 SeBackupPrivilege = *S-1-5-32-544, *S-1-5-32-551 -SeBatchLogonRight = +SeBatchLogonRight = SeChangeNotifyPrivilege = *S-1-1-0, *S-1-5-32-544, *S-1-5-32-545, *S-1-5-32-547, *S-1-5-32-551 SeCreateGlobalPrivilege = *S-1-5-6, *S-1-5-32-544 SeCreatePagefilePrivilege = *S-1-5-32-544 diff --git a/media/inf/defltwk.inf b/media/inf/defltwk.inf index e634fc72783..e7a76e53dec 100644 --- a/media/inf/defltwk.inf +++ b/media/inf/defltwk.inf @@ -58,7 +58,7 @@ AuditLogonEvents = 0; SeAssignPrimaryTokenPrivilege = *S-1-5-19, *S-1-5-20 SeAuditPrivilege = *S-1-5-19, *S-1-5-20 SeBackupPrivilege = *S-1-5-32-544, *S-1-5-32-551 -SeBatchLogonRight = +SeBatchLogonRight = SeChangeNotifyPrivilege = *S-1-1-0, *S-1-5-32-544, *S-1-5-32-545, *S-1-5-32-551 SeCreateGlobalPrivilege = *S-1-5-4, *S-1-5-6, *S-1-5-32-544 SeCreatePagefilePrivilege = *S-1-5-32-544 diff --git a/media/inf/nettcpip.inf b/media/inf/nettcpip.inf index b30bd9fd4f2..54e778c69f3 100644 --- a/media/inf/nettcpip.inf +++ b/media/inf/nettcpip.inf @@ -295,17 +295,17 @@ HKR,"Parameters","ServiceDll",0x00020000,"%SystemRoot%\system32\dnsrslvr.dll" [Strings] ReactOS = "ReactOS Team" MS_TCPIP.DisplayName = "Internet Protocol Version 4 (TCP/IPv4)" -DNSCLIENT_NAME = "DNS Client" -DNSCLIENT_DESC = "Service that caches local DNS queries" -DHCPCLIENT_NAME = "DHCP Client" +DNSCLIENT_NAME = "DNS Client" +DNSCLIENT_DESC = "Service that caches local DNS queries" +DHCPCLIENT_NAME = "DHCP Client" DHCPCLIENT_DESC = "Attempts to obtain network settings automatically from an available DHCP server" TCPIP_DEF = "Transmission Control Protocol/Internet Protocol" [Strings.0404] MS_TCPIP.DisplayName = "網際網路通訊å”定第四版 (TCP/IPv4)" -DNSCLIENT_NAME = "DNS 用戶端" -DNSCLIENT_DESC = "å¿«å–本地 DNS 查詢的æœå‹™" -DHCPCLIENT_NAME = "DHCP 用戶端" +DNSCLIENT_NAME = "DNS 用戶端" +DNSCLIENT_DESC = "å¿«å–本地 DNS 查詢的æœå‹™" +DHCPCLIENT_NAME = "DHCP 用戶端" DHCPCLIENT_DESC = "嘗試從å¯ç”¨çš„ DHCP 伺æœå™¨ä¸­è‡ªå‹•å–得網路設定" TCPIP_DEF = "傳輸控制å”è­° / 互è¯ç¶²å”è­°" @@ -315,18 +315,18 @@ ReactOS = "Equipo de ReactOS" [Strings.040c] ReactOS = "Équipe ReactOS" MS_TCPIP.DisplayName = "Protocole Internet Version 4 (TCP/IPv4)" -DNSCLIENT_NAME = "Client DNS" -DNSCLIENT_DESC = "Service de mise en cache de requêtes DNS locales" -DHCPCLIENT_NAME = "Client DHCP" +DNSCLIENT_NAME = "Client DNS" +DNSCLIENT_DESC = "Service de mise en cache de requêtes DNS locales" +DHCPCLIENT_NAME = "Client DHCP" DHCPCLIENT_DESC = "Obtient les paramètres réseau automatiquement depuis un serveur DHCP" TCPIP_DEF = "Transmission Control Protocol/Internet Protocol" [Strings.0415] ReactOS = "Zespół ReactOS" MS_TCPIP.DisplayName = "Protokół internetowy w wersji 4 (TCP/IPv4)" -DNSCLIENT_NAME = "Klient DNS" -DNSCLIENT_DESC = "UsÅ‚uga buforujÄ…ca lokalne zapytania DNS" -DHCPCLIENT_NAME = "Klient DHCP" +DNSCLIENT_NAME = "Klient DNS" +DNSCLIENT_DESC = "UsÅ‚uga buforujÄ…ca lokalne zapytania DNS" +DHCPCLIENT_NAME = "Klient DHCP" DHCPCLIENT_DESC = "Próbuje uzyskać ustawienia sieciowe automatycznie z dostÄ™pnego serwera DHCP" TCPIP_DEF = "Protokół kontroli transmisji/Protokół internetowy (TCP/IP)" @@ -336,9 +336,9 @@ ReactOS = "Echipa ReactOS" [Strings.0419] ReactOS = "Команда ReactOS" MS_TCPIP.DisplayName = "Протокол Интернета верÑии 4 (TCP/IPv4)" -DNSCLIENT_NAME = "Клиент DNS" -DNSCLIENT_DESC = "Служба кÑÑˆÐ¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ Ð»Ð¾ÐºÐ°Ð»ÑŒÐ½Ñ‹Ñ… DNS запроÑов" -DHCPCLIENT_NAME = "Клиент DHCP" +DNSCLIENT_NAME = "Клиент DNS" +DNSCLIENT_DESC = "Служба кÑÑˆÐ¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ Ð»Ð¾ÐºÐ°Ð»ÑŒÐ½Ñ‹Ñ… DNS запроÑов" +DHCPCLIENT_NAME = "Клиент DHCP" DHCPCLIENT_DESC = "ÐвтоматичеÑки получает наÑтройки Ñети Ñ Ð´Ð¾Ñтупного DHCP Ñервера" TCPIP_DEF = "Протокол ÐºÐ¾Ð½Ñ‚Ñ€Ð¾Ð»Ñ Ð¿ÐµÑ€ÐµÐ´Ð°Ñ‡Ð¸/Протокол Интернета (TCP/IP)" diff --git a/media/inf/shortcuts.inf b/media/inf/shortcuts.inf index 6c52e7b1595..88074fe923c 100644 --- a/media/inf/shortcuts.inf +++ b/media/inf/shortcuts.inf @@ -317,7 +317,7 @@ DXDIAG_TITLE=Diagnostika ReactX DXDIAG_DESC=Spustit Nástroj pro diagnostiku ReactX MAGNIFY_TITLE=Lupa MAGNIFY_DESC=Spustit Lupu -OSK_TITLE=Program Klávesnice na obrazovce +OSK_TITLE=Program Klávesnice na obrazovce OSK_DESC=Spustit program Klávesnice na obrazovce MPLAY_TITLE=PÅ™ehrávaÄ multimédií MPLAY_DESC=Spustit PÅ™ehrávaÄ multimédií @@ -381,7 +381,7 @@ DXDIAG_TITLE=ReactX-Diagnose DXDIAG_DESC=Starte ReactX-Diagnoseprogramm MAGNIFY_TITLE=Bildschirmlupe MAGNIFY_DESC=Bildschirmlupe -OSK_TITLE=Bildschirmtastatur +OSK_TITLE=Bildschirmtastatur OSK_DESC=Startet die Bildschirmtastatur MPLAY_TITLE=Multimedia-Player MPLAY_DESC=Starte Multimedia-Player @@ -578,7 +578,7 @@ DXDIAG_TITLE=ReactX Diagnostic DXDIAG_DESC=Ava ReactX-Diagnostika programm MAGNIFY_TITLE=Magnify MAGNIFY_DESC=Suurenda -OSK_TITLE=Ekraani klaviatuuri +OSK_TITLE=Ekraani klaviatuuri OSK_DESC=Käivita ekraaniklaviatuur MPLAY_TITLE=Multimedia Player MPLAY_DESC=Ava Meediamängija @@ -674,7 +674,7 @@ GAMES=×ž×©×—×§×™× CMD_TITLE=שורת הפקודה CMD_DESC=שורת הפקודה -EXPLORER_TITLE=סייר ReactOS +EXPLORER_TITLE=סייר ReactOS EXPLORER_DESC=סייר RAPPS_TITLE=מנהל ×”×™×™×©×•×ž×™× ×©×œ ReactOS RAPPS_TITLE_SHORT=מנהל ×”×™×™×©×•×ž×™× @@ -779,8 +779,8 @@ DXDIAG_TITLE=ReactX diagnosztika DXDIAG_DESC=ReactX diagnosztikai program indítása MAGNIFY_TITLE=Nagyító MAGNIFY_DESC=Nagyító -OSK_TITLE=A képernyÅ‘n megjelenÅ‘ billentyűzet -OSK_DESC=A képernyÅ‘n megjelenÅ‘ billentyűzet indítása +OSK_TITLE=A képernyÅ‘n megjelenÅ‘ billentyűzet +OSK_DESC=A képernyÅ‘n megjelenÅ‘ billentyűzet indítása MPLAY_TITLE=Médialejátszó MPLAY_DESC=Médialejátszó indítása SNDVOL_TITLE=HangerÅ‘szabályzó @@ -967,7 +967,7 @@ DXDIAG_TITLE=ReactX 診断 DXDIAG_DESC=ReactX 診断 プログラムを起動ã—ã¾ã™ MAGNIFY_TITLE=æ‹¡å¤§é¡ MAGNIFY_DESC=æ‹¡å¤§é¡ -OSK_TITLE=ç”»é¢ä¸Šã®ã‚­ãƒ¼ãƒœãƒ¼ãƒ‰ +OSK_TITLE=ç”»é¢ä¸Šã®ã‚­ãƒ¼ãƒœãƒ¼ãƒ‰ OSK_DESC=スクリーンキーボードã®èµ·å‹• MPLAY_TITLE=マルãƒãƒ¡ãƒ‡ã‚£ã‚¢ プレーヤ MPLAY_DESC=マルãƒãƒ¡ãƒ‡ã‚£ã‚¢ プレーヤーを起動ã—ã¾ã™ @@ -1031,7 +1031,7 @@ DXDIAG_TITLE=ReactX Diagnostic DXDIAG_DESC=Launch ReactX-Diagnostic program MAGNIFY_TITLE=Magnify MAGNIFY_DESC=Magnify -OSK_TITLE=On-Screen Keyboard +OSK_TITLE=On-Screen Keyboard OSK_DESC=Launch On-Screen Keyboard MPLAY_TITLE=Multimedia Player MPLAY_DESC=Launch Multimedia Player @@ -1092,7 +1092,7 @@ DXDIAG_TITLE=ReactX Diagnostic DXDIAG_DESC=Kjør ReactX-Diagnose program MAGNIFY_TITLE=Magnify MAGNIFY_DESC=Forstørrelse -OSK_TITLE=On-Screen Keyboard +OSK_TITLE=On-Screen Keyboard OSK_DESC=Lansering pÃ¥ Skjerm tastatur MPLAY_TITLE=Multimedia Player MPLAY_DESC=Start Multimedia avspiller @@ -1158,7 +1158,7 @@ DXDIAG_TITLE=Program diagnostyczny ReactX DXDIAG_DESC=Uruchom program diagnostyczny ReactX MAGNIFY_TITLE=Lupa MAGNIFY_DESC=Lupa -OSK_TITLE=Klawiatura Ekranowa +OSK_TITLE=Klawiatura Ekranowa OSK_DESC=Uruchomienie na ekranie klawiatury MPLAY_TITLE=Odtwarzacz multimedialny MPLAY_DESC=Uruchom Odtwarzacz multimedialny @@ -1224,7 +1224,7 @@ DXDIAG_TITLE=ReactX Diagnostic DXDIAG_DESC=Iniciar o ReactX-Diagnostic MAGNIFY_TITLE=Magnify MAGNIFY_DESC=Ampliar -OSK_TITLE=Em Tela Teclado +OSK_TITLE=Em Tela Teclado OSK_DESC=Lançamento em Tela Teclado MPLAY_TITLE=Multimedia Player MPLAY_DESC=Iniciar Player Multimídia @@ -1288,7 +1288,7 @@ DXDIAG_TITLE=Diagnóstico ReactX DXDIAG_DESC=Iniciar Diagnóstico ReactX MAGNIFY_TITLE=Lupa MAGNIFY_DESC=Ampliar -OSK_TITLE=Em Tela Teclado +OSK_TITLE=Em Tela Teclado OSK_DESC=Lançamento em Tela Teclado MPLAY_TITLE=Multimedia Player MPLAY_DESC=Iniciar Player Multimídia diff --git a/media/inf/syssetup.inf.tpl b/media/inf/syssetup.inf.tpl index 5664d43470d..775baeb0e77 100644 --- a/media/inf/syssetup.inf.tpl +++ b/media/inf/syssetup.inf.tpl @@ -2,7 +2,7 @@ ; For Windows, this file controls various aspects of the Installation and ; Upgrade process. If you know a good documentation about this file, ; please add a link here. -; +; ; [Version] Signature = "$Windows NT$" diff --git a/media/sdb/CMakeLists.txt b/media/sdb/CMakeLists.txt index 55a045eac00..e9936149362 100644 --- a/media/sdb/CMakeLists.txt +++ b/media/sdb/CMakeLists.txt @@ -2,6 +2,6 @@ add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/sysmain.sdb COMMAND native-xml2sdb -i ${CMAKE_CURRENT_SOURCE_DIR}/sysmain.xml -o ${CMAKE_CURRENT_BINARY_DIR}/sysmain.sdb DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/sysmain.xml native-xml2sdb) - + add_custom_target(compatdb DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/sysmain.sdb) add_cd_file(TARGET compatdb FILE ${CMAKE_CURRENT_BINARY_DIR}/sysmain.sdb DESTINATION reactos/AppPatch FOR all) diff --git a/media/vgafonts/CMakeLists.txt b/media/vgafonts/CMakeLists.txt index 83a4a065966..2d8a5f465f6 100644 --- a/media/vgafonts/CMakeLists.txt +++ b/media/vgafonts/CMakeLists.txt @@ -15,6 +15,6 @@ list(APPEND SOURCE add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/vgafonts.cab COMMAND native-cabman -M raw -S ${CMAKE_CURRENT_BINARY_DIR}/vgafonts.cab ${SOURCE} DEPENDS ${SOURCE} native-cabman) - + add_custom_target(vgafonts DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/vgafonts.cab) add_cd_file(TARGET vgafonts FILE ${CMAKE_CURRENT_BINARY_DIR}/vgafonts.cab DESTINATION reactos NO_CAB FOR all) diff --git a/modules/rosapps/applications/devutils/btrfstools/btrfs_structures.py b/modules/rosapps/applications/devutils/btrfstools/btrfs_structures.py index 726a23cf58e..1a2ec38e07c 100644 --- a/modules/rosapps/applications/devutils/btrfstools/btrfs_structures.py +++ b/modules/rosapps/applications/devutils/btrfstools/btrfs_structures.py @@ -562,7 +562,7 @@ superblock = struct.Struct('<32x16s2Q8s9Q5L4QH2B611x2048s') # log_root_transid # total_bytes # bytes_used -# root_dir_objectid (usually 6) +# root_dir_objectid (usually 6) # num_devices # sectorsize # nodesize @@ -1089,7 +1089,7 @@ def key_bin_search(fd, base_offset, item_size, cmp_item, min, max): low = mid + 1 else: return True, mid - + return False, low @@ -1152,7 +1152,7 @@ class FileSystem(object): @property def fs_root(self): return self._fs_root_level, self._fs_root - + @property def extent_root(self): return self._extent_root_level, self._extent_root @@ -1173,7 +1173,7 @@ class FileSystem(object): k = LeafKey(self.fd.read(LeafKey.sstruct.size)) self.fd.seek(offset + k.data_offset) if k.type == CHUNK_ITEM_KEY: - item = _key_type_class_map[k.type](k, self.fd.read(k.data_size)) + item = _key_type_class_map[k.type](k, self.fd.read(k.data_size)) for st in item.stripes: self._insert_chunk(chunk_map_item(item.vaddr, st.offset, item.length, st.devid)) @@ -1215,10 +1215,10 @@ class FileSystem(object): # TODO: better understand this if not found and itemnr > 0: itemnr -= 1 - + self.fd.seek(root_offset + _node_header_struct.size + itemnr * InnerKey.sstruct.size) k = InnerKey(self.fd.read(InnerKey.sstruct.size)) - root_offset = k.block_num + root_offset = k.block_num else: # we are in leaf node root_offset = self.logical_to_physical(root_offset) @@ -1260,7 +1260,7 @@ class FileSystem(object): print(k) self.fd.seek(root_paddr + _node_header_struct.size + k.data_offset) if k.type in _key_type_class_map and header.level == 0: - item = _key_type_class_map[k.type](k, self.fd.read(k.data_size)) + item = _key_type_class_map[k.type](k, self.fd.read(k.data_size)) print(item) if k.type == DIR_ITEM_KEY: for it in item: diff --git a/modules/rosapps/applications/devutils/vgafontedit/fileformats.txt b/modules/rosapps/applications/devutils/vgafontedit/fileformats.txt index 5294982699d..e53b0860a54 100644 --- a/modules/rosapps/applications/devutils/vgafontedit/fileformats.txt +++ b/modules/rosapps/applications/devutils/vgafontedit/fileformats.txt @@ -7,19 +7,20 @@ We only deal with 8x8 fonts with 256 characters, so different formats aren't des ---------------------------- A binary font file is always 2048 bytes in size. These bytes are divided into 256 characters, so every character is 8 bytes large. -Each byte represents a character row. Consequently, each column is represented by one bit. The most-significant bit contains the pixel of the first column from the left. +Each byte represents a character row. Consequently, each column is represented by one bit. +The most-significant bit contains the pixel of the first column from the left. Example: We want to get the pixel in the third column of the second row of the seventh character. We assume you loaded the binary font file completely into a byte array called FontBits. - + // All indexes need to be zero-based UINT uCharacter = 6; UINT uRow = 1; UINT uColumn = 2; - + UCHAR uBit; - + // uBit will either contain 0 (0-bit is set) or 128 dec, 0x80 hex (1-bit is set) now uBit = FontBits[uCharacter * 8 + uRow] << uColumn & 0x80; @@ -34,7 +35,7 @@ struct PSF1_FILE UCHAR uMagic[2]; UCHAR uMode; UCHAR uCharSize; - + UCHAR FontBits[2048]; }; @@ -52,4 +53,4 @@ struct PSF1_FILE This way, it is very easy to convert a PSFv1 file to a binary *.bin file. -- Colin Finck, 2008/02/01 \ No newline at end of file +- Colin Finck, 2008/02/01 diff --git a/modules/rosapps/applications/fraginator/DriveVolume.cpp b/modules/rosapps/applications/fraginator/DriveVolume.cpp index 08fe040c8ac..60159ab6462 100644 --- a/modules/rosapps/applications/fraginator/DriveVolume.cpp +++ b/modules/rosapps/applications/fraginator/DriveVolume.cpp @@ -597,7 +597,7 @@ bool DriveVolume::GetClusterInfo (FileInfo &Info, HANDLE &HandleResult) Extents = Retrieval->ExtentCount; // Ok, we have the info. Now translate it. hrmrmr - + Info.Fragments.clear (); for (uint64 i = 0; i < Extents; i++) { diff --git a/modules/rosapps/applications/fraginator/Mutex.h b/modules/rosapps/applications/fraginator/Mutex.h index d646c34856c..76ee6be0ff1 100644 --- a/modules/rosapps/applications/fraginator/Mutex.h +++ b/modules/rosapps/applications/fraginator/Mutex.h @@ -63,9 +63,9 @@ public: } - bool IsLocked (void) - { - return (Locked); + bool IsLocked (void) + { + return (Locked); } protected: diff --git a/modules/rosapps/applications/notevil/readme.txt b/modules/rosapps/applications/notevil/readme.txt index 2fcb417b86f..5709af42b69 100644 --- a/modules/rosapps/applications/notevil/readme.txt +++ b/modules/rosapps/applications/notevil/readme.txt @@ -9,7 +9,7 @@ displays the NT programmers' names if one writes To add a new name, add a new string in the resource script notevil.rc (string index numbers must be -unique) and edit resource.h to update minimum and +unique) and edit resource.h to update minimum and maximum indices. Eventually run make. diff --git a/modules/rosapps/applications/screensavers/butterflies/butterflies.c b/modules/rosapps/applications/screensavers/butterflies/butterflies.c index 60f7ed4d171..4c675a757a8 100644 --- a/modules/rosapps/applications/screensavers/butterflies/butterflies.c +++ b/modules/rosapps/applications/screensavers/butterflies/butterflies.c @@ -231,7 +231,7 @@ void Display() } INT_PTR CALLBACK AboutProc(HWND hdlg, UINT msg, WPARAM wpm, LPARAM lpm){ - + switch(msg){ case WM_CTLCOLORSTATIC: if(((HWND)lpm == GetDlgItem(hdlg, WEBPAGE1)) || ((HWND)lpm == GetDlgItem(hdlg, WEBPAGE2))) diff --git a/modules/rosapps/applications/screensavers/circles/circles.c b/modules/rosapps/applications/screensavers/circles/circles.c index 869f63ff9b8..8086e661f90 100644 --- a/modules/rosapps/applications/screensavers/circles/circles.c +++ b/modules/rosapps/applications/screensavers/circles/circles.c @@ -64,10 +64,10 @@ LRESULT WINAPI ScreenSaverProc (HWND hwnd, UINT iMsg, WPARAM wparam, LPARAM lpar /* Draw circle on screen */ Ellipse ( - hdc, - x, - y, - x + width, + hdc, + x, + y, + x + width, y + width); //Track the number of painted circles on scren diff --git a/modules/rosapps/applications/screensavers/mazescr/maze.c b/modules/rosapps/applications/screensavers/mazescr/maze.c index aef0e06b7a2..1b1ed42340b 100644 --- a/modules/rosapps/applications/screensavers/mazescr/maze.c +++ b/modules/rosapps/applications/screensavers/mazescr/maze.c @@ -586,7 +586,7 @@ static BOOL OnCreate(HWND hWnd, LPCREATESTRUCT lpCreateStruct) } grid_width = grid_height = size; bw = (size > 6 ? 3 : (size - 1) / 2); - + #if 0 /* FIXME Pattern brushes not yet implemented in ReactOS */ { @@ -652,7 +652,7 @@ static void ReadSettings(HWND hWnd) pre_solve_delay = SendDlgItemMessage(hWnd, IDC_SLIDER_PRESD, TBM_GETPOS, 0, 0); SetDlgItemInt(hWnd, IDC_TEXT_PRESD, pre_solve_delay, FALSE); - + post_solve_delay = SendDlgItemMessage(hWnd, IDC_SLIDER_POSTSD, TBM_GETPOS, 0, 0); SetDlgItemInt(hWnd, IDC_TEXT_POSTSD, post_solve_delay, FALSE); diff --git a/modules/rosapps/applications/screensavers/ssstars/settings.c b/modules/rosapps/applications/screensavers/ssstars/settings.c index 97b5addc7a3..dfd10b8d6c5 100644 --- a/modules/rosapps/applications/screensavers/ssstars/settings.c +++ b/modules/rosapps/applications/screensavers/ssstars/settings.c @@ -302,15 +302,15 @@ BOOL CALLBACK ScreenSaverConfigureDialog(HWND hDlg, UINT uMsg, WPARAM wParam, LP return TRUE; case WM_COMMAND: - switch (LOWORD( wParam )) { + switch (LOWORD( wParam )) { case IDOK: // Write configuration SaveSettings(); // Fall down... - case IDCANCEL: - EndDialog( hDlg, LOWORD( wParam )); + case IDCANCEL: + EndDialog( hDlg, LOWORD( wParam )); return TRUE; case IDC_BUTTON_ABOUT: diff --git a/modules/rosapps/applications/screensavers/ssstars/ssstars.c b/modules/rosapps/applications/screensavers/ssstars/ssstars.c index 1b5388bf88f..9e041615f4a 100644 --- a/modules/rosapps/applications/screensavers/ssstars/ssstars.c +++ b/modules/rosapps/applications/screensavers/ssstars/ssstars.c @@ -198,7 +198,7 @@ static void InitGL(HBITMAP hStarTex) glEnable( GL_LIGHTING ); // enable lighting for front glLightModeli( GL_FRONT, GL_TRUE ); - // material have diffuse and ambient lighting + // material have diffuse and ambient lighting glColorMaterial( GL_FRONT, GL_AMBIENT_AND_DIFFUSE ); // enable color glEnable( GL_COLOR_MATERIAL ); diff --git a/modules/rosapps/applications/sysutils/fontsub/fontsub.cpp b/modules/rosapps/applications/sysutils/fontsub/fontsub.cpp index 5345bea0dcc..af3b4fcc061 100644 --- a/modules/rosapps/applications/sysutils/fontsub/fontsub.cpp +++ b/modules/rosapps/applications/sysutils/fontsub/fontsub.cpp @@ -1,9 +1,9 @@ // FontSub by Katayama Hirofumi MZ -// +// // To the extent possible under law, the person who associated CC0 with // FontSub has waived all copyright and related or neighboring rights // to FontSub. -// +// // You should have received a copy of the CC0 legalcode along with this // work. If not, see . @@ -1479,7 +1479,7 @@ void MainWnd_OnClose(HWND hwnd) { WCHAR szUpdateNow[MAX_STRING]; LoadStringW(g_hInstance, IDS_QUERYUPDATE, szUpdateNow, _countof(szUpdateNow)); - INT id = MessageBoxW(hwnd, szUpdateNow, g_szTitle, + INT id = MessageBoxW(hwnd, szUpdateNow, g_szTitle, MB_ICONINFORMATION | MB_YESNOCANCEL); switch (id) { diff --git a/modules/rosapps/applications/sysutils/fontsub/resource.h b/modules/rosapps/applications/sysutils/fontsub/resource.h index 9b71f337f83..171ddbf2193 100644 --- a/modules/rosapps/applications/sysutils/fontsub/resource.h +++ b/modules/rosapps/applications/sysutils/fontsub/resource.h @@ -1,9 +1,9 @@ /* FontSub by Katayama Hirofumi MZ - * + * * To the extent possible under law, the person who associated CC0 with * FontSub has waived all copyright and related or neighboring rights * to FontSub. - * + * * You should have received a copy of the CC0 legalcode along with this * work. If not, see . */ diff --git a/modules/rosapps/applications/sysutils/man/man.cmd b/modules/rosapps/applications/sysutils/man/man.cmd index 5790656e9aa..25bf70cd3a5 100755 --- a/modules/rosapps/applications/sysutils/man/man.cmd +++ b/modules/rosapps/applications/sysutils/man/man.cmd @@ -3,10 +3,10 @@ rem []------[ReactOS MAN Project ]--------[] rem Project: ReactOS manual browser rem File: man.cmd rem Purpose: Clone of UNIX man -rem Programmers: Semyon Novikov +rem Programmers: Semyon Novikov rem Version: 0.1.2 rem OS: WinNT/ReactOS/os2 eCs(testing) -rem License: GPL +rem License: GPL rem []------------------------------------[] @@ -23,22 +23,22 @@ goto chk_param if "%4"=="/create" attrib -r %MAN%\%SECTION%\%1.man if "%4"=="/create" %ED% %MAN%\%SECTION%\%1.man if "%4"=="/create" goto end - + if "%2"=="/e" set ED=%MANED% if "%2"=="/e" goto locate - + if "%3"=="/e" set ED=%MANED% if "%3"=="/e" goto chk_section - + if "%2"=="" set ED=%MANMORE% if "%2"=="" goto locate - + :chk_section set SECTION=%2 set ED=%MANMORE% if "%3"=="/e" set ED=%MANED% goto open_page - + :locate if exist %MAN%\1\%1.man set SECTION=1 if exist %MAN%\2\%1.man set SECTION=2 diff --git a/modules/rosapps/applications/sysutils/man/man/2/chkdsk.man b/modules/rosapps/applications/sysutils/man/man/2/chkdsk.man index 451835fd7dc..bdf5d686869 100644 --- a/modules/rosapps/applications/sysutils/man/man/2/chkdsk.man +++ b/modules/rosapps/applications/sysutils/man/man/2/chkdsk.man @@ -3,7 +3,7 @@ Purpose: Disk checking tool Port on ROS: Emanuele Aliberti License: GPL - + Usage: %s [drive:] [-F] [-V] [-R] [-C]\n\n\ [drive:] Specifies the drive to check.\n\ -F Fixes errors on the disk.\n\ diff --git a/modules/rosapps/applications/sysutils/man/man/2/chklib.man b/modules/rosapps/applications/sysutils/man/man/2/chklib.man index 2047b8ab26a..16dc082d03b 100644 --- a/modules/rosapps/applications/sysutils/man/man/2/chklib.man +++ b/modules/rosapps/applications/sysutils/man/man/2/chklib.man @@ -3,6 +3,6 @@ Purpose: Check a Dynamic Link Library (DLL) for loading Author: Emanuele Aliberti License: GPL - + Usage: chklib.exe module [symbol [, ...]] diff --git a/modules/rosapps/applications/sysutils/man/man/2/format.man b/modules/rosapps/applications/sysutils/man/man/2/format.man index 0ed1dea90e8..e69564d0ea8 100644 --- a/modules/rosapps/applications/sysutils/man/man/2/format.man +++ b/modules/rosapps/applications/sysutils/man/man/2/format.man @@ -11,11 +11,11 @@ Usage: format.com drive: [-FS:file-system] [-V:label] [-Q] [-A:size] [-C] -FS:file-system Specifies the type of file system (e.g. FAT). -V:label Specifies volume label. -Q Performs a quick format. - -A:size Overrides the default allocation unit size. + -A:size Overrides the default allocation unit size. Default settings are strongly recommended for general - use NTFS supports 512, 1024, 2048, 4096, 8192, 16K, + use NTFS supports 512, 1024, 2048, 4096, 8192, 16K, 32K, 64K. FAT supports 8192, 16K, 32K, 64K, 128K, 256K. - NTFS compression is not supported for allocation + NTFS compression is not supported for allocation unit sizes above 4096. -C Files created on the new volume will be compressed by default. diff --git a/modules/rosapps/applications/sysutils/man/man/2/man.man b/modules/rosapps/applications/sysutils/man/man/2/man.man index ce30ec35389..7d7529dfbe2 100644 --- a/modules/rosapps/applications/sysutils/man/man/2/man.man +++ b/modules/rosapps/applications/sysutils/man/man/2/man.man @@ -3,7 +3,7 @@ Author: Semyon Novikov Purpose: ReactOS manual browser and manual pages License: GPL - + 1. Built in cmd.exe commands 2. Console utils 3. GUI utils @@ -16,6 +16,6 @@ Usage: man [command] [section] [/e] [/create] Example: o man man o man man /e - o man man 2 - o man quake3 5 /e /create - + o man man 2 + o man quake3 5 /e /create + diff --git a/modules/rosapps/applications/sysutils/man/man/2/ping.man b/modules/rosapps/applications/sysutils/man/man/2/ping.man index 23db57598af..8c8d94a2a05 100644 --- a/modules/rosapps/applications/sysutils/man/man/2/ping.man +++ b/modules/rosapps/applications/sysutils/man/man/2/ping.man @@ -1,9 +1,9 @@ -[]==============================[ping.exe]=======================================[] - +[]==============================[ping.exe]=======================================[] + Ptoject: ReactOS ping utility Purpose: Network test utility Programmers: Casper S. Hornstrup (chorns@users.sourceforge.net) - + Usage: ping [-t] [-n count] [-l size] [-w timeout] destination-host\n\n -t Ping the specified host until stopped. To stop - type Control-C. diff --git a/modules/rosapps/applications/sysutils/man/man/3/taskmgr.man b/modules/rosapps/applications/sysutils/man/man/3/taskmgr.man index 7b513b4a7e3..e5e0d0099fe 100644 --- a/modules/rosapps/applications/sysutils/man/man/3/taskmgr.man +++ b/modules/rosapps/applications/sysutils/man/man/3/taskmgr.man @@ -2,7 +2,7 @@ Author: Brian Palmer Purpose: ROS task manager License: GPL - - - + + + \ No newline at end of file diff --git a/modules/rosapps/applications/sysutils/man/man/man.1 b/modules/rosapps/applications/sysutils/man/man/man.1 index 429cc1d60db..18e14e7c216 100644 --- a/modules/rosapps/applications/sysutils/man/man/man.1 +++ b/modules/rosapps/applications/sysutils/man/man/man.1 @@ -12,10 +12,10 @@ This project is UNIX(tm) man compatible tool for ReactOS. .NL Manual browser support next tags: .NL -.I ./" +.I ./" as comment tag .NL -.I .NL +.I .NL as "new line" tag (ReactOS only) .NL .I .B @@ -33,13 +33,13 @@ as "new line" tag (ReactOS only) .SH OPTIONS At this moment man support only .B "/?, /h, -h, --help" -arguments :) +arguments :) .SH FILES Now all of manual pages must be in -.B c:\man\ +.B c:\man\ directory. This is hack or bug, i don't know... We planed use ENVIRONMENT -varrible to set manual path. +varrible to set manual path. .NL Manual files should have extension which marks section of his content. .NL @@ -84,7 +84,7 @@ man can't correctly scroll screen tag who absent in original man .NL .I ./" hack -at the end of man file must be ./" tag +at the end of man file must be ./" tag .NL .I putchar() method all text displays with putchar() function. @@ -92,7 +92,7 @@ all text displays with putchar() function. And we have non correct word carry. .SH AUTHOR -Semyon Novikov +Semyon Novikov .NL .I .NL diff --git a/modules/rosapps/applications/sysutils/systeminfo/systeminfo.c b/modules/rosapps/applications/sysutils/systeminfo/systeminfo.c index de499123850..b2de0f44520 100644 --- a/modules/rosapps/applications/sysutils/systeminfo/systeminfo.c +++ b/modules/rosapps/applications/sysutils/systeminfo/systeminfo.c @@ -77,7 +77,7 @@ RegGetSZ(HKEY hKey, LPCWSTR lpSubKey, LPCWSTR lpValueName, LPWSTR lpBuf, DWORD c /* NULL-terminate string */ lpBuf[min(cchBuf-1, cChars)] = L'\0'; - + /* Don't count NULL characters */ while(cChars && !lpBuf[cChars-1]) --cChars; @@ -423,12 +423,12 @@ AllSysInfo(VOID) { swprintf(Tmp, L"HARDWARE\\DESCRIPTION\\System\\CentralProcessor\\%u", i); j = swprintf(Buf, L"[%02u]: ", i + 1); - + j += RegGetSZ(HKEY_LOCAL_MACHINE, Tmp, L"Identifier", Buf + j, BUFFER_SIZE - j); if(j + 1 < BUFFER_SIZE) Buf[j++] = L' '; RegGetSZ(HKEY_LOCAL_MACHINE, Tmp, L"VendorIdentifier", Buf + j, BUFFER_SIZE - j); - + PrintRow(0, FALSE, L"%s", Buf); } @@ -628,7 +628,7 @@ AllSysInfo(VOID) ++cAdapters; pCurrentAdapter = pCurrentAdapter->Next; } - + /* Print adapters count */ if (!LoadStringW(GetModuleHandle(NULL), IDS_NETWORK_CARDS_FORMAT, Tmp, BUFFER_SIZE)) diff --git a/modules/rosapps/applications/winfile/winefile.c b/modules/rosapps/applications/winfile/winefile.c index 54705f7f23c..2b0466dedee 100644 --- a/modules/rosapps/applications/winfile/winefile.c +++ b/modules/rosapps/applications/winfile/winefile.c @@ -1332,7 +1332,7 @@ static ChildWnd* alloc_child_window(LPCWSTR path, LPITEMIDLIST pidl, HWND hwnd) pathlen--; } lstrcpynW(child->path, npath, pathlen + 1); - + _wsplitpath(child->path, drv, dir, name, ext); } diff --git a/modules/rosapps/drivers/vcdrom/vcdrom.c b/modules/rosapps/drivers/vcdrom/vcdrom.c index d37d91a0d00..c3e995dcfd4 100644 --- a/modules/rosapps/drivers/vcdrom/vcdrom.c +++ b/modules/rosapps/drivers/vcdrom/vcdrom.c @@ -559,7 +559,7 @@ VcdRead(PDEVICE_OBJECT DeviceObject, PIRP Irp) * FSD performing initial reads for mouting FS) */ Stack = IoGetCurrentIrpStackLocation(Irp); - if (BooleanFlagOn(DeviceObject->Flags, DO_VERIFY_VOLUME) && + if (BooleanFlagOn(DeviceObject->Flags, DO_VERIFY_VOLUME) && !BooleanFlagOn(Stack->Flags, SL_OVERRIDE_VERIFY_VOLUME)) { Status = ViVerifyVolume(DeviceObject, Irp); @@ -687,7 +687,7 @@ ViGetDriveGeometry(PDEVICE_OBJECT DeviceObject, PIRP Irp) /* No geometry if volume is to be verified */ Stack = IoGetCurrentIrpStackLocation(Irp); - if (BooleanFlagOn(DeviceObject->Flags, DO_VERIFY_VOLUME) && + if (BooleanFlagOn(DeviceObject->Flags, DO_VERIFY_VOLUME) && !BooleanFlagOn(Stack->Flags, SL_OVERRIDE_VERIFY_VOLUME)) { return ViVerifyVolume(DeviceObject, Irp); @@ -727,7 +727,7 @@ ViCheckVerify(PDEVICE_OBJECT DeviceObject, PIRP Irp) /* Do we have to verify? */ Stack = IoGetCurrentIrpStackLocation(Irp); - if (BooleanFlagOn(DeviceObject->Flags, DO_VERIFY_VOLUME) && + if (BooleanFlagOn(DeviceObject->Flags, DO_VERIFY_VOLUME) && !BooleanFlagOn(Stack->Flags, SL_OVERRIDE_VERIFY_VOLUME)) { return ViSetIoStatus(STATUS_VERIFY_REQUIRED, 0, Irp); @@ -809,7 +809,7 @@ ViReadToc(PDEVICE_OBJECT DeviceObject, PIRP Irp) /* No TOC if we have to verify */ Stack = IoGetCurrentIrpStackLocation(Irp); - if (BooleanFlagOn(DeviceObject->Flags, DO_VERIFY_VOLUME) && + if (BooleanFlagOn(DeviceObject->Flags, DO_VERIFY_VOLUME) && !BooleanFlagOn(Stack->Flags, SL_OVERRIDE_VERIFY_VOLUME)) { return ViVerifyVolume(DeviceObject, Irp); @@ -852,7 +852,7 @@ ViReadTocEx(PDEVICE_OBJECT DeviceObject, PIRP Irp) /* No TOC if we have to verify */ Stack = IoGetCurrentIrpStackLocation(Irp); - if (BooleanFlagOn(DeviceObject->Flags, DO_VERIFY_VOLUME) && + if (BooleanFlagOn(DeviceObject->Flags, DO_VERIFY_VOLUME) && !BooleanFlagOn(Stack->Flags, SL_OVERRIDE_VERIFY_VOLUME)) { return ViVerifyVolume(DeviceObject, Irp); @@ -873,7 +873,7 @@ ViReadTocEx(PDEVICE_OBJECT DeviceObject, PIRP Irp) /* Validate the input buffer - see cdrom_new */ TocEx = Irp->AssociatedIrp.SystemBuffer; if ((TocEx->Reserved1 != 0) || (TocEx->Reserved2 != 0) || - (TocEx->Reserved3 != 0)) + (TocEx->Reserved3 != 0)) { return ViSetIoStatus(STATUS_INVALID_PARAMETER, 0, Irp); } @@ -927,7 +927,7 @@ ViGetLastSession(PDEVICE_OBJECT DeviceObject, PIRP Irp) /* No last session if we have to verify */ Stack = IoGetCurrentIrpStackLocation(Irp); - if (BooleanFlagOn(DeviceObject->Flags, DO_VERIFY_VOLUME) && + if (BooleanFlagOn(DeviceObject->Flags, DO_VERIFY_VOLUME) && !BooleanFlagOn(Stack->Flags, SL_OVERRIDE_VERIFY_VOLUME)) { return ViVerifyVolume(DeviceObject, Irp); diff --git a/modules/rosapps/readme.txt b/modules/rosapps/readme.txt index f0b5b84ea14..07220b04eff 100644 --- a/modules/rosapps/readme.txt +++ b/modules/rosapps/readme.txt @@ -8,7 +8,7 @@ source before you attempt to build anything in this module. It is to be placed under "modules" subdirectory of a trunk checkout. The module requires to be enabled during the "configure" process. -To include the module in your build folder, run the configure script with the flags -DENABLE_ROSAPPS=1 +To include the module in your build folder, run the configure script with the flags -DENABLE_ROSAPPS=1 # For Windows users @@ -16,4 +16,4 @@ To include the module in your build folder, run the configure script with the fl # For UNIX users - ./configure.sh -DENABLE_ROSAPPS=1 \ No newline at end of file + ./configure.sh -DENABLE_ROSAPPS=1 diff --git a/modules/rosapps/templates/mdi/childwnd.c b/modules/rosapps/templates/mdi/childwnd.c index 3fb05deaa35..0b400079ebd 100644 --- a/modules/rosapps/templates/mdi/childwnd.c +++ b/modules/rosapps/templates/mdi/childwnd.c @@ -137,7 +137,7 @@ LRESULT CALLBACK ChildWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lPa } //goto def; break; - + case WM_LBUTTONDOWN: { RECT rt; int x = LOWORD(lParam); diff --git a/modules/rosapps/templates/skel_service/ServiceMain.c b/modules/rosapps/templates/skel_service/ServiceMain.c index ff8fd1b976b..b41422cf8e0 100644 --- a/modules/rosapps/templates/skel_service/ServiceMain.c +++ b/modules/rosapps/templates/skel_service/ServiceMain.c @@ -1,7 +1,7 @@ /* * PROJECT: ReactOS services * LICENSE: GPL - See COPYING in the top level directory - * FILE: + * FILE: * PURPOSE: skeleton service * COPYRIGHT: Copyright 2008 Ged Murphy * diff --git a/modules/rosapps/templates/skel_service/log.c b/modules/rosapps/templates/skel_service/log.c index cb17f572d61..5b180018e9c 100644 --- a/modules/rosapps/templates/skel_service/log.c +++ b/modules/rosapps/templates/skel_service/log.c @@ -1,7 +1,7 @@ /* * PROJECT: ReactOS services * LICENSE: GPL - See COPYING in the top level directory - * FILE: + * FILE: * PURPOSE: skeleton service * COPYRIGHT: Copyright 2008 Ged Murphy * @@ -49,7 +49,7 @@ OpenLogFile() OPEN_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL); - if (hLogFile == INVALID_HANDLE_VALUE) + if (hLogFile == INVALID_HANDLE_VALUE) return FALSE; return TRUE; diff --git a/modules/rostests/apitests/advapi32/svchlp.c b/modules/rostests/apitests/advapi32/svchlp.c index 1d0bf62c59f..a222146ec32 100644 --- a/modules/rostests/apitests/advapi32/svchlp.c +++ b/modules/rostests/apitests/advapi32/svchlp.c @@ -10,7 +10,7 @@ * - One test_runner managing 1 pipe for 1 service process that is shared * by multiple services of type SERVICE_WIN32_SHARE_PROCESS. * - Find a way to elegantly determine the registered service name inside - * the service process, without really passing it + * the service process, without really passing it */ #include "precomp.h" @@ -270,7 +270,7 @@ static DWORD WINAPI pipe_thread(void *param) * Flush the pipe to allow the client to read * the pipe's contents before disconnecting. */ - FlushFileBuffers(hServerPipe); + FlushFileBuffers(hServerPipe); DisconnectNamedPipe(hServerPipe); trace("pipe disconnected\n"); diff --git a/modules/rostests/apitests/apphelp/data.c b/modules/rostests/apitests/apphelp/data.c index 58278271848..dffad647572 100644 --- a/modules/rostests/apitests/apphelp/data.c +++ b/modules/rostests/apitests/apphelp/data.c @@ -186,7 +186,7 @@ typedef struct rsrc_section_t IMAGE_RESOURCE_DIRECTORY version_info_header; IMAGE_RESOURCE_DIRECTORY_ENTRY version_lang_id; IMAGE_RESOURCE_DATA_ENTRY version_data_entry; - + VS_VERSIONINFO version_info; STRINGFILEINFO string_file_info; STRINGTABLE string_table; @@ -445,7 +445,7 @@ typedef struct export_section_t } export_section_t; /* This export section is not complete, but the Name RVA is only taken into account */ -static export_section_t export_dir = +static export_section_t export_dir = { { 0, /* Characteristics */ diff --git a/modules/rostests/apitests/atl/CImage.cpp b/modules/rostests/apitests/atl/CImage.cpp index d5a1e667ea7..269c3fd7686 100644 --- a/modules/rostests/apitests/atl/CImage.cpp +++ b/modules/rostests/apitests/atl/CImage.cpp @@ -288,7 +288,7 @@ START_TEST(CImage) CSimpleString strExporters(mgr); aguidFileTypes.RemoveAll(); hr = CImage::GetExporterFilterString(strExporters, - aguidFileTypes, + aguidFileTypes, TEXT("All Image Files"), 0); ok(hr == S_OK, "Expected hr to be S_OK, was: %ld\n", hr); ok(aguidFileTypes.GetSize() == 9, "Expected aguidFileTypes.GetSize() to be 8, was %d.", aguidFileTypes.GetSize()); diff --git a/modules/rostests/apitests/comctl32/button.c b/modules/rostests/apitests/comctl32/button.c index 6868c1ce724..8a162fd67d5 100644 --- a/modules/rostests/apitests/comctl32/button.c +++ b/modules/rostests/apitests/comctl32/button.c @@ -22,7 +22,7 @@ void Test_TextMargin() RECT rc; BOOL ret; HWND hwnd1; - + hwnd1 = CreateWindowW(L"Button", L"Test1", 0, 10, 10, 100, 100, 0, NULL, NULL, NULL); ok (hwnd1 != NULL, "Expected CreateWindowW to succeed\n"); SetWindowTheme(hwnd1, L"", L""); @@ -30,19 +30,19 @@ void Test_TextMargin() ret = SendMessageW(hwnd1, BCM_GETTEXTMARGIN, 0, (LPARAM)&rc); ok (ret == TRUE, "Expected BCM_GETTEXTMARGIN to succeed\n"); ok_rect(rc, 1, 1, 1, 1); - + SetRect(&rc, 0,0,0,0); ret = SendMessageW(hwnd1, BCM_SETTEXTMARGIN, 0, (LPARAM)&rc); ok (ret == TRUE, "Expected BCM_SETTEXTMARGIN to succeed\n"); - + ret = SendMessageW(hwnd1, BCM_GETTEXTMARGIN, 0, (LPARAM)&rc); ok (ret == TRUE, "Expected BCM_GETTEXTMARGIN to succeed\n"); ok_rect(rc, 0, 0, 0, 0); - + SetRect(&rc, -1,-1,-1,-1); ret = SendMessageW(hwnd1, BCM_SETTEXTMARGIN, 0, (LPARAM)&rc); ok (ret == TRUE, "Expected BCM_SETTEXTMARGIN to succeed\n"); - + ret = SendMessageW(hwnd1, BCM_GETTEXTMARGIN, 0, (LPARAM)&rc); ok (ret == TRUE, "Expected BCM_GETTEXTMARGIN to succeed\n"); ok_rect(rc, -1, -1, -1, -1); @@ -50,11 +50,11 @@ void Test_TextMargin() SetRect(&rc, 1000,1000,1000,1000); ret = SendMessageW(hwnd1, BCM_SETTEXTMARGIN, 0, (LPARAM)&rc); ok (ret == TRUE, "Expected BCM_SETTEXTMARGIN to succeed\n"); - + ret = SendMessageW(hwnd1, BCM_GETTEXTMARGIN, 0, (LPARAM)&rc); ok (ret == TRUE, "Expected BCM_GETTEXTMARGIN to succeed\n"); ok_rect(rc, 1000, 1000, 1000, 1000); - + DestroyWindow(hwnd1); hwnd1 = CreateWindowW(L"Button", L"Test1", BS_DEFPUSHBUTTON, 10, 10, 100, 100, 0, NULL, NULL, NULL); @@ -83,7 +83,7 @@ void Test_Imagelist() ok (imlData.himl == 0, "Expected 0 himl\n"); ok (imlData.uAlign == 0, "Expected 0 uAlign\n"); ok_rect(imlData.margin, 0, 0, 0, 0); - + SetRect(&imlData.margin, 0,0,0,1); ret = SendMessageW(hwnd1, BCM_SETIMAGELIST, 0, (LPARAM)&imlData); ok (ret == FALSE, "Expected BCM_SETIMAGELIST to fail\n"); /* This works in win10 */ @@ -91,7 +91,7 @@ void Test_Imagelist() imlData.himl = (HIMAGELIST)0xdead; ret = SendMessageW(hwnd1, BCM_SETIMAGELIST, 0, (LPARAM)&imlData); ok (ret == TRUE, "Expected BCM_SETIMAGELIST to fail\n"); - + ret = SendMessageW(hwnd1, BCM_GETIMAGELIST, 0, (LPARAM)&imlData); ok (ret == TRUE, "Expected BCM_GETIMAGELIST to succeed\n"); ok (imlData.himl == (HIMAGELIST)0xdead, "Expected 0 himl\n"); @@ -134,7 +134,7 @@ void Test_GetIdealSizeNoThemes() memset(&s, 0, sizeof(s)); ret = SendMessageW(hwnd1, BCM_GETIDEALSIZE, 0, (LPARAM)&s); ok (ret == TRUE, "Expected BCM_GETIDEALSIZE to succeed\n"); - ok_size(s, textent.cx + 5 + 2, + ok_size(s, textent.cx + 5 + 2, textent.cy + 7 + 2); /* the last +2 is the text margin */ DestroyWindow(hwnd1); @@ -147,7 +147,7 @@ void Test_GetIdealSizeNoThemes() memset(&s, 0, sizeof(s)); ret = SendMessageW(hwnd1, BCM_GETIDEALSIZE, 0, (LPARAM)&s); ok (ret == TRUE, "Expected BCM_GETIDEALSIZE to succeed\n"); - ok_size(s, textent.cx + 5 + 2, + ok_size(s, textent.cx + 5 + 2, textent.cy + 7 + 2); /* the last +2 is the text margin */ DestroyWindow(hwnd1); @@ -218,7 +218,7 @@ void Test_GetIdealSizeNoThemes() ok (ret == TRUE, "Expected BCM_GETIDEALSIZE to succeed\n"); /* In xp and 2k3 the image is ignored, in vista+ its width is added to the text width */ - ok_size(s, textent.cx + 5 + 2, + ok_size(s, textent.cx + 5 + 2, textent.cy + 7 + 2); /* the last +2 is the text margin */ DestroyWindow(hwnd1); @@ -236,7 +236,7 @@ void Test_GetIdealSizeNoThemes() memset(&s, 0, sizeof(s)); ret = SendMessageW(hwnd1, BCM_GETIDEALSIZE, 0, (LPARAM)&s); ok (ret == TRUE, "Expected BCM_GETIDEALSIZE to succeed\n"); - ok_size(s, textent.cx + 5, + ok_size(s, textent.cx + 5, textent.cy + 7); SetRect(&rc, 50,50,50,50); @@ -246,7 +246,7 @@ void Test_GetIdealSizeNoThemes() memset(&s, 0, sizeof(s)); ret = SendMessageW(hwnd1, BCM_GETIDEALSIZE, 0, (LPARAM)&s); ok (ret == TRUE, "Expected BCM_GETIDEALSIZE to succeed\n"); - ok_size(s, textent.cx + 5 + 100, + ok_size(s, textent.cx + 5 + 100, textent.cy + 7 + 100); SetRect(&rc, 1,1,1,1); @@ -400,7 +400,7 @@ void Test_GetIdealSizeNoThemes() ok (ret == TRUE, "Expected BCM_GETIDEALSIZE to succeed\n"); ok_size(s, 72, 72); DestroyWindow(hwnd1); - + hwnd1 = CreateWindowW(L"Button", L"", i|WS_CHILD, 0, 0, 150, 72, hwnd2, NULL, NULL, NULL); ok (hwnd1 != NULL, "Expected CreateWindowW to succeed\n"); memset(&s, 0, sizeof(s)); @@ -790,7 +790,7 @@ void Test_MessagesNonThemed() SendMessageW(hWnd2, WM_ENABLE, TRUE, 0); FlushMessages(); COMPARE_CACHE(enable_nonthemed_sequence); - + SendMessageW(hWnd2, WM_LBUTTONDOWN, 0, 0); FlushMessages(); COMPARE_CACHE(btndown_nonthemed_sequence); @@ -809,7 +809,7 @@ void Test_MessagesNonThemed() SendMessageW(hWnd2, BM_CLICK, 0, 0); FlushMessages(); - COMPARE_CACHE(btnclick_nonthemed_sequence); + COMPARE_CACHE(btnclick_nonthemed_sequence); state = SendMessageW(hWnd2, BM_GETSTATE,0,0); ok_hex(state, BST_FOCUS); diff --git a/modules/rostests/apitests/crt/__rt_div.c b/modules/rostests/apitests/crt/__rt_div.c index 72c7460ce60..8f3a3793c73 100644 --- a/modules/rostests/apitests/crt/__rt_div.c +++ b/modules/rostests/apitests/crt/__rt_div.c @@ -41,7 +41,7 @@ typedef struct _UDIV64_TEST_DATA START_TEST(__rt_div) { - SDIV_TEST_DATA sdiv[] = + SDIV_TEST_DATA sdiv[] = { /* Dividend is larger than divisor */ { 3425, 400, 8, 225 }, @@ -59,7 +59,7 @@ START_TEST(__rt_div) { 16777216, -65536, -256, 0 }, { -16777216, -65536, 256, 0 }, }; - UDIV_TEST_DATA udiv[] = + UDIV_TEST_DATA udiv[] = { /* Dividend is larger than divisor */ { 3425, 400, 8, 225 }, @@ -68,7 +68,7 @@ START_TEST(__rt_div) /* Division without remainder */ { 16777216, 65536, 256, 0 }, }; - SDIV64_TEST_DATA sdiv64[] = + SDIV64_TEST_DATA sdiv64[] = { /* Dividend is larger than divisor */ { 34918215, 7, 4988316, 3 }, @@ -104,7 +104,7 @@ START_TEST(__rt_div) { 0x2AFFFFFFFLL * 100, -100, -0x2AFFFFFFFLL, 0 }, { -0x2AFFFFFFFLL * 100, -100, 0x2AFFFFFFFLL, 0 }, }; - UDIV64_TEST_DATA udiv64[] = + UDIV64_TEST_DATA udiv64[] = { /* Dividend is larger than divisor */ { 34918215, 7, 4988316, 3 }, diff --git a/modules/rostests/apitests/crt/_vsnprintf.c b/modules/rostests/apitests/crt/_vsnprintf.c index d23f6dc2806..1edf5235582 100644 --- a/modules/rostests/apitests/crt/_vsnprintf.c +++ b/modules/rostests/apitests/crt/_vsnprintf.c @@ -62,7 +62,7 @@ START_TEST(_vsnprintf) #if defined(TEST_USER32) EndSeh(STATUS_ACCESS_VIOLATION); -#else +#else EndSeh(STATUS_SUCCESS); #endif diff --git a/modules/rostests/apitests/crt/dll_startup.h b/modules/rostests/apitests/crt/dll_startup.h index 08dfbc4a616..e5a1a632e44 100644 --- a/modules/rostests/apitests/crt/dll_startup.h +++ b/modules/rostests/apitests/crt/dll_startup.h @@ -5,7 +5,7 @@ * PROGRAMMER: Thomas Faber */ -#pragma once +#pragma once struct counter_values { diff --git a/modules/rostests/apitests/dbghelp/rsym.c b/modules/rostests/apitests/dbghelp/rsym.c index fa4e3218011..22aee9abea5 100644 --- a/modules/rostests/apitests/dbghelp/rsym.c +++ b/modules/rostests/apitests/dbghelp/rsym.c @@ -3,7 +3,7 @@ * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later) * PURPOSE: Test for dbghelp rsym functions * COPYRIGHT: Copyright 2017-2019 Mark Jansen (mark.jansen@reactos.org) - * + * * These tests are based on the PDB tests. */ diff --git a/modules/rostests/apitests/dnsapi/DnsQuery.c b/modules/rostests/apitests/dnsapi/DnsQuery.c index 3229ed9a3af..376b2fee36c 100644 --- a/modules/rostests/apitests/dnsapi/DnsQuery.c +++ b/modules/rostests/apitests/dnsapi/DnsQuery.c @@ -67,7 +67,7 @@ void TestHostName(void) dns_status = DnsQuery_A(host_name, DNS_TYPE_A, DNS_QUERY_STANDARD, 0, NULL, 0); ok(dns_status == ERROR_INVALID_PARAMETER, "DnsQuery_A failed with error %lu\n", dns_status); - //Testing HostName + //Testing HostName dp = InvalidPointer; dns_status = DnsQuery_A(host_name, DNS_TYPE_A, DNS_QUERY_STANDARD, 0, &dp, 0); ok(dns_status == NO_ERROR, "DnsQuery_A failed with error %lu\n", dns_status); @@ -79,7 +79,7 @@ void TestHostName(void) } ok(dp != InvalidPointer && dp != NULL, "dp = %p\n", dp); if (dp != InvalidPointer) DnsRecordListFree(dp, DnsFreeRecordList); - + //127.0.0.1 dp = InvalidPointer; dns_status = DnsQuery_A("127.0.0.1", DNS_TYPE_A, DNS_QUERY_STANDARD, 0, &dp, 0); diff --git a/modules/rostests/apitests/gdi32/CreateFontIndirect.c b/modules/rostests/apitests/gdi32/CreateFontIndirect.c index f9fa57cb5ae..25db7511bf9 100644 --- a/modules/rostests/apitests/gdi32/CreateFontIndirect.c +++ b/modules/rostests/apitests/gdi32/CreateFontIndirect.c @@ -84,7 +84,7 @@ Test_CreateFontIndirectExA(void) LOGFONTA *plogfonta; HFONT hFont; ULONG ret; - + memset(&elfedva, 0, sizeof(elfedva)); penumlfa = &elfedva.elfEnumLogfontEx; plogfonta = &elfedva.elfEnumLogfontEx.elfLogFont; @@ -130,7 +130,7 @@ Test_CreateFontIndirectExW(void) LOGFONTW *plogfontw; HFONT hFont; ULONG ret; - + memset(&elfedv, 0, sizeof(elfedv)); penumlfw = &elfedv.elfEnumLogfontEx; plogfontw = &elfedv.elfEnumLogfontEx.elfLogFont; diff --git a/modules/rostests/apitests/gdi32/DPtoLP.c b/modules/rostests/apitests/gdi32/DPtoLP.c index 6c0414dca9b..5caa0a3f62f 100644 --- a/modules/rostests/apitests/gdi32/DPtoLP.c +++ b/modules/rostests/apitests/gdi32/DPtoLP.c @@ -169,7 +169,7 @@ static const TEST_ENTRY s_shifted_entries[] = { __LINE__, TRUE, 0xDEADBEEF, TRUE, MM_HIMETRIC, PRESET2, 75, 0, NO_CHECK, NO_CHECK, 0, 0, DISPLAY_SIZE, NEGA_DISPLAY_SIZE, { 100, 150 }, { CALC_VALUE_2, CALC_VALUE_2 } }, { __LINE__, TRUE, 0xDEADBEEF, TRUE, MM_HIMETRIC, PRESET3, 0, 180, NO_CHECK, NO_CHECK, 120, 0, DISPLAY_SIZE, NEGA_DISPLAY_SIZE, { 100, 150 }, { CALC_VALUE_2, CALC_VALUE_2 } }, { __LINE__, TRUE, 0xDEADBEEF, TRUE, MM_HIMETRIC, PRESET4, 0, 0, NO_CHECK, NO_CHECK, 50, 0, DISPLAY_SIZE, NEGA_DISPLAY_SIZE, { 100, 150 }, { CALC_VALUE_2, CALC_VALUE_2 } }, - { __LINE__, TRUE, 0xDEADBEEF, TRUE, MM_HIMETRIC, PRESET5, 0, 0, NO_CHECK, NO_CHECK, 0, 0, DISPLAY_SIZE, NEGA_DISPLAY_SIZE, { 100, 150 }, { CALC_VALUE_2, CALC_VALUE_2 } }, + { __LINE__, TRUE, 0xDEADBEEF, TRUE, MM_HIMETRIC, PRESET5, 0, 0, NO_CHECK, NO_CHECK, 0, 0, DISPLAY_SIZE, NEGA_DISPLAY_SIZE, { 100, 150 }, { CALC_VALUE_2, CALC_VALUE_2 } }, { __LINE__, TRUE, 0xDEADBEEF, TRUE, MM_HIMETRIC, PRESET6, 50, 0, NO_CHECK, NO_CHECK, 10, 0, DISPLAY_SIZE, NEGA_DISPLAY_SIZE, { 100, 150 }, { CALC_VALUE_2, CALC_VALUE_2 } }, { __LINE__, TRUE, 0xDEADBEEF, TRUE, MM_LOENGLISH, PRESET0, 0, 0, NO_CHECK, NO_CHECK, 0, 0, DISPLAY_SIZE, NEGA_DISPLAY_SIZE, { 100, 150 }, { CALC_VALUE_2, CALC_VALUE_2 } }, diff --git a/modules/rostests/apitests/gdi32/GetFontResourceInfoW.c b/modules/rostests/apitests/gdi32/GetFontResourceInfoW.c index 72cb75c258e..6b908501317 100644 --- a/modules/rostests/apitests/gdi32/GetFontResourceInfoW.c +++ b/modules/rostests/apitests/gdi32/GetFontResourceInfoW.c @@ -33,7 +33,7 @@ static const GFRI_ENTRY AdditionalTestEntriesJapanese[] = { { /* MS Gothic & MS UI Gothic & MS PGothic */ - L"msgothic.ttc", TRUE, + L"msgothic.ttc", TRUE, { 0xFF2D, 0xFF33, 0x0020, 0x30B4, 0x30B7, 0x30C3, 0x30AF, 0x0020, 0x0026, 0x0020, 0x004D, 0x0053, 0x0020, 0x0055, 0x0049, 0x0020, diff --git a/modules/rostests/apitests/gdi32/LPtoDP.c b/modules/rostests/apitests/gdi32/LPtoDP.c index ac713b232ae..3cd9ea2469d 100644 --- a/modules/rostests/apitests/gdi32/LPtoDP.c +++ b/modules/rostests/apitests/gdi32/LPtoDP.c @@ -168,7 +168,7 @@ static const TEST_ENTRY s_shifted_entries[] = { __LINE__, TRUE, 0xDEADBEEF, TRUE, MM_HIMETRIC, PRESET2, 75, 0, NO_CHECK, NO_CHECK, 0, 0, DISPLAY_SIZE, NEGA_DISPLAY_SIZE, { 100, 150 }, { CALC_VALUE_2, CALC_VALUE_2 } }, { __LINE__, TRUE, 0xDEADBEEF, TRUE, MM_HIMETRIC, PRESET3, 0, 180, NO_CHECK, NO_CHECK, 120, 0, DISPLAY_SIZE, NEGA_DISPLAY_SIZE, { 100, 150 }, { CALC_VALUE_2, CALC_VALUE_2 } }, { __LINE__, TRUE, 0xDEADBEEF, TRUE, MM_HIMETRIC, PRESET4, 0, 0, NO_CHECK, NO_CHECK, 50, 0, DISPLAY_SIZE, NEGA_DISPLAY_SIZE, { 100, 150 }, { CALC_VALUE_2, CALC_VALUE_2 } }, - { __LINE__, TRUE, 0xDEADBEEF, TRUE, MM_HIMETRIC, PRESET5, 0, 0, NO_CHECK, NO_CHECK, 0, 0, DISPLAY_SIZE, NEGA_DISPLAY_SIZE, { 100, 150 }, { CALC_VALUE_2, CALC_VALUE_2 } }, + { __LINE__, TRUE, 0xDEADBEEF, TRUE, MM_HIMETRIC, PRESET5, 0, 0, NO_CHECK, NO_CHECK, 0, 0, DISPLAY_SIZE, NEGA_DISPLAY_SIZE, { 100, 150 }, { CALC_VALUE_2, CALC_VALUE_2 } }, { __LINE__, TRUE, 0xDEADBEEF, TRUE, MM_HIMETRIC, PRESET6, 50, 0, NO_CHECK, NO_CHECK, 10, 0, DISPLAY_SIZE, NEGA_DISPLAY_SIZE, { 100, 150 }, { CALC_VALUE_2, CALC_VALUE_2 } }, { __LINE__, TRUE, 0xDEADBEEF, TRUE, MM_LOENGLISH, PRESET0, 0, 0, NO_CHECK, NO_CHECK, 0, 0, DISPLAY_SIZE, NEGA_DISPLAY_SIZE, { 100, 150 }, { CALC_VALUE_2, CALC_VALUE_2 } }, diff --git a/modules/rostests/apitests/gdi32/Rectangle.c b/modules/rostests/apitests/gdi32/Rectangle.c index 266664beaca..2046ba9ccc1 100644 --- a/modules/rostests/apitests/gdi32/Rectangle.c +++ b/modules/rostests/apitests/gdi32/Rectangle.c @@ -15,23 +15,23 @@ void Test_Rectangle(void) HBRUSH hBrush; HPEN hPen; COLORREF color; - + hdc = CreateCompatibleDC(NULL); ok(hdc != NULL, "Failed to create the DC!\n"); hBmp = CreateCompatibleBitmap(hdc, 4, 4); ok(hBmp != NULL, "Failed to create the Bitmap!\n"); hBmp = SelectObject(hdc, hBmp); ok(hBmp != NULL, "Failed to select the Bitmap!\n"); - + hBrush = CreateSolidBrush(RGB(0, 0, 0)); ok(hBrush != NULL, "Failed to create a solid brush!\n"); hBrush = SelectObject(hdc, hBrush); ok(hBrush != NULL, "Failed to select the brush!\n"); - + /* Blank the bitmap */ ret = BitBlt(hdc, 0, 0, 4, 4, NULL, 0, 0, WHITENESS); ok(ret, "BitBlt failed to blank the bitmap!\n"); - + /* Try inverted rectangle coordinates */ ret = Rectangle(hdc, 0, 2, 2, 0); ok(ret, "Rectangle failed!"); @@ -61,14 +61,14 @@ void Test_Rectangle(void) ok( color == RGB(255, 255, 255), "Expected 0x00FFFFFF, got 0x%08x\n", (UINT)color); color = GetPixel(hdc, 1, 1); ok( color == RGB(0, 0, 0), "Expected 0, got 0x%08x\n", (UINT)color); - + /* tests with NULL pen */ hPen = SelectObject(hdc, GetStockObject(NULL_PEN)); - + /* Blank the bitmap */ ret = BitBlt(hdc, 0, 0, 4, 4, NULL, 0, 0, WHITENESS); ok(ret, "BitBlt failed to blank the bitmap!\n"); - + ret = Rectangle(hdc, 0, 0, 3, 3); ok(ret, "Rectangle failed!"); color = GetPixel(hdc, 0, 0); @@ -81,16 +81,16 @@ void Test_Rectangle(void) ok( color == RGB(255, 255, 255), "Expected 0x00FFFFFF, got 0x%08x\n", (UINT)color); color = GetPixel(hdc, 1, 1); ok( color == RGB(0, 0, 0), "Expected 0, got 0x%08x\n", (UINT)color); - + SelectObject(hdc, hPen); - + /* Same tests with GM_ADVANCED */ ok(SetGraphicsMode(hdc, GM_ADVANCED) == GM_COMPATIBLE, "Default mode for the DC is not GM_COMPATIBLE.\n"); - + /* Blank the bitmap */ ret = BitBlt(hdc, 0, 0, 4, 4, NULL, 0, 0, WHITENESS); ok(ret, "BitBlt failed to blank the bitmap!\n"); - + /* Try inverted rectangle coordinates */ ret = Rectangle(hdc, 0, 2, 2, 0); ok(ret, "Rectangle failed!"); @@ -106,7 +106,7 @@ void Test_Rectangle(void) ok( color == RGB(0, 0, 0), "Expected 0, got 0x%08x\n", (UINT)color); ret = BitBlt(hdc, 0, 0, 4, 4, NULL, 0, 0, WHITENESS); - ok(ret, "BitBlt failed to blank the bitmap!\n"); + ok(ret, "BitBlt failed to blank the bitmap!\n"); /* Try well ordered rectangle coordinates */ ret = Rectangle(hdc, 0, 0, 2, 2); ok(ret, "Rectangle failed!"); @@ -120,15 +120,15 @@ void Test_Rectangle(void) ok( color == RGB(0, 0, 0), "Expected 0, got 0x%08x\n", (UINT)color); color = GetPixel(hdc, 1, 1); ok( color == RGB(0, 0, 0), "Expected 0, got 0x%08x\n", (UINT)color); - - + + hBmp = SelectObject(hdc, hBmp); hBrush = SelectObject(hdc, hBrush); DeleteObject(hBmp); DeleteObject(hBrush); DeleteDC(hdc); } - + START_TEST(Rectangle) { diff --git a/modules/rostests/apitests/gdi32/SetLayout.c b/modules/rostests/apitests/gdi32/SetLayout.c index 254fd426533..a6c5c9efbf0 100644 --- a/modules/rostests/apitests/gdi32/SetLayout.c +++ b/modules/rostests/apitests/gdi32/SetLayout.c @@ -74,7 +74,7 @@ dump(PUINT32 buffer, int width, LPCSTR title) if (pixel_value != WHITE_PIXEL && c != '?') { - attributes = (pixel_value & RED_PIXEL) ? FOREGROUND_RED : 0 | + attributes = (pixel_value & RED_PIXEL) ? FOREGROUND_RED : 0 | (pixel_value & GREEN_PIXEL) ? FOREGROUND_GREEN : 0 | (pixel_value & BLUE_PIXEL) ? FOREGROUND_BLUE : 0; } diff --git a/modules/rostests/apitests/gdi32/StretchBlt.c b/modules/rostests/apitests/gdi32/StretchBlt.c index 5db1713beb6..66c7c57ba28 100644 --- a/modules/rostests/apitests/gdi32/StretchBlt.c +++ b/modules/rostests/apitests/gdi32/StretchBlt.c @@ -45,7 +45,7 @@ * * But there are three "special" cases where no flip is done (there is a copy/scale only) and the "-1" is not used. * These are as follows: - * 1) + * 1) * StretchBlt(DestDC, DestX + DestWidth, DestY, -DestWidth, DestHeight, // Both Widths negative * SourceDC, SourceX + SourceWidth, SourceY, -SourceWidth, SourceHeight, SRCCOPY); // Case0101 (5) * 2) @@ -466,7 +466,7 @@ static void test_StretchBlt(void) expected[3] = 0x000000FF; check_StretchBlt_stretch(hdcDst, hdcSrc, &biDst, dstBuffer, srcBuffer, - 1, 1, -2, -2, 0, 0, 2, 2, expected, __LINE__); // Case 0011 (3) - Both Flip. + 1, 1, -2, -2, 0, 0, 2, 2, expected, __LINE__); // Case 0011 (3) - Both Flip. expected[0] = 0x0000FF00; expected[1] = 0x000000FF; @@ -474,7 +474,7 @@ static void test_StretchBlt(void) expected[3] = 0x00FF0000; check_StretchBlt_stretch(hdcDst, hdcSrc, &biDst, dstBuffer, srcBuffer, - 1, 1, -2, -2, 0, 1, 2, -2, expected, __LINE__); // Case 0010 (2) - Horizontal Flip. + 1, 1, -2, -2, 0, 1, 2, -2, expected, __LINE__); // Case 0010 (2) - Horizontal Flip. expected[0] = 0x00FF0000; expected[1] = 0xFF000000; @@ -482,7 +482,7 @@ static void test_StretchBlt(void) expected[3] = 0x0000FF00; check_StretchBlt_stretch(hdcDst, hdcSrc, &biDst, dstBuffer, srcBuffer, - 1, 1, -2, -2, 1, 0, -2, 2, expected, __LINE__); // Case 0001 (1) - Vertical Flip. + 1, 1, -2, -2, 1, 0, -2, 2, expected, __LINE__); // Case 0001 (1) - Vertical Flip. expected[0] = 0x000000FF; expected[1] = 0x0000FF00; @@ -800,7 +800,7 @@ static void test_StretchBlt_TopDownOptions(BOOL SrcTopDown, BOOL DstTopDown) } test_StretchBlt_stretch(hdcDst, hdcSrc, &biDst, dstBuffer, srcBuffer, - 1, 1, -2, -2, 0, 1, 2, -2, expected, __LINE__, SrcTopDown, DstTopDown); // Case 0010 (2) - Horizontal Flip. + 1, 1, -2, -2, 0, 1, 2, -2, expected, __LINE__, SrcTopDown, DstTopDown); // Case 0010 (2) - Horizontal Flip. if ((SrcTopDown || DstTopDown) && !(SrcTopDown && DstTopDown)) { @@ -818,7 +818,7 @@ static void test_StretchBlt_TopDownOptions(BOOL SrcTopDown, BOOL DstTopDown) } test_StretchBlt_stretch(hdcDst, hdcSrc, &biDst, dstBuffer, srcBuffer, - 1, 1, -2, -2, 1, 0, -2, 2, expected, __LINE__, SrcTopDown, DstTopDown); // Case 0001 (1) - Vertical Flip. + 1, 1, -2, -2, 1, 0, -2, 2, expected, __LINE__, SrcTopDown, DstTopDown); // Case 0001 (1) - Vertical Flip. if ((SrcTopDown || DstTopDown) && !(SrcTopDown && DstTopDown)) { diff --git a/modules/rostests/apitests/include/msgtrace.c b/modules/rostests/apitests/include/msgtrace.c index 06377d471d9..289fc57710e 100644 --- a/modules/rostests/apitests/include/msgtrace.c +++ b/modules/rostests/apitests/include/msgtrace.c @@ -91,7 +91,7 @@ void sprintf_msg_entry(char* buffer, MSG_ENTRY* msg) { sprintf(buffer, "nothing"); } - else + else { char* msgName; char* msgType; @@ -121,9 +121,9 @@ void sprintf_msg_entry(char* buffer, MSG_ENTRY* msg) } if(msgName) - sprintf(buffer, "hwnd%d %s %s %d %d", msg->iwnd, msgType, msgName, msg->param1, msg->param2); + sprintf(buffer, "hwnd%d %s %s %d %d", msg->iwnd, msgType, msgName, msg->param1, msg->param2); else - sprintf(buffer, "hwnd%d %s %d %d %d", msg->iwnd, msgType, msg->msg, msg->param1, msg->param2); + sprintf(buffer, "hwnd%d %s %d %d %d", msg->iwnd, msgType, msg->msg, msg->param1, msg->param2); } } @@ -185,9 +185,9 @@ void record_message(MSG_CACHE* cache, int iwnd, UINT message, MSG_TYPE type, int /* do not report a post message a second time */ if(type == SENT && - cache->last_post_message.iwnd == iwnd && - cache->last_post_message.msg == message && - cache->last_post_message.param1 == param1 && + cache->last_post_message.iwnd == iwnd && + cache->last_post_message.msg == message && + cache->last_post_message.param1 == param1 && cache->last_post_message.param2 == param2) { memset(&cache->last_post_message, 0, sizeof(MSG_ENTRY)); diff --git a/modules/rostests/apitests/iphlpapi/icmp.c b/modules/rostests/apitests/iphlpapi/icmp.c index c635c225b3b..81df6e8e8dd 100644 --- a/modules/rostests/apitests/iphlpapi/icmp.c +++ b/modules/rostests/apitests/iphlpapi/icmp.c @@ -106,7 +106,7 @@ test_IcmpSendEcho(void) ReplySize = sizeof(ICMP_ECHO_REPLY); SetLastError(0xDEADBEEF); - bRet = IcmpSendEcho(hIcmp, ipaddr, SendData, sizeof(SendData), + bRet = IcmpSendEcho(hIcmp, ipaddr, SendData, sizeof(SendData), NULL, ReplyBuffer, ReplySize, 5000); ok(!bRet, "IcmpSendEcho succeeded unexpectedly\n"); @@ -117,7 +117,7 @@ test_IcmpSendEcho(void) ReplySize = sizeof(ICMP_ECHO_REPLY) + sizeof(SendData); SetLastError(0xDEADBEEF); - bRet = IcmpSendEcho(hIcmp, ipaddr, SendData, sizeof(SendData), + bRet = IcmpSendEcho(hIcmp, ipaddr, SendData, sizeof(SendData), NULL, ReplyBuffer, ReplySize, 5000); ok(bRet, "IcmpSendEcho failed unexpectedly: %lu\n", GetLastError()); diff --git a/modules/rostests/apitests/kernel32/DefaultActCtx.c b/modules/rostests/apitests/kernel32/DefaultActCtx.c index ad19fc48ed3..5f9ca8e5bc9 100644 --- a/modules/rostests/apitests/kernel32/DefaultActCtx.c +++ b/modules/rostests/apitests/kernel32/DefaultActCtx.c @@ -29,13 +29,13 @@ START_TEST(DefaultActCtx) HANDLE h; DWORD i; ACTCTX_SECTION_KEYED_DATA KeyedData = { 0 }; - - res = QueryActCtxW(QUERY_ACTCTX_FLAG_USE_ACTIVE_ACTCTX, - NULL, - NULL, - ActivationContextDetailedInformation, - &buffer, - sizeof(buffer), + + res = QueryActCtxW(QUERY_ACTCTX_FLAG_USE_ACTIVE_ACTCTX, + NULL, + NULL, + ActivationContextDetailedInformation, + &buffer, + sizeof(buffer), NULL); ok(res == TRUE, "Expected success\n"); if(res) @@ -49,15 +49,15 @@ START_TEST(DefaultActCtx) { skip("ActivationContextDetailedInformation failed\n"); } - - + + i = 0; - res = QueryActCtxW(QUERY_ACTCTX_FLAG_USE_ACTIVE_ACTCTX, - NULL, - &i, - AssemblyDetailedInformationInActivationContext, - &buffer, - sizeof(buffer), + res = QueryActCtxW(QUERY_ACTCTX_FLAG_USE_ACTIVE_ACTCTX, + NULL, + &i, + AssemblyDetailedInformationInActivationContext, + &buffer, + sizeof(buffer), NULL); ok(res == TRUE, "Expected success\n"); if (res) @@ -73,12 +73,12 @@ START_TEST(DefaultActCtx) } i = 1; - res = QueryActCtxW(QUERY_ACTCTX_FLAG_USE_ACTIVE_ACTCTX, - NULL, - &i, - AssemblyDetailedInformationInActivationContext, - &buffer, - sizeof(buffer), + res = QueryActCtxW(QUERY_ACTCTX_FLAG_USE_ACTIVE_ACTCTX, + NULL, + &i, + AssemblyDetailedInformationInActivationContext, + &buffer, + sizeof(buffer), NULL); ok(res == TRUE, "Expected success\n"); /* This is FALSE in win10 */ if (res) @@ -112,7 +112,7 @@ START_TEST(DefaultActCtx) L"System Default Context", &KeyedData); ok(res == FALSE, "Expected failure\n"); - + KeyedData.cbSize = sizeof(KeyedData); res = FindActCtxSectionStringW(FIND_ACTCTX_SECTION_KEY_RETURN_HACTCTX, NULL, @@ -129,7 +129,7 @@ START_TEST(DefaultActCtx) { skip("ACTIVATION_CONTEXT_SECTION_ASSEMBLY_INFORMATION failed\n"); } - + } HANDLE _CreateActCtxFromFile(LPCWSTR FileName, int line); diff --git a/modules/rostests/apitests/kernel32/FindActCtxSectionStringW.c b/modules/rostests/apitests/kernel32/FindActCtxSectionStringW.c index de2a07545a7..75080535def 100644 --- a/modules/rostests/apitests/kernel32/FindActCtxSectionStringW.c +++ b/modules/rostests/apitests/kernel32/FindActCtxSectionStringW.c @@ -40,7 +40,7 @@ struct wndclass_redirect_data DWORD res; ULONG name_len; ULONG name_offset; /* versioned name offset */ - ULONG module_len; + ULONG module_len; ULONG module_offset; /* container name offset to the section base */ }; @@ -87,7 +87,7 @@ HANDLE _CreateActCtxFromFile(LPCWSTR FileName, int line) SetLastError(0xdeaddead); h = CreateActCtxW(&ActCtx); ok_(__FILE__, line)(h != INVALID_HANDLE_VALUE, "CreateActCtx failed for %S\n", FileName); - // In win10 last error is unchanged and in win2k3 it is ERROR_BAD_EXE_FORMAT + // In win10 last error is unchanged and in win2k3 it is ERROR_BAD_EXE_FORMAT ok_(__FILE__, line)(GetLastError() == ERROR_BAD_EXE_FORMAT || GetLastError() == 0xdeaddead, "Wrong last error %lu\n", GetLastError()); return h; @@ -131,14 +131,14 @@ void TestClassRedirection(HANDLE h, LPCWSTR ClassToTest, LPCWSTR ExpectedClassPa &KeyedData); ok(res == TRUE, "FindActCtxSectionString failed\n"); ok(GetLastError() == 0xdeaddead, "Wrong last error. Expected %lu, got %lu\n", (DWORD)(0xdeaddead), GetLastError()); - + ok(KeyedData.ulDataFormatVersion == 1, "Wrong format version: %lu\n", KeyedData.ulDataFormatVersion); ok(KeyedData.hActCtx == h, "Wrong handle\n"); ok(KeyedData.lpSectionBase != NULL, "Expected non null lpSectionBase\n"); ok(KeyedData.lpData != NULL, "Expected non null lpData\n"); header = (struct strsection_header*)KeyedData.lpSectionBase; classData = (struct wndclass_redirect_data*)KeyedData.lpData; - + if(res == FALSE || KeyedData.ulDataFormatVersion != 1 || header == NULL || classData == NULL) { skip("Can't read data for class. Skipping\n"); @@ -168,8 +168,8 @@ VOID TestLibDependency(HANDLE h) BOOL res; struct strsection_header *SectionHeader; struct dllredirect_data *redirData; - struct assemply_data *assemplyData; - + struct assemply_data *assemplyData; + SetLastError(0xdeaddead); KeyedData.cbSize = sizeof(KeyedData); res = FindActCtxSectionStringW(FIND_ACTCTX_SECTION_KEY_RETURN_HACTCTX, @@ -179,7 +179,7 @@ VOID TestLibDependency(HANDLE h) &KeyedData); ok(res == TRUE, "FindActCtxSectionString failed\n"); ok(GetLastError() == 0xdeaddead, "Wrong last error. Expected %lu, got %lu\n", (DWORD)(0xdeaddead), GetLastError()); - + ok(KeyedData.ulDataFormatVersion == 1, "Wrong format version: %lu", KeyedData.ulDataFormatVersion); ok(KeyedData.hActCtx == h, "Wrong handle\n"); ok(KeyedData.lpSectionBase != NULL, "Expected non null lpSectionBase\n"); @@ -195,10 +195,10 @@ VOID TestLibDependency(HANDLE h) { ok(SectionHeader->magic == STRSECTION_MAGIC, "%lu\n", SectionHeader->magic ); ok(SectionHeader->size == sizeof(*SectionHeader), "Got %lu instead of %d\n", SectionHeader->size, sizeof(*SectionHeader)); - ok(SectionHeader->count == 2, "%lu\n", SectionHeader->count ); /* 2 dlls? */ + ok(SectionHeader->count == 2, "%lu\n", SectionHeader->count ); /* 2 dlls? */ ok(redirData->size == sizeof(*redirData), "Got %lu instead of %d\n", redirData->size, sizeof(*redirData)); } - + SetLastError(0xdeaddead); KeyedData.cbSize = sizeof(KeyedData); res = FindActCtxSectionStringW(FIND_ACTCTX_SECTION_KEY_RETURN_HACTCTX, @@ -225,13 +225,13 @@ VOID TestLibDependency(HANDLE h) int data_lenght; DWORD buffer[256]; PACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION details = (PACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION)buffer; - + ok(SectionHeader->magic == STRSECTION_MAGIC, "%lu\n", SectionHeader->magic ); ok(SectionHeader->size == sizeof(*SectionHeader), "Got %lu instead of %d\n", SectionHeader->size, sizeof(*SectionHeader)); - ok(SectionHeader->count == 2, "%lu\n", SectionHeader->count ); /* 2 dlls? */ + ok(SectionHeader->count == 2, "%lu\n", SectionHeader->count ); /* 2 dlls? */ - data_lenght = assemplyData->size + - assemplyData->ulEncodedAssemblyIdentityLength + + data_lenght = assemplyData->size + + assemplyData->ulEncodedAssemblyIdentityLength + assemplyData->ulManifestPathLength + assemplyData->ulAssemblyDirectoryNameLength + 2 * sizeof(WCHAR); ok(assemplyData->size == sizeof(*assemplyData), "Got %lu instead of %d\n", assemplyData->size, sizeof(*assemplyData)); @@ -240,10 +240,10 @@ VOID TestLibDependency(HANDLE h) AssemblyIdentity = (WCHAR*)((BYTE*)SectionHeader + assemplyData->ulEncodedAssemblyIdentityOffset); ManifestPath = (WCHAR*)((BYTE*)SectionHeader + assemplyData->ulManifestPathOffset); AssemblyDirectory = (WCHAR*)((BYTE*)SectionHeader + assemplyData->ulAssemblyDirectoryNameOffset); - + /* Use AssemblyDetailedInformationInActivationContext so as to infer the contents of assemplyData */ - res = QueryActCtxW(0, h, &KeyedData.ulAssemblyRosterIndex, - AssemblyDetailedInformationInActivationContext, + res = QueryActCtxW(0, h, &KeyedData.ulAssemblyRosterIndex, + AssemblyDetailedInformationInActivationContext, &buffer, sizeof(buffer), NULL); ok(res == TRUE, "QueryActCtxW failed\n"); ok(assemplyData->ulFlags == details->ulFlags, "\n"); @@ -258,7 +258,7 @@ VOID TestLibDependency(HANDLE h) /* It looks like that AssemblyIdentity isn't null terminated */ ok(memcmp(AssemblyIdentity, details->lpAssemblyEncodedAssemblyIdentity, assemplyData->ulEncodedAssemblyIdentityLength) == 0, "Got wrong AssemblyIdentity\n"); - } + } } START_TEST(FindActCtxSectionStringW) @@ -271,7 +271,7 @@ START_TEST(FindActCtxSectionStringW) /* Something activates an activation context that mentions comctl32 but comctl32 is not loaded */ ok( GetModuleHandleW(L"comctl32.dll") == NULL, "Expected comctl32 not to be loaded\n"); ok( GetModuleHandleW(L"user32.dll") == NULL, "Expected user32 not to be loaded\n"); - + /* Class redirection tests */ h = _CreateActCtxFromFile(L"classtest.manifest", __LINE__); if (h != INVALID_HANDLE_VALUE) @@ -287,7 +287,7 @@ START_TEST(FindActCtxSectionStringW) { skip("Failed to create context for classtest.manifest\n"); } - + /* Class redirection tests with multiple contexts in the activation stack */ h2 = _CreateActCtxFromFile(L"classtest2.manifest", __LINE__); if (h != INVALID_HANDLE_VALUE && h2 != INVALID_HANDLE_VALUE) @@ -316,8 +316,8 @@ START_TEST(FindActCtxSectionStringW) else { skip("Failed to create context for deptest.manifest\n"); - } - + } + /* Activate a context that depends on comctl32 v6 and run class tests again */ h = _CreateActCtxFromFile(L"comctl32dep.manifest", __LINE__); if (h != INVALID_HANDLE_VALUE) diff --git a/modules/rostests/apitests/kernel32/GetDriveType.c b/modules/rostests/apitests/kernel32/GetDriveType.c index b6db1d92969..784cd755e16 100644 --- a/modules/rostests/apitests/kernel32/GetDriveType.c +++ b/modules/rostests/apitests/kernel32/GetDriveType.c @@ -41,7 +41,7 @@ START_TEST(GetDriveType) Type2 = GetDriveTypeW(Path); ok(Type2 == DRIVE_NO_ROOT_DIR, "Expected DRIVE_NO_ROOT_DIR, got %u\n", Type2); ok(GetLastError() == 0xdeadbeaf, "Expected no errors, got %lu\n", GetLastError()); - + StringCchCopyW(Path + i, MAX_PATH - i, L"\\"); } Type2 = GetDriveTypeW(Path); diff --git a/modules/rostests/apitests/kernel32/TunnelCache.c b/modules/rostests/apitests/kernel32/TunnelCache.c index 8081da4a496..7e91a511388 100644 --- a/modules/rostests/apitests/kernel32/TunnelCache.c +++ b/modules/rostests/apitests/kernel32/TunnelCache.c @@ -39,7 +39,7 @@ Test_VeryLongTests(void) win_skip("No test directory available\n"); return; } - + break; } } @@ -129,7 +129,7 @@ Test_LongTests(void) win_skip("No test directory available\n"); return; } - + break; } } @@ -217,7 +217,7 @@ Test_ShortTests(void) win_skip("No test directory available\n"); return; } - + break; } } diff --git a/modules/rostests/apitests/kernel32/WideCharToMultiByte.c b/modules/rostests/apitests/kernel32/WideCharToMultiByte.c index db3384e7c71..a6ee34123d3 100644 --- a/modules/rostests/apitests/kernel32/WideCharToMultiByte.c +++ b/modules/rostests/apitests/kernel32/WideCharToMultiByte.c @@ -56,7 +56,7 @@ Utf8Convert_( { ok_(File, Line)(Buffer[i] == ExpectedUtf8[i], "Convert with null: Buffer[%lu] = 0x%x, expected 0x%x\n", i, (unsigned char)Buffer[i], (unsigned char)ExpectedUtf8[i]); } - + /* Get length, reject invalid */ SetLastError(0xfeedf00d); Ret = WideCharToMultiByte(CP_UTF8, WC_ERR_INVALID_CHARS, WideString, WideLen + 1, NULL, 0, NULL, NULL); @@ -75,7 +75,7 @@ Utf8Convert_( { ok_(File, Line)(Ret == Utf8Len + 1, "Length check, reject invalid: Ret = %d\n", Ret); } - + /* Convert, reject invalid */ FillMemory(Buffer, sizeof(Buffer), 0x55); SetLastError(0xfeedf00d); diff --git a/modules/rostests/apitests/kernel32/deptest.manifest b/modules/rostests/apitests/kernel32/deptest.manifest index 7c25e19e88f..567134f96ab 100644 --- a/modules/rostests/apitests/kernel32/deptest.manifest +++ b/modules/rostests/apitests/kernel32/deptest.manifest @@ -6,10 +6,10 @@ - + diff --git a/modules/rostests/apitests/kernel32/lstrcpynW.c b/modules/rostests/apitests/kernel32/lstrcpynW.c index e855e314cd9..16d9cd9b6fd 100644 --- a/modules/rostests/apitests/kernel32/lstrcpynW.c +++ b/modules/rostests/apitests/kernel32/lstrcpynW.c @@ -9,16 +9,16 @@ START_TEST(lstrcpynW) { WCHAR buffer[256]; - + /* Test basic functionality */ ok(lstrcpynW(buffer, L"Copy this string", 256) == buffer, "lstrncpyW failed!\n"); ok(!lstrcmpW(buffer, L"Copy this string"), "Copy went wrong.\n"); - + /* Test for buffer too small */ ok(lstrcpynW(buffer, L"Copy this string", 10) == buffer, "lstrncpyW failed!\n"); ok(buffer[9] == 0, "lstrncpyW should have NULL-terminated the string"); ok(!lstrcmpW(buffer, L"Copy this"), "Copy went wrong.\n"); - + /* Test some invalid buffer */ ok(lstrcpynW((LPWSTR)(LONG_PTR)0xbaadf00d, L"Copy this string", 256) == NULL, "lstrncpyW should have returned NULL.\n"); } diff --git a/modules/rostests/apitests/kernel32/redirptest/redir2dep.manifest b/modules/rostests/apitests/kernel32/redirptest/redir2dep.manifest index b9e9ce18f63..fcc136f2f05 100644 --- a/modules/rostests/apitests/kernel32/redirptest/redir2dep.manifest +++ b/modules/rostests/apitests/kernel32/redirptest/redir2dep.manifest @@ -5,9 +5,9 @@ - + diff --git a/modules/rostests/apitests/localspl/tests.c b/modules/rostests/apitests/localspl/tests.c index 9d36edbb4ed..f28c74f2573 100644 --- a/modules/rostests/apitests/localspl/tests.c +++ b/modules/rostests/apitests/localspl/tests.c @@ -9,7 +9,7 @@ * The original localspl.dll from Windows Server 2003 is not easily testable. * It relies on a proper initialization inside spoolsv.exe, so we can't just load it in an API-Test as usual. * See https://www.reactos.org/pipermail/ros-dev/2015-June/017395.html for more information. - * + * * To make testing possible anyway, this program basically does four things: * - Injecting our testing code into spoolsv.exe. * - Registering and running us as a service in the SYSTEM security context like spoolsv.exe, so that injection is possible at all. diff --git a/modules/rostests/apitests/ntdll/NtFreeVirtualMemory.c b/modules/rostests/apitests/ntdll/NtFreeVirtualMemory.c index 07aa1192187..37fa2480580 100644 --- a/modules/rostests/apitests/ntdll/NtFreeVirtualMemory.c +++ b/modules/rostests/apitests/ntdll/NtFreeVirtualMemory.c @@ -13,7 +13,7 @@ static void Test_NtFreeVirtualMemory(void) PVOID Buffer = NULL, Buffer2; SIZE_T Length = PAGE_SIZE; NTSTATUS Status; - + Status = NtAllocateVirtualMemory(NtCurrentProcess(), &Buffer, 0, @@ -22,14 +22,14 @@ static void Test_NtFreeVirtualMemory(void) PAGE_READWRITE); ok(NT_SUCCESS(Status), "NtAllocateVirtualMemory failed : 0x%08lx\n", Status); ok(Length == PAGE_SIZE, "Length mismatch : 0x%08lx\n", (ULONG)Length); - ok(((ULONG_PTR)Buffer % PAGE_SIZE) == 0, "The buffer is not aligned to PAGE_SIZE.\n"); - + ok(((ULONG_PTR)Buffer % PAGE_SIZE) == 0, "The buffer is not aligned to PAGE_SIZE.\n"); + Status = NtFreeVirtualMemory(NtCurrentProcess(), &Buffer, &Length, MEM_DECOMMIT); ok(Status == STATUS_SUCCESS, "NtFreeVirtualMemory failed : 0x%08lx\n", Status); - + /* Now try to free more than we got */ Length++; Status = NtFreeVirtualMemory(NtCurrentProcess(), @@ -37,23 +37,23 @@ static void Test_NtFreeVirtualMemory(void) &Length, MEM_DECOMMIT); ok(Status == STATUS_UNABLE_TO_FREE_VM, "NtFreeVirtualMemory returned status : 0x%08lx\n", Status); - + Status = NtFreeVirtualMemory(NtCurrentProcess(), &Buffer, &Length, MEM_RELEASE); ok(Status == STATUS_UNABLE_TO_FREE_VM, "NtFreeVirtualMemory returned status : 0x%08lx\n", Status); - + /* Free out of bounds from the wrong origin */ Length = PAGE_SIZE; Buffer2 = (PVOID)((ULONG_PTR)Buffer+1); - + Status = NtFreeVirtualMemory(NtCurrentProcess(), &Buffer2, &Length, MEM_DECOMMIT); ok(Status == STATUS_UNABLE_TO_FREE_VM, "NtFreeVirtualMemory returned status : 0x%08lx\n", Status); - + Buffer2 = (PVOID)((ULONG_PTR)Buffer+1); Length = PAGE_SIZE; Status = NtFreeVirtualMemory(NtCurrentProcess(), @@ -61,11 +61,11 @@ static void Test_NtFreeVirtualMemory(void) &Length, MEM_RELEASE); ok(Status == STATUS_UNABLE_TO_FREE_VM, "NtFreeVirtualMemory returned status : 0x%08lx\n", Status); - + /* Same but in bounds */ Length = PAGE_SIZE - 1; Buffer2 = (PVOID)((ULONG_PTR)Buffer+1); - + Status = NtFreeVirtualMemory(NtCurrentProcess(), &Buffer2, &Length, @@ -73,7 +73,7 @@ static void Test_NtFreeVirtualMemory(void) ok(Status == STATUS_SUCCESS, "NtFreeVirtualMemory returned status : 0x%08lx\n", Status); ok(Buffer2 == Buffer, "NtFreeVirtualMemory set wrong buffer.\n"); ok(Length == PAGE_SIZE, "NtFreeVirtualMemory did not round Length to PAGE_SIZE.\n"); - + Buffer2 = (PVOID)((ULONG_PTR)Buffer+1); Length = PAGE_SIZE-1; Status = NtFreeVirtualMemory(NtCurrentProcess(), @@ -83,7 +83,7 @@ static void Test_NtFreeVirtualMemory(void) ok(Status == STATUS_SUCCESS, "NtFreeVirtualMemory returned status : 0x%08lx\n", Status); ok(Buffer2 == Buffer, "NtFreeVirtualMemory set wrong buffer.\n"); ok(Length == PAGE_SIZE, "NtFreeVirtualMemory did not round Length to PAGE_SIZE.\n"); - + /* Now allocate two pages and try to free them one after the other */ Length = 2*PAGE_SIZE; Status = NtAllocateVirtualMemory(NtCurrentProcess(), @@ -95,7 +95,7 @@ static void Test_NtFreeVirtualMemory(void) ok(NT_SUCCESS(Status), "NtAllocateVirtualMemory failed : 0x%08lx\n", Status); ok(Length == 2*PAGE_SIZE, "Length mismatch : 0x%08lx\n", (ULONG)Length); ok(((ULONG_PTR)Buffer % PAGE_SIZE) == 0, "The buffer is not aligned to PAGE_SIZE.\n"); - + Buffer2 = Buffer; Length = PAGE_SIZE; Status = NtFreeVirtualMemory(NtCurrentProcess(), @@ -115,7 +115,7 @@ static void Test_NtFreeVirtualMemory(void) ok(NT_SUCCESS(Status), "NtFreeVirtualMemory failed : 0x%08lx\n", Status); ok(Length == PAGE_SIZE, "Length mismatch : 0x%08lx\n", (ULONG)Length); ok(Buffer2 == (PVOID)((ULONG_PTR)Buffer+PAGE_SIZE), "The buffer is not aligned to PAGE_SIZE.\n"); - + /* Same, but try to free the second page before the first one */ Length = 2*PAGE_SIZE; Status = NtAllocateVirtualMemory(NtCurrentProcess(), @@ -127,7 +127,7 @@ static void Test_NtFreeVirtualMemory(void) ok(NT_SUCCESS(Status), "NtAllocateVirtualMemory failed : 0x%08lx\n", Status); ok(Length == 2*PAGE_SIZE, "Length mismatch : 0x%08lx\n", (ULONG)Length); ok(((ULONG_PTR)Buffer % PAGE_SIZE) == 0, "The buffer is not aligned to PAGE_SIZE.\n"); - + Buffer2 = (PVOID)((ULONG_PTR)Buffer+PAGE_SIZE); Length = PAGE_SIZE; Status = NtFreeVirtualMemory(NtCurrentProcess(), @@ -137,7 +137,7 @@ static void Test_NtFreeVirtualMemory(void) ok(NT_SUCCESS(Status), "NtFreeVirtualMemory failed : 0x%08lx\n", Status); ok(Length == PAGE_SIZE, "Length mismatch : 0x%08lx\n", (ULONG)Length); ok(Buffer2 == (PVOID)((ULONG_PTR)Buffer+PAGE_SIZE), "The buffer is not aligned to PAGE_SIZE.\n"); - + Buffer2 = Buffer; Length = PAGE_SIZE; Status = NtFreeVirtualMemory(NtCurrentProcess(), @@ -147,7 +147,7 @@ static void Test_NtFreeVirtualMemory(void) ok(NT_SUCCESS(Status), "NtFreeVirtualMemory failed : 0x%08lx\n", Status); ok(Length == PAGE_SIZE, "Length mismatch : 0x%08lx\n", (ULONG)Length); ok(Buffer2 == Buffer, "The buffer is not aligned to PAGE_SIZE.\n"); - + /* Now allocate two pages and try to free them in the middle */ Length = 2*PAGE_SIZE; Status = NtAllocateVirtualMemory(NtCurrentProcess(), @@ -159,7 +159,7 @@ static void Test_NtFreeVirtualMemory(void) ok(NT_SUCCESS(Status), "NtAllocateVirtualMemory failed : 0x%08lx\n", Status); ok(Length == 2*PAGE_SIZE, "Length mismatch : 0x%08lx\n", (ULONG)Length); ok(((ULONG_PTR)Buffer % PAGE_SIZE) == 0, "The buffer is not aligned to PAGE_SIZE.\n"); - + Buffer2 = (PVOID)((ULONG_PTR)Buffer+1); Length = PAGE_SIZE; Status = NtFreeVirtualMemory(NtCurrentProcess(), diff --git a/modules/rostests/apitests/ntdll/NtLoadUnloadKey.c b/modules/rostests/apitests/ntdll/NtLoadUnloadKey.c index eb5a8c462e2..add7423af58 100644 --- a/modules/rostests/apitests/ntdll/NtLoadUnloadKey.c +++ b/modules/rostests/apitests/ntdll/NtLoadUnloadKey.c @@ -506,7 +506,7 @@ START_TEST(NtLoadUnloadKey) Disposition == REG_CREATED_NEW_KEY ? "create" : /* REG_OPENED_EXISTING_KEY */ "open", Status); } - + /* The key handle must be valid here */ Status = NtFlushKey(KeyHandle); ok_ntstatus(Status, STATUS_SUCCESS); diff --git a/modules/rostests/apitests/ntdll/NtOpenThreadToken.c b/modules/rostests/apitests/ntdll/NtOpenThreadToken.c index 66769e37221..b916d308073 100644 --- a/modules/rostests/apitests/ntdll/NtOpenThreadToken.c +++ b/modules/rostests/apitests/ntdll/NtOpenThreadToken.c @@ -56,7 +56,7 @@ START_TEST(NtOpenThreadToken) } } } - + TokenHandle = NULL; Status = NtSetInformationThread(NtCurrentThread(), ThreadImpersonationToken, diff --git a/modules/rostests/apitests/ntdll/NtQuerySystemInformation.c b/modules/rostests/apitests/ntdll/NtQuerySystemInformation.c index 0ecd91d6682..28a790c7639 100644 --- a/modules/rostests/apitests/ntdll/NtQuerySystemInformation.c +++ b/modules/rostests/apitests/ntdll/NtQuerySystemInformation.c @@ -13,7 +13,7 @@ START_TEST(NtQuerySystemInformation) Status = NtQuerySystemInformation(0, NULL, 0, NULL); ok_hex(Status, STATUS_INFO_LENGTH_MISMATCH); - + Status = NtQuerySystemInformation(0x80000000, NULL, 0, NULL); ok_hex(Status, STATUS_INVALID_INFO_CLASS); } diff --git a/modules/rostests/apitests/ntdll/RtlCopyMappedMemory.c b/modules/rostests/apitests/ntdll/RtlCopyMappedMemory.c index b7150dfc5c5..7d7891e31a6 100644 --- a/modules/rostests/apitests/ntdll/RtlCopyMappedMemory.c +++ b/modules/rostests/apitests/ntdll/RtlCopyMappedMemory.c @@ -31,7 +31,7 @@ START_TEST(RtlCopyMappedMemory) Status = pRtlCopyMappedMemory(NULL, NULL, 0); EndSeh(STATUS_SUCCESS); ok(Status == STATUS_SUCCESS, "RtlCopyMappedMemory returned %lx\n", Status); - + RtlFillMemory(Buffer1, sizeof(Buffer1), 0x11); RtlFillMemory(Buffer2, sizeof(Buffer2), 0x22); StartSeh() diff --git a/modules/rostests/apitests/ntdll/RtlQueryTimeZoneInfo.c b/modules/rostests/apitests/ntdll/RtlQueryTimeZoneInfo.c index fcbad38f5c8..ed965e602c9 100644 --- a/modules/rostests/apitests/ntdll/RtlQueryTimeZoneInfo.c +++ b/modules/rostests/apitests/ntdll/RtlQueryTimeZoneInfo.c @@ -58,7 +58,7 @@ static void test_RtlQueryTimeZoneInformation(void) dwRet = GetTimeZoneInformation(&tziOld); ok(dwRet == TIME_ZONE_ID_STANDARD || dwRet == TIME_ZONE_ID_UNKNOWN || dwRet == TIME_ZONE_ID_DAYLIGHT, - "Get Time Zone Name failed with error = %ld.\n", GetLastError()); + "Get Time Zone Name failed with error = %ld.\n", GetLastError()); // Adjust the time zone information @@ -82,7 +82,7 @@ static void test_RtlQueryTimeZoneInformation(void) SetLastError(0xDEADBEEF); - ok(SetTimeZoneInformation(&tziNew) , + ok(SetTimeZoneInformation(&tziNew) , "Set Time Zone Information failed with error = %ld.\n", GetLastError()); // if we got an error the function failed, so there is not much else we can do @@ -98,7 +98,7 @@ static void test_RtlQueryTimeZoneInformation(void) dwRet = GetTimeZoneInformation(&tziTest); ok(dwRet == TIME_ZONE_ID_STANDARD || dwRet == TIME_ZONE_ID_UNKNOWN || dwRet == TIME_ZONE_ID_DAYLIGHT, - "Get Time Zone Information Returned failed with error = %ld.\n", GetLastError()); + "Get Time Zone Information Returned failed with error = %ld.\n", GetLastError()); ok(!wcscmp(tziTest.StandardName, tziNew.StandardName), "Standard Time Zone Name = %ls, expected %ls.\n", tziTest.StandardName, tziNew.StandardName); diff --git a/modules/rostests/apitests/ntdll/probelib.c b/modules/rostests/apitests/ntdll/probelib.c index e59b1f5284f..7755d53fb4e 100644 --- a/modules/rostests/apitests/ntdll/probelib.c +++ b/modules/rostests/apitests/ntdll/probelib.c @@ -1,7 +1,7 @@ /* * PROJECT: ReactOS API Tests * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later) - * PURPOSE: Small library with probing utilities for thread/process classes information + * PURPOSE: Small library with probing utilities for thread/process classes information * COPYRIGHT: Copyright 2020 George BiÈ™oc */ diff --git a/modules/rostests/apitests/ole32/initializespy.cpp b/modules/rostests/apitests/ole32/initializespy.cpp index 19d68a436dd..b8c86a35cd6 100644 --- a/modules/rostests/apitests/ole32/initializespy.cpp +++ b/modules/rostests/apitests/ole32/initializespy.cpp @@ -279,7 +279,7 @@ void test_IInitializeSpy_fail() test_HRES(hr, E_INVALIDARG, "Unexpected hr while unregistering invalid interface"); test_ref(&spy, 0); - /* we should not crash here, just return E_NOINTERFACE + /* we should not crash here, just return E_NOINTERFACE do note the Cookie is not even being touched at all, compared to calling this with an interface that does not respond to IID_IInitializeSpy */ spy.Cookie.HighPart = spy.Cookie.LowPart = INVALID_VALUE; diff --git a/modules/rostests/apitests/ole32/testlist.c b/modules/rostests/apitests/ole32/testlist.c index f8b91c1fd64..8194249b70c 100644 --- a/modules/rostests/apitests/ole32/testlist.c +++ b/modules/rostests/apitests/ole32/testlist.c @@ -8,6 +8,6 @@ extern void func_initializespy(void); const struct test winetest_testlist[] = { { "initializespy", func_initializespy }, - + { 0, 0 } }; diff --git a/modules/rostests/apitests/opengl32/sw_pixelformat.c b/modules/rostests/apitests/opengl32/sw_pixelformat.c index ffb3d4d1a23..44b9f2fd7c1 100644 --- a/modules/rostests/apitests/opengl32/sw_pixelformat.c +++ b/modules/rostests/apitests/opengl32/sw_pixelformat.c @@ -17,12 +17,12 @@ static char* str_dbg_pfd_flags(DWORD flags) static char buffer[1000]; static char *p = buffer; char* ret; - + BOOL first = TRUE; if (p > &buffer[800]) p = buffer; - + *p = 0; #define FLAGS_TO_STR(__x__) \ @@ -58,9 +58,9 @@ static char* str_dbg_pfd_flags(DWORD flags) sprintf(tmp, " | 0x%08x", (UINT)flags); strcat(p, tmp); } - + ret = p; - + p += strlen(p) + 1; return ret; @@ -140,10 +140,10 @@ static void test_format(HDC hdc, int num_pf, int pf, const struct test_color *co if (is_window) { DWORD flags = PFD_DRAW_TO_WINDOW | PFD_SUPPORT_OPENGL | PFD_GENERIC_FORMAT; - + if ((pfd.cColorBits <= 8) && (pfd.iPixelType == PFD_TYPE_RGBA)) flags |= PFD_NEED_PALETTE; - + if (is_double_buffered) { flags |= PFD_DOUBLEBUFFER | PFD_SWAP_COPY; @@ -224,7 +224,7 @@ static void test_screen_colors(const struct test_color **colors) } ok(pf < num_pf, "No generic pixel format!\n"); - + /* First the formats compatible with the DC */ for (i = 0; i < 3; i++) { @@ -240,7 +240,7 @@ static void test_screen_colors(const struct test_color **colors) test_format(hdc, num_pf, pf++, &colors[0][i], test_depths[j], TRUE, TRUE); } } - + colors++; /* Then the rest */ diff --git a/modules/rostests/apitests/opengl32/testlist.c b/modules/rostests/apitests/opengl32/testlist.c index 21105035fea..c0f02a7e728 100644 --- a/modules/rostests/apitests/opengl32/testlist.c +++ b/modules/rostests/apitests/opengl32/testlist.c @@ -10,6 +10,6 @@ const struct test winetest_testlist[] = { { "sw_extensions", func_sw_extensions }, { "sw_pixelformat", func_sw_pixelformat }, - + { 0, 0 } }; diff --git a/modules/rostests/apitests/shell32/CFSFolder.cpp b/modules/rostests/apitests/shell32/CFSFolder.cpp index ec4737f9830..7aefe72c050 100644 --- a/modules/rostests/apitests/shell32/CFSFolder.cpp +++ b/modules/rostests/apitests/shell32/CFSFolder.cpp @@ -67,10 +67,10 @@ VOID TestUninitialized() hr = psf->GetDisplayNameOf(NULL,SHGDN_FORPARSING|SHGDN_INFOLDER,&strretName); ok(hr == E_INVALIDARG, "hr = %lx\n", hr); - - - - + + + + /* Use Initialize method with a dummy pidl and test the still non initialized CFSFolder */ CComPtr ppf2; hr = psf->QueryInterface(IID_PPV_ARG(IPersistFolder2, &ppf2)); @@ -80,7 +80,7 @@ VOID TestUninitialized() hr = ppf2->Initialize(testpidl); ok(hr == S_OK, "hr = %lx\n", hr); - + CComHeapPtr pidl; hr = ppf2->GetCurFolder(&pidl); ok(hr == S_OK, "hr = %lx\n", hr); @@ -91,7 +91,7 @@ VOID TestUninitialized() ok(hr == (IsWindows7OrGreater() ? E_INVALIDARG : E_FAIL), "hr = %lx\n", hr); hr = psf->EnumObjects(NULL, 0, &penum); ok(hr == (IsWindows7OrGreater() ? E_INVALIDARG : HRESULT_FROM_WIN32(ERROR_CANCELLED)), "hr = %lx\n", hr); - + /* The following continue to work though */ hr = psf->CreateViewObject(NULL, IID_PPV_ARG(IDropTarget, &pdt)); ok(hr == S_OK, "hr = %lx\n", hr); @@ -160,7 +160,7 @@ VOID TestInitialize() hr = psf->GetDisplayNameOf(NULL,SHGDN_FORPARSING,&strretName); ok(hr == S_OK, "hr = %lx\n", hr); ok(strretName.uType == STRRET_WSTR, "strretName.uType == %x\n", strretName.uType); - ok(wcscmp(strretName.pOleStr, L"C:\\") == 0, "wrong name, got: %S\n", strretName.pOleStr); + ok(wcscmp(strretName.pOleStr, L"C:\\") == 0, "wrong name, got: %S\n", strretName.pOleStr); } VOID TestGetUIObjectOf() @@ -179,7 +179,7 @@ VOID TestGetUIObjectOf() } START_TEST(CFSFolder) -{ +{ CoInitializeEx(NULL, COINIT_APARTMENTTHREADED); TestUninitialized(); diff --git a/modules/rostests/apitests/shell32/CShellDesktop.cpp b/modules/rostests/apitests/shell32/CShellDesktop.cpp index 329ee8f8f2d..09e18d2b519 100644 --- a/modules/rostests/apitests/shell32/CShellDesktop.cpp +++ b/modules/rostests/apitests/shell32/CShellDesktop.cpp @@ -198,7 +198,7 @@ VOID TestInitialize(_In_ IShellFolder *psf) ok(hr == E_INVALIDARG, "hr = %lx\n", hr); //crashes in xp, works on win10 - //hr = ppf2->Initialize(NULL); + //hr = ppf2->Initialize(NULL); //ok(hr == S_OK, "hr = %lx\n", hr); //hr = ppf2->Initialize((LPCITEMIDLIST)0xdeaddead); //ok(hr == S_OK, "hr = %lx\n", hr); diff --git a/modules/rostests/apitests/shell32/CShellLink.cpp b/modules/rostests/apitests/shell32/CShellLink.cpp index 67e72405091..43a8d645449 100644 --- a/modules/rostests/apitests/shell32/CShellLink.cpp +++ b/modules/rostests/apitests/shell32/CShellLink.cpp @@ -296,7 +296,7 @@ test_iconlocation(UINT i, TEST_SHELL_ICON* testDef) ok(iIcon == 0, "IShellLink::GetIconLocation(%d) returned %d, expected %d\n", i, iIcon, 0); /* Try to grab the IExtractIconW interface */ - hr = psl->QueryInterface(IID_PPV_ARG(IExtractIconW, &pei)); + hr = psl->QueryInterface(IID_PPV_ARG(IExtractIconW, &pei)); ok(hr == S_OK, "IShellLink::QueryInterface(IExtractIconW)(%d) failed, hr = 0x%lx\n", i, hr); if (!pei) { diff --git a/modules/rostests/apitests/shell32/CUserNotification.cpp b/modules/rostests/apitests/shell32/CUserNotification.cpp index f9207d83f30..3ffc2aad371 100644 --- a/modules/rostests/apitests/shell32/CUserNotification.cpp +++ b/modules/rostests/apitests/shell32/CUserNotification.cpp @@ -86,7 +86,7 @@ TestNotification(void) skip("Could not instantiate IUserNotification\n"); return; } - + /* Set an invalid icon for the notification icon */ hr = pUserNotif->SetIconInfo((HICON)UlongToHandle(0xdeadbeef), L"Tooltip text"); ok_hr(hr, S_OK); diff --git a/modules/rostests/apitests/shell32/Control_RunDLLW.cpp b/modules/rostests/apitests/shell32/Control_RunDLLW.cpp index d68d48fa5b2..59bcbd24d99 100644 --- a/modules/rostests/apitests/shell32/Control_RunDLLW.cpp +++ b/modules/rostests/apitests/shell32/Control_RunDLLW.cpp @@ -63,7 +63,7 @@ CPlApplet(HWND hwndCPl, { wcscpy(pinfo->szName, L"name1"); wcscpy(pinfo->szInfo, L"info1"); - wcscpy(pinfo->szHelpFile, L"help1"); + wcscpy(pinfo->szHelpFile, L"help1"); } break; } @@ -93,7 +93,7 @@ struct param_test INT iClick; /* MSG_NOT_CALLED when CPL_DBLCLK is not sent */ }; -struct param_test tests[] = +struct param_test tests[] = { {__LINE__, L"", MSG_NOT_CALLED, L"", 0}, {__LINE__, L",name0", MSG_NOT_CALLED, L"", 0}, diff --git a/modules/rostests/apitests/shell32/PathResolve.cpp b/modules/rostests/apitests/shell32/PathResolve.cpp index 122f1d083b4..c0a6d97e35f 100644 --- a/modules/rostests/apitests/shell32/PathResolve.cpp +++ b/modules/rostests/apitests/shell32/PathResolve.cpp @@ -562,7 +562,7 @@ static const ENTRY s_Entries[] = }; static BOOL -CreateShortcut(LPCWSTR pszLnkFileName, +CreateShortcut(LPCWSTR pszLnkFileName, LPCWSTR pszTargetPathName) { IPersistFile *ppf; @@ -572,7 +572,7 @@ CreateShortcut(LPCWSTR pszLnkFileName, hres = CoInitialize(NULL); if (SUCCEEDED(hres)) { - hres = CoCreateInstance(CLSID_ShellLink, NULL, + hres = CoCreateInstance(CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER, IID_IShellLinkW, (LPVOID*)&psl); if (SUCCEEDED(hres)) { diff --git a/modules/rostests/apitests/shell32/SHParseDisplayName.cpp b/modules/rostests/apitests/shell32/SHParseDisplayName.cpp index ad9c94d2892..35e40d6c27f 100644 --- a/modules/rostests/apitests/shell32/SHParseDisplayName.cpp +++ b/modules/rostests/apitests/shell32/SHParseDisplayName.cpp @@ -52,8 +52,8 @@ struct test_data Tests[] = {__LINE__, L"\\\\?\\", NULL, 0, E_INVALIDARG, 0}, /* Tests for the shell: protocol */ {__LINE__, L"shell:", NULL, 0, HRESULT_FROM_WIN32(ERROR_PATH_NOT_FOUND), 0}, - {__LINE__, L"shell::", NULL, 0, HRESULT_FROM_WIN32(ERROR_PATH_NOT_FOUND), 0}, - {__LINE__, L"shell:::", NULL, 0, HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND), 0}, + {__LINE__, L"shell::", NULL, 0, HRESULT_FROM_WIN32(ERROR_PATH_NOT_FOUND), 0}, + {__LINE__, L"shell:::", NULL, 0, HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND), 0}, {__LINE__, L"shell:::{", NULL, 0, HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND), 0}, {__LINE__, L"shell:fail", NULL, 0, HRESULT_FROM_WIN32(ERROR_PATH_NOT_FOUND), 0}, {__LINE__, L"shell:::{20D04FE0-3AEA-1069-A2D8-08002B30309D}", L"::{20D04FE0-3AEA-1069-A2D8-08002B30309D}", 0, S_OK, 0}, @@ -87,8 +87,8 @@ struct test_data Tests[] = {__LINE__, L"ftp://ftp.gnu.org/gnu/octave/", L"ftp://ftp.gnu.org/gnu/octave/", 0, S_OK, T_VISTA_PLUS}, /* Tests for CRegFolder */ {__LINE__, L"::", NULL, 0, CO_E_CLASSSTRING, 0}, - {__LINE__, L"::{", NULL, 0, CO_E_CLASSSTRING, 0}, - {__LINE__, L"::{ ", NULL, 0, CO_E_CLASSSTRING, 0}, + {__LINE__, L"::{", NULL, 0, CO_E_CLASSSTRING, 0}, + {__LINE__, L"::{ ", NULL, 0, CO_E_CLASSSTRING, 0}, {__LINE__, L"::{20D04FE0-3AEA-1069-A2D8-08002B30309D}", L"::{20D04FE0-3AEA-1069-A2D8-08002B30309D}", 0, S_OK, 0}, {__LINE__, L"::{20D04FE0-3AEA-1069-A2D8-08002B30309D} ", L"::{20D04FE0-3AEA-1069-A2D8-08002B30309D}", 0, S_OK, 0}, {__LINE__, L"::{20D04FE0-3AEA-1069-A2D8-08002B30309D}a", L"::{20D04FE0-3AEA-1069-A2D8-08002B30309D}", 0, S_OK, 0}, diff --git a/modules/rostests/apitests/shell32/ShellExecuteEx.cpp b/modules/rostests/apitests/shell32/ShellExecuteEx.cpp index 72661ab389f..6f32157e66b 100644 --- a/modules/rostests/apitests/shell32/ShellExecuteEx.cpp +++ b/modules/rostests/apitests/shell32/ShellExecuteEx.cpp @@ -75,7 +75,7 @@ TestShellExecuteEx(const WCHAR* Name, BOOL ExpectedResult) ShellExecInfo.lpDirectory = NULL; Result = ShellExecuteExW(&ShellExecInfo); ok(Result == ExpectedResult, "ShellExecuteEx lpFile %s failed. Error: %lu\n", wine_dbgstr_w(Name), GetLastError()); - if (ShellExecInfo.hProcess) + if (ShellExecInfo.hProcess) { Result = TerminateProcess(ShellExecInfo.hProcess, 0); if (!Result) trace("Terminate process failed. Error: %lu\n", GetLastError()); diff --git a/modules/rostests/apitests/shell32/ShellExecuteW.cpp b/modules/rostests/apitests/shell32/ShellExecuteW.cpp index b722615df67..8046c3e5282 100644 --- a/modules/rostests/apitests/shell32/ShellExecuteW.cpp +++ b/modules/rostests/apitests/shell32/ShellExecuteW.cpp @@ -47,7 +47,7 @@ START_TEST(ShellExecuteW) ret = (INT)(UINT_PTR)hInstance; ok(ret > 31, "TEST #1: ret:%d, LastError: %ld\n", ret, GetLastError()); trace("TEST #1 ret: %d.\n", ret); - if (hInstance) + if (hInstance) { Sleep(WAIT_SLEEP); // Terminate Window @@ -73,7 +73,7 @@ START_TEST(ShellExecuteW) ret = (INT)(UINT_PTR)hInstance; ok(ret > 31, "TEST #3: ret:%d, LastError: %ld\n", ret, GetLastError()); trace("TEST #3 ret: %d.\n", ret); - if (hInstance) + if (hInstance) { Sleep(WAIT_SLEEP); // Terminate Window diff --git a/modules/rostests/apitests/shell32/menu.cpp b/modules/rostests/apitests/shell32/menu.cpp index 673d4f457cc..03b73754f3d 100644 --- a/modules/rostests/apitests/shell32/menu.cpp +++ b/modules/rostests/apitests/shell32/menu.cpp @@ -32,7 +32,7 @@ class CDummyWindow : public CUnknownBase { protected: HWND m_hwnd; - + const QITAB* GetQITab() { static const QITAB tab[] = {{ &IID_IOleWindow, OFFSETOFCLASS(IOleWindow, CDummyWindow) }, {0}}; @@ -90,7 +90,7 @@ void test_CShellMenu_params() HWND hwndOwner; DWORD menuFlagss; IShellFolder *shellFolder; - + if (!CreateCShellMenu(&shellMenu, &dockingMenu, &menuWithSite)) { skip("failed to create CShellMenuObject\n"); @@ -113,7 +113,7 @@ void test_CShellMenu_params() hResult = dockingMenu->GetWindow(&hwndToolbar); test_HRES(hResult, E_FAIL, "GetWindow should fail"); - hResult = shellMenu->GetMenu(&hmenu, &hwndOwner, &menuFlagss); + hResult = shellMenu->GetMenu(&hmenu, &hwndOwner, &menuFlagss); test_HRES(hResult, E_FAIL, "GetMenu should fail"); hmenu = CreatePopupMenu(); @@ -128,7 +128,7 @@ void test_CShellMenu_params() hResult = shellMenu->SetMenu(NULL, NULL, 0); test_S_OK(hResult, "SetMenu failed"); - hResult = shellMenu->GetMenu(&hmenu, &hwndOwner, &menuFlagss); + hResult = shellMenu->GetMenu(&hmenu, &hwndOwner, &menuFlagss); test_S_OK(hResult, "GetMenu failed"); ok (hmenu == NULL, "Got a menu\n"); @@ -140,7 +140,7 @@ void test_CShellMenu_params() hResult = shellMenu->SetShellFolder(shellFolder, NULL, 0, 0); test_S_OK(hResult, "SetShellFolder failed"); - + hResult = shellMenu->SetShellFolder(NULL, NULL, 0, 0); test_HRES(hResult, E_INVALIDARG, "SetShellFolder should fail"); @@ -219,7 +219,7 @@ protected: int m_iCallback; struct _test_info *m_results; int m_testsCount; - + const QITAB* GetQITab() { static const QITAB tab[] = {{ &IID_IShellMenuCallback, OFFSETOFCLASS(IShellMenuCallback, CMenuCallback) }, {0}}; @@ -245,8 +245,8 @@ public: { /*trace ("callback type %d\n", uMsg);*/ - /* - * it seems callback 0x10000000 is called for every item added so + /* + * it seems callback 0x10000000 is called for every item added so * we will ignore consecutive callbacks of this type * Note: this callback is invoked by shell32.dll!CMenuSFToolbar::_FilterPidl */ @@ -267,7 +267,7 @@ public: ok(psmd != NULL, "Got NULL psmd\n"); ok(m_iTest == result->iTest, "Wrong test number (%d not %d)\n", m_iTest, result->iTest); ok(result->uMsg == uMsg, "%d: Got wrong uMsg (%d instead of %d)\n", m_iCallback, uMsg, result->uMsg); - + if(uMsg == SMC_CREATE) { ok(psmd->dwFlags == 0, "wrong dwFlags\n"); @@ -276,7 +276,7 @@ public: ok(psmd->hwnd == 0, "wrong hwnd\n"); ok(psmd->punk != NULL, "punk is null\n"); } - + if (uMsg == SMC_GETSFOBJECT) { ok(psmd->psf != 0, "wrong dwFlags\n"); @@ -298,7 +298,7 @@ void test_CShellMenu_callbacks(IShellFolder *shellFolder, HMENU hmenu) CW_USEDEFAULT, CW_USEDEFAULT, NULL, NULL, GetModuleHandle(NULL), NULL); CDummyWindow* dummyWindow = new CDummyWindow(hWndParent); ShowWindow(hWndParent, SW_SHOW); - + if (!CreateCShellMenu(&shellMenu, &dockingMenu, &menuWithSite)) { skip("failed to create CShellMenuObject\n"); @@ -335,7 +335,7 @@ void test_CShellMenu_callbacks(IShellFolder *shellFolder, HMENU hmenu) test_S_OK(hResult, "SetShellFolder failed"); callback->SetTest(3); - hResult = shellMenu->SetMenu(hmenu, hWndParent, SMSET_TOP); + hResult = shellMenu->SetMenu(hmenu, hWndParent, SMSET_TOP); test_S_OK(hResult, "SetMenu failed"); hResult = menuWithSite->SetSite(dummyWindow); @@ -343,7 +343,7 @@ void test_CShellMenu_callbacks(IShellFolder *shellFolder, HMENU hmenu) callback->SetTest(4); hResult = dockingMenu->ShowDW(TRUE); - test_HRES(hResult, S_FALSE, "ShowDW failed"); + test_HRES(hResult, S_FALSE, "ShowDW failed"); } void test_CShellMenu_with_DeskBar(IShellFolder *shellFolder, HMENU hmenu) @@ -366,9 +366,9 @@ void test_CShellMenu_with_DeskBar(IShellFolder *shellFolder, HMENU hmenu) skip("failed to create MenuBandSite object\n"); return; } - + /* Create the popup menu */ - hResult = shellMenu->Initialize(NULL, 0, ANCESTORDEFAULT, SMINIT_TOPLEVEL|SMINIT_VERTICAL); + hResult = shellMenu->Initialize(NULL, 0, ANCESTORDEFAULT, SMINIT_TOPLEVEL|SMINIT_VERTICAL); test_S_OK(hResult, "Initialize failed"); hResult = shellMenu->SetMenu( hmenu, NULL, SMSET_TOP); test_S_OK(hResult, "SetMenu failed"); @@ -386,7 +386,7 @@ void test_CShellMenu_with_DeskBar(IShellFolder *shellFolder, HMENU hmenu) /* Ensure that the created windows are correct */ hResult = dockingMenu->GetWindow(&hWndToolbar); - test_S_OK(hResult, "GetWindow failed"); + test_S_OK(hResult, "GetWindow failed"); ok(hWndToolbar != NULL, "GetWindow should return a window\n"); hResult = menuPopup->GetWindow(&hWndToplevel); diff --git a/modules/rostests/apitests/spoolss/PackStrings.c b/modules/rostests/apitests/spoolss/PackStrings.c index d572b5f5e11..3a500ee7b92 100644 --- a/modules/rostests/apitests/spoolss/PackStrings.c +++ b/modules/rostests/apitests/spoolss/PackStrings.c @@ -32,7 +32,7 @@ START_TEST(PackStrings) FIELD_OFFSET(EXAMPLE_STRUCT, String2), MAXDWORD }; - + // Try a usual case with two strings. Verify that they are copied in reverse order. pEnd = PackStrings(Source1, Buffer, Offsets, &Buffer[sizeof(Buffer)]); ok(wcscmp(pStruct->String1, Source1[0]) == 0, "String1 and Source1[0] don't match!\n"); diff --git a/modules/rostests/apitests/user32/AttachThreadInput.c b/modules/rostests/apitests/user32/AttachThreadInput.c index fbba7178720..80b69df498f 100644 --- a/modules/rostests/apitests/user32/AttachThreadInput.c +++ b/modules/rostests/apitests/user32/AttachThreadInput.c @@ -51,7 +51,7 @@ LRESULT CALLBACK TestProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) { int iwnd = get_iwnd(hWnd); - if(iwnd >= 0 && message > 0 && message < WM_APP && message != WM_TIMER) + if(iwnd >= 0 && message > 0 && message < WM_APP && message != WM_TIMER) record_message(&data[iwnd].cache, iwnd, message, SENT, wParam,0); return DefWindowProc(hWnd, message, wParam, lParam); @@ -151,7 +151,7 @@ LRESULT CALLBACK KbdLLHookProc(int nCode, WPARAM wParam, LPARAM lParam) { LRESULT ret; KBDLLHOOKSTRUCT* params = (KBDLLHOOKSTRUCT*) lParam; - + ret = CallNextHookEx(hMouseHookLL, nCode, wParam, lParam); if((params->flags & LLKHF_INJECTED) == 0) @@ -186,7 +186,7 @@ BOOLEAN InitThreads() { win_skip("CreateWindowW failed\n"); return FALSE; - } + } /* create thread1(same desktop) */ if(!CreateTestThread(1, NULL)) return FALSE; @@ -225,7 +225,7 @@ static void cleanup_attachments() /* - * The actual tests + * The actual tests */ void Test_SimpleParameters() @@ -258,7 +258,7 @@ void Test_SimpleParameters() /* Attach thread 3 and 4 */ ret = AttachThreadInput( data[3].tid,data[4].tid, TRUE); ok(ret==1, "expected AttachThreadInput to succeed\n"); - + /* cleanup previous attachment */ ret = AttachThreadInput( data[3].tid,data[4].tid, FALSE); ok(ret==1, "expected AttachThreadInput to succeed\n"); @@ -268,7 +268,7 @@ void Test_SimpleParameters() /* Attach thread 1 and 2 */ ret = AttachThreadInput( data[1].tid,data[2].tid, TRUE); ok(ret==1, "expected AttachThreadInput to succeed\n"); - + /* attach already attached*/ ret = AttachThreadInput( data[1].tid,data[2].tid, TRUE); ok(ret==1, "expected AttachThreadInput to succeed\n"); @@ -284,7 +284,7 @@ void Test_SimpleParameters() /* also try to detach 3 from 2 */ ret = AttachThreadInput( data[3].tid,data[2].tid, FALSE); ok(ret==0, "expected AttachThreadInput to fail\n"); - + /* cleanup previous attachment */ ret = AttachThreadInput( data[1].tid,data[2].tid, FALSE); ok(ret==1, "expected AttachThreadInput to succeed\n"); @@ -464,7 +464,7 @@ void Test_UnaffectedMessages() EMPTY_CACHE_(&data[0].cache); EMPTY_CACHE_(&data[1].cache); - /* test that messages posted before and after attachment are unaffected + /* test that messages posted before and after attachment are unaffected and that we don't receive a meassage from a window we shouldn't */ PostMessage(data[0].hWnd, WM_USER, 0,0); PostMessage(data[1].hWnd, WM_USER, 1,0); @@ -494,7 +494,7 @@ void Test_UnaffectedMessages() ret = AttachThreadInput( data[1].tid, data[0].tid , FALSE); ok(ret==1, "expected AttachThreadInput to succeed\n"); } - + /* test messages send to the wrong thread */ res = SendMessageTimeout(data[0].hWnd, WM_USER, 0,0, SMTO_NORMAL, 1000, NULL); ok (res != ERROR_TIMEOUT, "SendMessageTimeout timed out\n"); @@ -519,7 +519,7 @@ void Test_UnaffectedMessages() ok (res != ERROR_TIMEOUT, "SendMessageTimeout timed out\n"); res = SendMessageTimeout(data[1].hWnd, WM_USER, 3,0, SMTO_NORMAL, 1000, NULL); ok (res != ERROR_TIMEOUT, "SendMessageTimeout timed out\n"); - + /* Try to send a fake input message */ res = SendMessageTimeout(data[1].hWnd, WM_MOUSEMOVE, 0,0, SMTO_NORMAL, 1000, NULL); ok (res != ERROR_TIMEOUT, "SendMessageTimeout timed out\n"); @@ -548,12 +548,12 @@ void Test_SendInput() BOOL ret; //trace("Thread hWnd0 0x%p hWnd1 0x%p\n",data[0].hWnd, data[1].hWnd); - + /* First try sending input without attaching. It will go to the foreground */ { SetForegroundWindow(data[1].hWnd); SetActiveWindow(data[0].hWnd); - + ok(GetForegroundWindow() == data[1].hWnd, "wrong foreground got 0x%p\n",GetForegroundWindow()); ok(GetActiveWindow() == data[0].hWnd, "wrong active got 0x%p\n",GetActiveWindow()); @@ -565,17 +565,17 @@ void Test_SendInput() keybd_event(VK_SHIFT, 0,KEYEVENTF_KEYUP,0); Sleep(100); FlushMessages(); - + COMPARE_CACHE_(&data[0].cache, empty_chain); COMPARE_CACHE_(&data[1].cache, Thread1_chain); } - + /* Next attach and send input. It will go to the same thread as before */ { // from to ret = AttachThreadInput( data[1].tid, data[0].tid , TRUE); ok(ret==1, "expected AttachThreadInput to succeed\n"); - - FlushMessages(); + + FlushMessages(); EMPTY_CACHE_(&data[0].cache); EMPTY_CACHE_(&data[1].cache); @@ -583,7 +583,7 @@ void Test_SendInput() keybd_event(VK_SHIFT, 0,KEYEVENTF_KEYUP,0); Sleep(100); FlushMessages(); - + COMPARE_CACHE_(&data[0].cache, empty_chain); COMPARE_CACHE_(&data[1].cache, Thread1_chain); } @@ -592,7 +592,7 @@ void Test_SendInput() { SetForegroundWindow(data[1].hWnd); SetActiveWindow(data[0].hWnd); - FlushMessages(); + FlushMessages(); ok(GetForegroundWindow() == data[0].hWnd, "wrong foreground got 0x%p\n",GetForegroundWindow()); ok(GetActiveWindow() == data[0].hWnd, "wrong active got 0x%p\n",GetActiveWindow()); @@ -604,7 +604,7 @@ void Test_SendInput() keybd_event(VK_SHIFT, 0,KEYEVENTF_KEYUP,0); Sleep(100); FlushMessages(); - + COMPARE_CACHE_(&data[0].cache, Thread0_chain); COMPARE_CACHE_(&data[1].cache, empty_chain); @@ -616,8 +616,8 @@ void Test_SendInput() { ret = AttachThreadInput( data[0].tid, data[1].tid , TRUE); ok(ret==1, "expected AttachThreadInput to succeed\n"); - - FlushMessages(); + + FlushMessages(); EMPTY_CACHE_(&data[0].cache); EMPTY_CACHE_(&data[1].cache); @@ -625,7 +625,7 @@ void Test_SendInput() keybd_event(VK_SHIFT, 0,KEYEVENTF_KEYUP,0); Sleep(100); FlushMessages(); - + COMPARE_CACHE_(&data[0].cache, Thread0_chain); COMPARE_CACHE_(&data[1].cache, empty_chain); } @@ -634,7 +634,7 @@ void Test_SendInput() { SetForegroundWindow(data[1].hWnd); SetActiveWindow(data[0].hWnd); - FlushMessages(); + FlushMessages(); ok(GetForegroundWindow() == data[0].hWnd, "wrong foreground got 0x%p\n",GetForegroundWindow()); ok(GetActiveWindow() == data[0].hWnd, "wrong active got 0x%p\n",GetActiveWindow()); @@ -646,7 +646,7 @@ void Test_SendInput() keybd_event(VK_SHIFT, 0,KEYEVENTF_KEYUP,0); Sleep(100); FlushMessages(); - + COMPARE_CACHE_(&data[0].cache, Thread0_chain); COMPARE_CACHE_(&data[1].cache, empty_chain); diff --git a/modules/rostests/apitests/user32/CreateIconFromResourceEx.c b/modules/rostests/apitests/user32/CreateIconFromResourceEx.c index 25f75c42a7c..0231220e7be 100644 --- a/modules/rostests/apitests/user32/CreateIconFromResourceEx.c +++ b/modules/rostests/apitests/user32/CreateIconFromResourceEx.c @@ -5,30 +5,30 @@ START_TEST(CreateIconFromResourceEx) { HCURSOR hcur1, hcur2; HMODULE hMod; - HRSRC hResource; // handle to FindResource - HRSRC hMem; // handle to LoadResource + HRSRC hResource; // handle to FindResource + HRSRC hMem; // handle to LoadResource BYTE *lpResource; // pointer to resource data DWORD err; int wResId; - + hMod = GetModuleHandle(NULL); ok(hMod != NULL, "\n"); /* Create a shared cursor */ hcur1 = LoadCursor(hMod, "TESTCURSOR"); ok(hcur1 != NULL, "\n"); - + /* Create it manually using CreateIconFromResourceEx */ - hResource = FindResourceA(hMod, - "TESTCURSOR", + hResource = FindResourceA(hMod, + "TESTCURSOR", RT_GROUP_CURSOR); ok(hResource != NULL, "\n"); - - hMem = LoadResource(hMod, hResource); + + hMem = LoadResource(hMod, hResource); ok(hMem != NULL, "\n"); - - lpResource = LockResource(hMem); + + lpResource = LockResource(hMem); ok(lpResource != NULL, "\n"); - + /* MSDN states that LR_SHARED permits to not load twice the same cursor again. * But CreateIconFromResourceEx still returns two different handles */ hcur2 = CreateIconFromResourceEx(lpResource, SizeofResource(hMod, hResource), FALSE, 0x00030000, 0, 0, LR_SHARED); @@ -37,7 +37,7 @@ START_TEST(CreateIconFromResourceEx) hcur1 = CreateIconFromResourceEx(lpResource, SizeofResource(hMod, hResource), FALSE, 0x00030000, 0, 0, LR_SHARED); ok(hcur1 != NULL, "\n"); ok(hcur2 != hcur1, "\n"); - + /* Try to destroy them multiple times (see DestroyCursor test) */ ok(DestroyCursor(hcur1), "\n"); ok(DestroyCursor(hcur1), "\n"); @@ -59,12 +59,12 @@ START_TEST(CreateIconFromResourceEx) hResource = FindResourceA(hMod, MAKEINTRESOURCEA(wResId), RT_CURSOR); ok(hResource != NULL, "\n"); - hMem = LoadResource(hMod, hResource); + hMem = LoadResource(hMod, hResource); ok(hMem != NULL, "\n"); - - lpResource = LockResource(hMem); + + lpResource = LockResource(hMem); ok(lpResource != NULL, "\n"); - + /* MSDN states that LR_SHARED permits to not load twice the same cursor again. * But CreateIconFromResourceEx still returns two different handles */ hcur2 = CreateIconFromResourceEx(lpResource, SizeofResource(hMod, hResource), FALSE, 0x00030000, 0, 0, LR_SHARED); @@ -73,7 +73,7 @@ START_TEST(CreateIconFromResourceEx) hcur1 = CreateIconFromResourceEx(lpResource, SizeofResource(hMod, hResource), FALSE, 0x00030000, 0, 0, LR_SHARED); ok(hcur1 != NULL, "\n"); ok(hcur2 != hcur1, "\n"); - + /* Try to destroy them multiple times (see DestroyCursor test) */ ok(DestroyCursor(hcur1), "\n"); ok(DestroyCursor(hcur1), "\n"); diff --git a/modules/rostests/apitests/user32/DeferWindowPos.c b/modules/rostests/apitests/user32/DeferWindowPos.c index aa1ba8e95ab..c8d4676d6f9 100644 --- a/modules/rostests/apitests/user32/DeferWindowPos.c +++ b/modules/rostests/apitests/user32/DeferWindowPos.c @@ -122,7 +122,7 @@ static void Test_DWP_Error(HWND hWnd, HWND hWnd2) ret = EndDeferWindowPos((HDWP)-1); ok(ret == 0, "EndDeferWindowPos succeeded with invalid handle\n"); ok_lasterr(ERROR_INVALID_DWP_HANDLE, "EndDeferWindowPos"); - + /* negative window count */ SetLastError(DNS_ERROR_RCODE_NXRRSET); hDwp = BeginDeferWindowPos(-1); @@ -458,10 +458,10 @@ static void Test_DWP_OwnerZOrder() EXPECT_CHAIN(4,3,1,2); /* now do the same thing one more time with SWP_NOOWNERZORDER */ - /* SWP_NOACTIVATE is needed because without it SetActiveWindow + /* SWP_NOACTIVATE is needed because without it SetActiveWindow will be calledit and it will call SetWindowPos again WITHOUT SWP_NOOWNERZORDER. that means that - in order for SWP_NOOWNERZORDER to have effect we have to use + in order for SWP_NOOWNERZORDER to have effect we have to use SWP_NOACTIVATE as well */ set_default_pos(); EXPECT_CHAIN(4,3,2,1); @@ -497,7 +497,7 @@ START_TEST(DeferWindowPos) { SetCursorPos(0,0); - RegisterSimpleClass(DWPTestProc, L"ownertest"); + RegisterSimpleClass(DWPTestProc, L"ownertest"); hWnd1 = CreateWindowExW(0, L"ownertest", L"abc", 0, 10, 20, 200, 210, NULL, NULL, 0, NULL); hWnd2 = CreateWindowExW(0, L"ownertest", L"def", 0, 30, 40, @@ -517,7 +517,7 @@ START_TEST(DeferWindowPos) set_default_pos(); Test_DWP_SimpleMsg(hWnd1, hWnd2); - + set_default_pos(); Test_DWP_OwnerZOrder(); diff --git a/modules/rostests/apitests/user32/DestroyCursorIcon.c b/modules/rostests/apitests/user32/DestroyCursorIcon.c index da87d122f05..3a17557a4d6 100644 --- a/modules/rostests/apitests/user32/DestroyCursorIcon.c +++ b/modules/rostests/apitests/user32/DestroyCursorIcon.c @@ -6,12 +6,12 @@ START_TEST(DestroyCursorIcon) HICON hicon; HCURSOR hcursor; ICONINFO iconinfo; - + ZeroMemory(&iconinfo, sizeof(iconinfo)); iconinfo.hbmMask = CreateBitmap(8, 16, 1, 1, NULL); ok(iconinfo.hbmMask != NULL, "\n"); - + /* * Test if DestroyCursor can destroy an icon, and vice-versa . * It can. @@ -21,30 +21,30 @@ START_TEST(DestroyCursorIcon) ok(hicon != 0, "should not fail\n"); ok(DestroyCursor(hicon), "\n"); ok(!DestroyIcon(hicon), "\n"); - + iconinfo.fIcon = FALSE; hcursor = CreateIconIndirect(&iconinfo); ok(hcursor != 0, "should not fail\n"); ok(DestroyIcon(hcursor), "\n"); ok(!DestroyCursor(hcursor), "\n"); - + /* Clean up */ DeleteObject(iconinfo.hbmMask); - + /* Now check its behaviour regarding Shared icons/cursors */ hcursor = LoadCursor(GetModuleHandle(NULL), "TESTCURSOR"); ok(hcursor != 0, "\n"); - + /* MSDN says we shouldn't do that, but it still succeeds */ ok(DestroyCursor(hcursor), "\n"); - + /* In fact, it's still there */ ZeroMemory(&iconinfo, sizeof(iconinfo)); ok(GetIconInfo(hcursor, &iconinfo), "\n"); ok(iconinfo.hbmMask != NULL, "\n"); ok(iconinfo.hbmColor != NULL, "\n"); ok(!iconinfo.fIcon, "\n"); - + /* clean up */ DeleteObject(iconinfo.hbmMask); DeleteObject(iconinfo.hbmColor); diff --git a/modules/rostests/apitests/user32/DrawIconEx.c b/modules/rostests/apitests/user32/DrawIconEx.c index 41b1707e035..1eb000df6c4 100644 --- a/modules/rostests/apitests/user32/DrawIconEx.c +++ b/modules/rostests/apitests/user32/DrawIconEx.c @@ -9,32 +9,32 @@ START_TEST(DrawIconEx) HDC hdcScreen, hdc; BOOL ret; HBRUSH hbrush; - + ZeroMemory(&ii, sizeof(ii)); - + ii.hbmMask = CreateBitmap(8, 16, 1, 1, NULL); ok(ii.hbmMask != NULL, "\n"); hcursor = CreateIconIndirect(&ii); ok(hcursor != NULL, "\n"); DeleteObject(ii.hbmMask); - + hdcScreen = GetDC(0); hbmp = CreateCompatibleBitmap(hdcScreen, 8, 8); ok(hbmp != NULL, "\n"); hdc = CreateCompatibleDC(hdcScreen); ok(hdc != NULL, "\n"); ReleaseDC(0, hdcScreen); - + hbmp = SelectObject(hdc, hbmp); ok(hbmp != NULL, "\n"); - + hbrush = GetStockObject(DKGRAY_BRUSH); ok(hbrush != NULL, "\n"); - + ret = DrawIconEx(hdc, 0, 0, hcursor, 8, 8, 0, hbrush, DI_NORMAL); ok(ret, "\n"); DestroyCursor(hcursor); - + /* Try with color */ ii.hbmMask = CreateBitmap(8, 8, 1, 1, NULL); ok(ii.hbmMask != NULL, "\n"); @@ -44,7 +44,7 @@ START_TEST(DrawIconEx) ok(hcursor != NULL, "\n"); DeleteObject(ii.hbmMask); DeleteObject(ii.hbmColor); - + ret = DrawIconEx(hdc, 0, 0, hcursor, 8, 8, 0, hbrush, DI_NORMAL); ok(ret, "\n"); DestroyCursor(hcursor); diff --git a/modules/rostests/apitests/user32/GetIconInfo.c b/modules/rostests/apitests/user32/GetIconInfo.c index b8da5148f8b..f68a5da243c 100644 --- a/modules/rostests/apitests/user32/GetIconInfo.c +++ b/modules/rostests/apitests/user32/GetIconInfo.c @@ -150,7 +150,7 @@ START_TEST(GetIconInfo) dm.dmSize = sizeof(dm); dm.dmDriverExtra = 0; - + /* Test icons behaviour regarding display settings */ ok(EnumDisplaySettingsW(NULL, ENUM_CURRENT_SETTINGS, &dm), "\n"); screenbpp = dm.dmBitsPerPel; @@ -175,7 +175,7 @@ START_TEST(GetIconInfo) DeleteObject(iconinfo2.hbmMask); /* Delete cursor */ DestroyCursor(hcursor); - + /* To sum it up: * There are two criteria when using icons: performance and aesthetics (=alpha channel). * Performance asks for bit parity with the screen display. @@ -184,7 +184,7 @@ START_TEST(GetIconInfo) * ie: if the 32bpp bitmap were already loaded because of previous display settings, always use it. * Otherwise, use the bitmap matching the screen bit depth. */ - + /* if we use LR_SHARED here, and reverse the loop (32->16), then hbmColor.bmBitsPixel is always 32. */ for(creationbpp = 16; creationbpp <=32; creationbpp += 8) { @@ -202,7 +202,7 @@ START_TEST(GetIconInfo) 0, LR_DEFAULTCOLOR); ok(hcursor != 0, "should not fail\n"); - + /* If we reverse the loop here (32->16 bpp), then hbmColor.bmBitsPixel is always 32 */ for(bpp = 16; bpp <=32; bpp += 8) { @@ -237,7 +237,7 @@ START_TEST(GetIconInfo) ok(bitmap.bmPlanes == 1, "\n"); ok(bitmap.bmBitsPixel == (creationbpp == 32 ? 32 : bpp), "creationbpp: %lu, bpp: %lu:\n", creationbpp, bpp); ok(bitmap.bmBits == NULL, "\n"); - + /* Delete objects */ DeleteObject(iconinfo2.hbmColor); DeleteObject(iconinfo2.hbmMask); @@ -266,7 +266,7 @@ START_TEST(GetIconInfo) ok(bitmap.bmPlanes == 1, "\n"); ok(bitmap.bmBitsPixel == 1, "\n"); ok(bitmap.bmBits == NULL, "\n"); - + /* Delete objects */ DeleteObject(iconinfo2.hbmColor); DeleteObject(iconinfo2.hbmMask); diff --git a/modules/rostests/apitests/user32/GetKeyState.c b/modules/rostests/apitests/user32/GetKeyState.c index f30fc88b3a2..5f3a8ade23d 100644 --- a/modules/rostests/apitests/user32/GetKeyState.c +++ b/modules/rostests/apitests/user32/GetKeyState.c @@ -13,7 +13,7 @@ LRESULT CALLBACK KeyboardProc(int code, WPARAM wParam, LPARAM lParam) { BOOL pressed = !(lParam & (1<<31)); BOOL altPressed = lParam & (1<<29); - + if(pressed) { ok(altPressed,"\n"); @@ -25,15 +25,15 @@ LRESULT CALLBACK KeyboardProc(int code, WPARAM wParam, LPARAM lParam) ok(!altPressed,"\n"); ok(!(GetKeyState(VK_MENU) & 0x8000), "Alt should be pressed\n"); ok(!(GetKeyState(VK_LMENU) & 0x8000), "Left alt should be pressed\n"); - } - + } + return CallNextHookEx(hKbdHook, code, wParam, lParam); } LRESULT CALLBACK LowLevelKeyboardProc(int nCode, WPARAM wParam, LPARAM lParam) { PKBDLLHOOKSTRUCT pLLHook = (PKBDLLHOOKSTRUCT)lParam; - + if(wParam == WM_SYSKEYDOWN) { ok(pLLHook->flags & LLKHF_ALTDOWN,"Didn't get LLKHF_ALTDOWN flag\n"); @@ -49,8 +49,8 @@ LRESULT CALLBACK LowLevelKeyboardProc(int nCode, WPARAM wParam, LPARAM lParam) ok((GetKeyState(VK_MENU) & 0x8000), "Alt should be pressed in queue state\n"); ok(!(GetAsyncKeyState (VK_LMENU) & 0x8000), "Left alt should not be pressed in global kbd status\n"); ok((GetKeyState(VK_LMENU) & 0x8000), "Left alt should be pressed in queue state\n"); - } - + } + return CallNextHookEx(hKbdLLHook, nCode, wParam, lParam); } @@ -69,7 +69,7 @@ static HWND CreateTestWindow() WNDCLASSA wclass; HANDLE hInstance = GetModuleHandleA( NULL ); HWND hWndTest; - + wclass.lpszClassName = "InputSysKeyTestClass"; wclass.style = CS_HREDRAW | CS_VREDRAW; wclass.lpfnWndProc = WndProc; @@ -101,30 +101,30 @@ void Test_GetKeyState() { HWND hwnd; MSG msg; - + hwnd = CreateTestWindow(); - + hKbdHook = SetWindowsHookEx(WH_KEYBOARD, KeyboardProc, GetModuleHandleA( NULL ), 0); hKbdLLHook = SetWindowsHookEx(WH_KEYBOARD_LL, LowLevelKeyboardProc, GetModuleHandleA( NULL ), 0); - + ok(hKbdHook != NULL, "\n"); ok(hKbdLLHook != NULL, "\n"); - + keybd_event(VK_LMENU, 0, 0,0); - + while (PeekMessage( &msg, 0, 0, 0, PM_REMOVE )) DispatchMessageA( &msg ); - + keybd_event(VK_LMENU, 0, KEYEVENTF_KEYUP,0); - + //fixme this hangs the test //while (PeekMessage( &msg, 0, 0, 0, PM_REMOVE|PM_NOYIELD )) DispatchMessageA( &msg ); - + DestroyWindow(hwnd); - + while (PeekMessage( &msg, 0, 0, 0, PM_REMOVE )) DispatchMessageA( &msg ); - + UnhookWindowsHookEx (hKbdHook); - UnhookWindowsHookEx (hKbdLLHook); + UnhookWindowsHookEx (hKbdLLHook); } START_TEST(GetKeyState) diff --git a/modules/rostests/apitests/user32/InitializeLpkHooks.c b/modules/rostests/apitests/user32/InitializeLpkHooks.c index eefaf7c6091..d2fe1961a95 100644 --- a/modules/rostests/apitests/user32/InitializeLpkHooks.c +++ b/modules/rostests/apitests/user32/InitializeLpkHooks.c @@ -35,7 +35,7 @@ int Count_myLpkTabbedTextOut = 0; int Count_myLpkPSMTextOut = 0; int Count_myLpkDrawTextEx = 0; -DWORD WINAPI myLpkTabbedTextOut (LPVOID x1,LPVOID x2,LPVOID x3, LPVOID x4, LPVOID x5, LPVOID x6, LPVOID x7, LPVOID x8, +DWORD WINAPI myLpkTabbedTextOut (LPVOID x1,LPVOID x2,LPVOID x3, LPVOID x4, LPVOID x5, LPVOID x6, LPVOID x7, LPVOID x8, LPVOID x9, LPVOID x10, LPVOID x11, LPVOID x12) { Count_myLpkTabbedTextOut++; diff --git a/modules/rostests/apitests/user32/LoadImage.c b/modules/rostests/apitests/user32/LoadImage.c index 70c9d2fd228..64af37325d2 100644 --- a/modules/rostests/apitests/user32/LoadImage.c +++ b/modules/rostests/apitests/user32/LoadImage.c @@ -26,7 +26,7 @@ START_TEST(LoadImage) sscanf (test_argv[2], "%Iu", (ULONG_PTR*) &arg); ok(handle != arg, "Got same handles\n"); - + /* Try copying it */ hCopy = CopyIcon(arg); ok(hCopy != NULL, "\n"); @@ -37,7 +37,7 @@ START_TEST(LoadImage) ok(DestroyIcon(hCopy), "\n"); /* Unlike the original, this one is not shared */ ok(!DestroyIcon(hCopy), "\n"); - + hCopy = CopyImage(arg, IMAGE_CURSOR, 0, 0, LR_COPYFROMRESOURCE); ok(hCopy != NULL, "\n"); ok(DestroyIcon(hCopy), "\n"); @@ -49,7 +49,7 @@ START_TEST(LoadImage) ok(DestroyIcon(hCopy), "\n"); /* This one is shared */ ok(DestroyIcon(hCopy), "\n"); - + hCopy = CopyImage(arg, IMAGE_CURSOR, 0, 0, LR_SHARED); ok(hCopy != NULL, "\n"); ok(DestroyIcon(hCopy), "DestroyIcon should succeed.\n"); @@ -65,13 +65,13 @@ START_TEST(LoadImage) ok(hbmp != NULL, "\n"); hbmp = SelectObject(hdc, hbmp); ok(hbmp != NULL, "\n"); - + ok(DrawIcon(hdc, 0, 0, arg), "\n"); hbmp = SelectObject(hdc, hbmp); DeleteObject(hbmp); DeleteDC(hdc); DeleteDC(hdcScreen); - + ok(GetIconInfo(arg, &ii), "\n"); ok(ii.hbmMask != NULL, "\n"); DeleteObject(ii.hbmMask); diff --git a/modules/rostests/apitests/user32/LookupIconIdFromDirectoryEx.c b/modules/rostests/apitests/user32/LookupIconIdFromDirectoryEx.c index ac1392482fa..d92ebb4b062 100644 --- a/modules/rostests/apitests/user32/LookupIconIdFromDirectoryEx.c +++ b/modules/rostests/apitests/user32/LookupIconIdFromDirectoryEx.c @@ -22,7 +22,7 @@ START_TEST(LookupIconIdFromDirectoryEx) int cyDesired; UINT flags; } - TestData[] = + TestData[] = { {8, 1, 0, 0, 0}, {8, 1, 48, 48, 0}, @@ -83,15 +83,15 @@ START_TEST(LookupIconIdFromDirectoryEx) hMod = GetModuleHandle(NULL); ok(hMod != NULL, "\n"); /* Find our cursor directory resource */ - hResource = FindResourceA(hMod, - MAKEINTRESOURCE(IDI_TEST), + hResource = FindResourceA(hMod, + MAKEINTRESOURCE(IDI_TEST), RT_GROUP_ICON); ok(hResource != NULL, "\n"); - - hMem = LoadResource(hMod, hResource); + + hMem = LoadResource(hMod, hResource); ok(hMem != NULL, "\n"); - - lpResource = LockResource(hMem); + + lpResource = LockResource(hMem); ok(lpResource != NULL, "\n"); dm.dmSize = sizeof(dm); @@ -100,7 +100,7 @@ START_TEST(LookupIconIdFromDirectoryEx) ok(EnumDisplaySettingsW(NULL, ENUM_CURRENT_SETTINGS, &dm), "\n"); dwOrigBpp = dm.dmBitsPerPel; - + for (i = 0; i < sizeof(TestData)/sizeof(TestData[0]); i++) { dm.dmBitsPerPel = TestData[i].bpp; @@ -110,7 +110,7 @@ START_TEST(LookupIconIdFromDirectoryEx) continue; } wResId = LookupIconIdFromDirectoryEx(lpResource, TRUE, TestData[i].cxDesired, TestData[i].cyDesired, TestData[i].flags); - ok(wResId == TestData[i].wResId, "Got %d, expected %d for %dx%dx%lu, flags %x.\n", + ok(wResId == TestData[i].wResId, "Got %d, expected %d for %dx%dx%lu, flags %x.\n", wResId, TestData[i].wResId, TestData[i].cxDesired, diff --git a/modules/rostests/apitests/user32/RegisterClassEx.c b/modules/rostests/apitests/user32/RegisterClassEx.c index 33fe7f13076..7e09642b75b 100644 --- a/modules/rostests/apitests/user32/RegisterClassEx.c +++ b/modules/rostests/apitests/user32/RegisterClassEx.c @@ -79,7 +79,7 @@ VOID TestGlobalClasses(VOID) ok( c != 0, "\n"); ok( d == 0, "\n"); ok (b == c, "\n"); - + a = _GetClassAtom(L"TestClass2", hmod); b = _RegisterClass(L"TestClass2", hmod, CS_GLOBALCLASS, DefWindowProcW); c = _GetClassAtom(L"TestClass2", hmod); @@ -126,7 +126,7 @@ VOID TestGlobalClasses(VOID) ok( c == 0, "\n"); ok( d != 0, "\n"); ok( e == 0, "\n"); - + a = _GetClassAtom(L"ScrollBar", hmod); UnregisterClassW(L"ScrollBar", hmod); b = _GetClassAtom(L"ScrollBar", hmod); @@ -138,22 +138,22 @@ VOID TestGlobalClasses(VOID) //ok( d != 0, "Wrong value for d. Expected != 0, got 0\n"); //ok_int(a, c); //ok_int(a, d); /* In Windows 10 and WHS testbot the last 4 tests fail */ - + a = _GetClassAtom(L"ListBox", (HMODULE)0xdead); UnregisterClassW(L"ListBox", (HMODULE)0xdead); b = _GetClassAtom(L"ListBox", (HMODULE)0xdead); ok( a != 0, "\n"); ok( b == 0, "\n"); - + a = _RegisterClass(L"TestClass5", (HMODULE)0xdead, CS_GLOBALCLASS, DefWindowProcW); b = _GetClassAtom(L"TestClass5", hmod); UnregisterClassW(L"TestClass5", hmod); c = _GetClassAtom(L"TestClass5", (HMODULE)0xdead); d = _GetClassAtom(L"TestClass5", hmod); ok( a != 0, "\n"); - ok( b != 0, "\n"); + ok( b != 0, "\n"); ok( c == 0, "\n"); - ok( d == 0, "\n"); + ok( d == 0, "\n"); } VOID TestVersionedClasses(VOID) @@ -173,7 +173,7 @@ VOID TestVersionedClasses(VOID) skip("Loading manifests failed. Skipping TestVersionedClasses\n"); return; } - + a = _RegisterClass(L"VersionTestClass1", hmod, 0, DefWindowProcA); proc1 = _GetWndproc(L"VersionTestClass1", hmod); b = _RegisterClass(L"VersionTestClass1", hmod, 0, DefWindowProcW); @@ -196,7 +196,7 @@ VOID TestVersionedClasses(VOID) ok (proc3 == DefWindowProcW, "Got 0x%p, expected 0x%p\n", proc3, DefWindowProcW); ok (proc4 == DefWindowProcW, "Got 0x%p, expected 0x%p\n", proc4, DefWindowProcW); ok (proc5 == DefWindowProcA, "\n"); - + a = _GetClassAtom(L"Button", hmod); b = _RegisterClass(L"Button", hmod, CS_GLOBALCLASS, DefWindowProcA); proc1 = _GetWndproc(L"Button", (HMODULE)0xdead); @@ -215,7 +215,7 @@ VOID TestVersionedClasses(VOID) ok( proc1 != DefWindowProcA, "Got 0x%p, expected not 0x%p\n", proc1, DefWindowProcA); ok( proc2 == DefWindowProcA, "Got 0x%p, expected 0x%p\n", proc2, DefWindowProcA); ok( proc3 == DefWindowProcA, "Got 0x%p, expected 0x%p\n", proc3, DefWindowProcA); - + a = _RegisterClass(L"VersionTestClass2", hmod, CS_GLOBALCLASS, DefWindowProcW); proc1 = _GetWndproc(L"VersionTestClass2", (HMODULE)0xdead); b = _RegisterClass(L"VersionTestClass2", hmod, 0, DefWindowProcA); diff --git a/modules/rostests/apitests/user32/SetActiveWindow.c b/modules/rostests/apitests/user32/SetActiveWindow.c index 110289b54b3..0d698d46a29 100644 --- a/modules/rostests/apitests/user32/SetActiveWindow.c +++ b/modules/rostests/apitests/user32/SetActiveWindow.c @@ -68,7 +68,7 @@ static void FlushMessages() static void create_test_windows() { - RegisterSimpleClass(OwnerTestProc, L"ownertest"); + RegisterSimpleClass(OwnerTestProc, L"ownertest"); hWnd1 = CreateWindowW(L"ownertest", L"ownertest", WS_OVERLAPPEDWINDOW, 20, 20, 300, 300, NULL, NULL, 0, NULL); diff --git a/modules/rostests/apitests/user32/SystemParametersInfo.c b/modules/rostests/apitests/user32/SystemParametersInfo.c index dfa7380eb35..469d0a687ef 100644 --- a/modules/rostests/apitests/user32/SystemParametersInfo.c +++ b/modules/rostests/apitests/user32/SystemParametersInfo.c @@ -270,7 +270,7 @@ static void Test_GradientCaptions(void) START_TEST(SystemParametersInfo) { - RegisterSimpleClass(SysParamsTestProc, L"sysparamstest"); + RegisterSimpleClass(SysParamsTestProc, L"sysparamstest"); hWnd1 = CreateWindowW(L"sysparamstest", L"sysparamstest", WS_OVERLAPPEDWINDOW, 20, 20, 300, 300, NULL, NULL, 0, NULL); diff --git a/modules/rostests/apitests/user32/TrackMouseEvent.c b/modules/rostests/apitests/user32/TrackMouseEvent.c index 60244898422..61cef302c05 100644 --- a/modules/rostests/apitests/user32/TrackMouseEvent.c +++ b/modules/rostests/apitests/user32/TrackMouseEvent.c @@ -104,7 +104,7 @@ static void create_test_windows() hMouseHook = SetWindowsHookExW(WH_MOUSE, MouseHookProc, GetModuleHandleW( NULL ), GetCurrentThreadId()); ok(hMouseHook!=NULL,"failed to set hook\n"); ok(hMouseHookLL!=NULL,"failed to set hook\n"); - + RegisterSimpleClass(TmeTestProc, L"testClass"); hWnd1 = CreateWindowW(L"testClass", L"test", WS_OVERLAPPEDWINDOW, @@ -190,7 +190,7 @@ MSG_ENTRY mouseleave2to1_chain[]={{0, WH_MOUSE_LL, HOOK, WM_MOUSEMOVE}, {1, WM_SETCURSOR}, {1, WM_MOUSEMOVE, POST}, {2, WM_MOUSELEAVE, POST}, - {0,0}}; + {0,0}}; /* the mouse leaves hwnd2 and moves to hwnd3 */ MSG_ENTRY mouseleave2to3_chain[]={{0, WH_MOUSE_LL, HOOK, WM_MOUSEMOVE}, @@ -371,15 +371,15 @@ void Test_TrackMouseEvent() FLUSH_MESSAGES(QS_TIMER|QS_MOUSEMOVE, 0); /* the loop drops WM_SYSTIMER */ EXPECT_TME_FLAGS(hWnd3, TME_HOVER|TME_LEAVE); /* TME_HOVER is still active */ COMPARE_CACHE(mousehover3_droptimer_chain); /* we get no WM_MOUSEHOVER */ - ignore_timer = FALSE; - + ignore_timer = FALSE; + /* the mouse hovers hwnd3 and mouse message is dropped by WH_MOUSE_LL */ ignore_mousell = TRUE; MOVE_CURSOR(402,402); Sleep(100); EXPECT_TME_FLAGS(hWnd3, TME_HOVER|TME_LEAVE); FLUSH_MESSAGES(QS_TIMER, QS_MOUSEMOVE); /* WH_MOUSE_LL drops WM_MOUSEMOVE */ - EXPECT_TME_FLAGS(hWnd3, TME_LEAVE); + EXPECT_TME_FLAGS(hWnd3, TME_LEAVE); COMPARE_CACHE(mousehover3_dropmousell_chain); /* we get WM_MOUSEHOVER normaly */ ignore_mousell = FALSE; @@ -393,7 +393,7 @@ void Test_TrackMouseEvent() Sleep(100); EXPECT_TME_FLAGS(hWnd3, TME_HOVER|TME_LEAVE); FLUSH_MESSAGES(QS_TIMER|QS_MOUSEMOVE, 0); /* WH_MOUSE drops WM_MOUSEMOVE */ - EXPECT_TME_FLAGS(hWnd3, TME_LEAVE); + EXPECT_TME_FLAGS(hWnd3, TME_LEAVE); COMPARE_CACHE(mousehover3_dropmouse_chain); /* we get WM_MOUSEHOVER normaly */ ignore_mouse = FALSE; diff --git a/modules/rostests/apitests/uxtheme/DrawThemeParentBackground.c b/modules/rostests/apitests/uxtheme/DrawThemeParentBackground.c index aef329fafef..e7603b52fbd 100644 --- a/modules/rostests/apitests/uxtheme/DrawThemeParentBackground.c +++ b/modules/rostests/apitests/uxtheme/DrawThemeParentBackground.c @@ -25,7 +25,7 @@ static int get_iwnd(HWND hWnd) static LRESULT CALLBACK TestProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) { int iwnd = get_iwnd(hwnd); - + if(message > WM_USER || !iwnd || message == WM_GETICON) return DefWindowProc(hwnd, message, wParam, lParam); @@ -99,9 +99,9 @@ void Test_Messages() DrawThemeParentBackground(hWnd1, hdc, NULL); FlushMessages(); COMPARE_CACHE(empty_chain); - + memset(&rc, 0, sizeof(rc)); - + DrawThemeParentBackground(hWnd2, hdc, &rc); FlushMessages(); COMPARE_CACHE(draw_parent_chain); diff --git a/modules/rostests/apitests/uxtheme/SetThemeAppProperties.c b/modules/rostests/apitests/uxtheme/SetThemeAppProperties.c index 35288ca1082..68a84d1f735 100644 --- a/modules/rostests/apitests/uxtheme/SetThemeAppProperties.c +++ b/modules/rostests/apitests/uxtheme/SetThemeAppProperties.c @@ -4,7 +4,7 @@ * PURPOSE: Test for SetThemeAppProperties * PROGRAMMERS: Giannis Adamopoulos */ - + #include #include #include @@ -25,16 +25,16 @@ START_TEST(SetThemeAppProperties) } SetLastError(0xdeadbeef); - + bThemeActive = IsAppThemed(); ok (bThemeActive == FALSE, "\n"); ok( GetLastError() == 0, "Expected 0 last error, got 0x%lx\n", GetLastError()); - SetLastError(0xdeadbeef); + SetLastError(0xdeadbeef); hTheme = OpenThemeData(NULL, L"BUTTON"); ok (hTheme == NULL, "\n"); ok( GetLastError() == E_PROP_ID_UNSUPPORTED, "Expected E_PROP_ID_UNSUPPORTED last error, got 0x%lx\n", GetLastError()); - + hWnd = CreateWindowExA(0, "static", "", WS_POPUP, 0,0,100,100,0, 0, 0, NULL); ok (hWnd != NULL, "\n"); @@ -57,7 +57,7 @@ START_TEST(SetThemeAppProperties) bThemeActive = IsAppThemed(); ok (bThemeActive == TRUE, "\n"); - + SetLastError(0xdeadbeef); hTheme = OpenThemeData(NULL, L"BUTTON"); ok (hTheme == NULL, "\n"); @@ -71,7 +71,7 @@ START_TEST(SetThemeAppProperties) hTheme = OpenThemeDataEx (NULL, L"BUTTON", 0); ok (hTheme == NULL, "\n"); ok( GetLastError() == E_PROP_ID_UNSUPPORTED, "Expected E_PROP_ID_UNSUPPORTED last error, got 0x%lx\n", GetLastError()); - + SetThemeAppProperties(STAP_ALLOW_CONTROLS); SetLastError(0xdeadbeef); diff --git a/modules/rostests/apitests/win32nt/w32knapi.c b/modules/rostests/apitests/win32nt/w32knapi.c index 7f6dc6e201a..037d88ee2f7 100644 --- a/modules/rostests/apitests/win32nt/w32knapi.c +++ b/modules/rostests/apitests/win32nt/w32knapi.c @@ -25,7 +25,7 @@ IsHandleValid(HGDIOBJ hobj) { return FALSE; } - + return TRUE; } diff --git a/modules/rostests/apitests/win32u/win32u_2k3sp2/main.c b/modules/rostests/apitests/win32u/win32u_2k3sp2/main.c index f1ed9aa79e7..064044b59af 100644 --- a/modules/rostests/apitests/win32u/win32u_2k3sp2/main.c +++ b/modules/rostests/apitests/win32u/win32u_2k3sp2/main.c @@ -14,15 +14,15 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) // attach to process // return FALSE to fail DLL load break; - + case DLL_PROCESS_DETACH: // detach from process break; - + case DLL_THREAD_ATTACH: // attach to thread break; - + case DLL_THREAD_DETACH: // detach from thread break; diff --git a/modules/rostests/apitests/win32u/win32u_vista/main.c b/modules/rostests/apitests/win32u/win32u_vista/main.c index f1ed9aa79e7..064044b59af 100644 --- a/modules/rostests/apitests/win32u/win32u_vista/main.c +++ b/modules/rostests/apitests/win32u/win32u_vista/main.c @@ -14,15 +14,15 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) // attach to process // return FALSE to fail DLL load break; - + case DLL_PROCESS_DETACH: // detach from process break; - + case DLL_THREAD_ATTACH: // attach to thread break; - + case DLL_THREAD_DETACH: // detach from thread break; diff --git a/modules/rostests/apitests/win32u/win32u_xpsp2/CMakeLists.txt b/modules/rostests/apitests/win32u/win32u_xpsp2/CMakeLists.txt index 6a84838435d..457d5c1868a 100644 --- a/modules/rostests/apitests/win32u/win32u_xpsp2/CMakeLists.txt +++ b/modules/rostests/apitests/win32u/win32u_xpsp2/CMakeLists.txt @@ -2,7 +2,7 @@ spec2def(win32u_xpsp2.dll win32u_xpsp2.spec ADD_IMPORTLIB) add_asm_files(win32u_xpsp2_asm sys-stubs.S) -add_library(win32u_xpsp2 MODULE +add_library(win32u_xpsp2 MODULE main.c ${win32u_xpsp2_asm} ${CMAKE_CURRENT_BINARY_DIR}/win32u_xpsp2.def) diff --git a/modules/rostests/apitests/winhttp/WinHttpOpen.c b/modules/rostests/apitests/winhttp/WinHttpOpen.c index 36cb380467a..0b973ec67f7 100644 --- a/modules/rostests/apitests/winhttp/WinHttpOpen.c +++ b/modules/rostests/apitests/winhttp/WinHttpOpen.c @@ -87,7 +87,7 @@ START_TEST(WinHttpOpen) HMODULE ModuleHandle; HINTERNET InternetHandle; BOOL Success; - + ok(!IsWinsockLoaded(), "Winsock loaded on startup\n"); ok(!IsWinsockInitialized(), "Winsock initialized on startup\n"); ok(!IsWininetLoaded(), "Wininet loaded on startup\n"); diff --git a/modules/rostests/apitests/wininet/InternetOpen.c b/modules/rostests/apitests/wininet/InternetOpen.c index 581a655b625..ee2f2f0f127 100644 --- a/modules/rostests/apitests/wininet/InternetOpen.c +++ b/modules/rostests/apitests/wininet/InternetOpen.c @@ -80,7 +80,7 @@ START_TEST(InternetOpen) HMODULE ModuleHandle; HINTERNET InternetHandle; BOOL Success; - + ok(!IsWinsockLoaded(), "Winsock loaded on startup\n"); ok(!IsWinsockInitialized(), "Winsock initialized on startup\n"); diff --git a/modules/rostests/apitests/winprint/main.c b/modules/rostests/apitests/winprint/main.c index 17f6af40bff..03176a2fb69 100644 --- a/modules/rostests/apitests/winprint/main.c +++ b/modules/rostests/apitests/winprint/main.c @@ -57,6 +57,6 @@ GetWinprintFunc(const char* FunctionName) skip("GetProcAddress failed for %s with error %lu!\n", FunctionName, GetLastError()); return NULL; } - + return pFunc; } diff --git a/modules/rostests/apitests/winspool/IsValidDevmode.c b/modules/rostests/apitests/winspool/IsValidDevmode.c index 8e521f74991..2c234bb5cb0 100644 --- a/modules/rostests/apitests/winspool/IsValidDevmode.c +++ b/modules/rostests/apitests/winspool/IsValidDevmode.c @@ -227,7 +227,7 @@ START_TEST(IsValidDevmodeW) SetLastError(0xDEADBEEF); ok(IsValidDevmodeW(&DevMode, sizeof(DEVMODEW) + 1), "IsValidDevmodeW returns FALSE!\n"); ok(GetLastError() == 0xDEADBEEF, "IsValidDevmodeW returns error %lu!\n", GetLastError()); - + // The DevmodeSize parameter may be larger than dmSize, but not the other way round! ZeroMemory(&DevMode, sizeof(DEVMODEW)); DevMode.dmSize = sizeof(DEVMODEW); diff --git a/modules/rostests/apitests/wlanapi/wlanapi.c b/modules/rostests/apitests/wlanapi/wlanapi.c index e9ea3f00465..ed66247251a 100644 --- a/modules/rostests/apitests/wlanapi/wlanapi.c +++ b/modules/rostests/apitests/wlanapi/wlanapi.c @@ -75,15 +75,15 @@ static void WlanConnect_test(void) { DWORD ret; WLAN_CONNECTION_PARAMETERS pConnectParams; - + /* invalid pReserved */ ret = WlanConnect((HANDLE) -1, &InterfaceGuid, &pConnectParams, (PVOID) 1); ok(ret == ERROR_INVALID_PARAMETER, "expected failure\n"); - + /* invalid InterfaceGuid */ ret = WlanConnect((HANDLE) -1, NULL, &pConnectParams, NULL); ok(ret == ERROR_INVALID_PARAMETER, "expected failure\n"); - + /* invalid hClientHandle */ ret = WlanConnect(NULL, &InterfaceGuid, &pConnectParams, NULL); ok(ret == ERROR_INVALID_PARAMETER, "expected failure\n"); @@ -96,11 +96,11 @@ static void WlanConnect_test(void) static void WlanDisconnect_test(void) { DWORD ret; - + /* invalid pReserved */ ret = WlanDisconnect((HANDLE) -1, &InterfaceGuid, (PVOID) 1); ok(ret == ERROR_INVALID_PARAMETER, "expected failure\n"); - + /* invalid InterfaceGuid */ ret = WlanDisconnect((HANDLE) -1, NULL, NULL); ok(ret == ERROR_INVALID_PARAMETER, "expected failure\n"); @@ -115,11 +115,11 @@ static void WlanScan_test(void) DWORD ret; DOT11_SSID Ssid; WLAN_RAW_DATA RawData; - + /* invalid pReserved */ ret = WlanScan((HANDLE) -1, &InterfaceGuid, &Ssid, &RawData, (PVOID) 1); ok(ret == ERROR_INVALID_PARAMETER, "expected failure\n"); - + /* invalid InterfaceGuid */ ret = WlanScan((HANDLE) -1, NULL, &Ssid, &RawData, NULL); ok(ret == ERROR_INVALID_PARAMETER, "expected failure\n"); @@ -147,7 +147,7 @@ static void WlanRenameProfile_test(void) /* invalid strNewProfileName */ ret = WlanRenameProfile((HANDLE) -1, &InterfaceGuid, L"test", NULL, NULL); - ok(ret == ERROR_INVALID_PARAMETER, "expected failure\n"); + ok(ret == ERROR_INVALID_PARAMETER, "expected failure\n"); } static void WlanDeleteProfile_test(void) @@ -196,7 +196,7 @@ static void WlanEnumInterfaces_test(void) /* invalid pInterfaceList */ ret = WlanEnumInterfaces((HANDLE) -1, NULL, NULL); - ok(ret == ERROR_INVALID_PARAMETER, "expected failure\n"); + ok(ret == ERROR_INVALID_PARAMETER, "expected failure\n"); } static void WlanGetInterfaceCapability_test(void) @@ -211,10 +211,10 @@ static void WlanGetInterfaceCapability_test(void) /* invalid InterfaceGuid */ ret = WlanGetInterfaceCapability((HANDLE) -1, NULL, NULL, &pInterfaceCapability); ok(ret == ERROR_INVALID_PARAMETER, "expected failure\n"); - + /* invalid pInterfaceCapability */ ret = WlanGetInterfaceCapability((HANDLE) -1, &InterfaceGuid, NULL, NULL); - ok(ret == ERROR_INVALID_PARAMETER, "expected failure\n"); + ok(ret == ERROR_INVALID_PARAMETER, "expected failure\n"); } diff --git a/modules/rostests/apitests/ws2_32/WSAAsync.c b/modules/rostests/apitests/ws2_32/WSAAsync.c index 0850d8fe321..9c47d45b130 100644 --- a/modules/rostests/apitests/ws2_32/WSAAsync.c +++ b/modules/rostests/apitests/ws2_32/WSAAsync.c @@ -2,7 +2,7 @@ * PROJECT: ReactOS api tests * LICENSE: GPL - See COPYING in the top level directory * PURPOSE: Test for WSAAsync -* PROGRAMMERS: Miroslav Mastny +* PROGRAMMERS: Miroslav Mastny */ #include "ws2_32.h" @@ -146,7 +146,7 @@ START_TEST(WSAAsync) dwFlags |= FD_ACCEPT; } } - + if ((WsaNetworkEvents.lNetworkEvents & FD_CONNECT) != 0) {// client connected trace("Event FD_CONNECT...\n"); diff --git a/modules/rostests/apitests/ws2_32/WSAIoctl.c b/modules/rostests/apitests/ws2_32/WSAIoctl.c index 5f98c017b16..f4602a8a01e 100644 --- a/modules/rostests/apitests/ws2_32/WSAIoctl.c +++ b/modules/rostests/apitests/ws2_32/WSAIoctl.c @@ -2,7 +2,7 @@ * PROJECT: ReactOS api tests * LICENSE: GPL - See COPYING in the top level directory * PURPOSE: Test for WSHIoctl: - * - SIO_GET_INTERFACE_LIST + * - SIO_GET_INTERFACE_LIST * PROGRAMMERS: Andreas Maier */ @@ -38,7 +38,7 @@ BOOL Test_WSAIoctl_InitTest( pTable = (PMIB_IPADDRTABLE)malloc(TableSize); *ppTable = pTable; ret = GetIpAddrTable(pTable, &TableSize, TRUE); - if (ret != NO_ERROR) + if (ret != NO_ERROR) { skip("GetIpAddrTable failed with %ld. Abort Testing.\n", ret); return FALSE; @@ -78,7 +78,7 @@ void Test_WSAIoctl_GetInterfaceList() PMIB_IPADDRTABLE pTable = NULL; PMIB_IPADDRROW pRow; - /* Get PMIB_IPADDRTABE - these results we should get from wshtcpip.dll too. */ + /* Get PMIB_IPADDRTABE - these results we should get from wshtcpip.dll too. */ /* pTable is allocated by Test_WSAIoctl_InitTest! */ if (!Test_WSAIoctl_InitTest(&pTable)) goto cleanup; @@ -113,12 +113,12 @@ void Test_WSAIoctl_GetInterfaceList() HeapFree(GetProcessHeap(), 0, buf); buf = NULL; - /* Do the Ioctl - In most cases no loop is done. - Only if WSAIoctl fails with WSAEFAULT (buffer to small) we need to retry with a + /* Do the Ioctl + In most cases no loop is done. + Only if WSAIoctl fails with WSAEFAULT (buffer to small) we need to retry with a larger buffer */ i1 = 0; - while (TRUE) + while (TRUE) { if (buf != NULL) { @@ -155,8 +155,8 @@ void Test_WSAIoctl_GetInterfaceList() /* Calculate how many INTERFACE_INFO we got */ infoCount = BytesReturned / sizeof(INTERFACE_INFO); - ok(infoCount == pTable->dwNumEntries, - "Wrong count of entries! Got %ld, expected %ld.\n", pTable->dwNumEntries, infoCount); + ok(infoCount == pTable->dwNumEntries, + "Wrong count of entries! Got %ld, expected %ld.\n", pTable->dwNumEntries, infoCount); if (winetest_debug >= 2) { @@ -195,7 +195,7 @@ void Test_WSAIoctl_GetInterfaceList() } /* iiFlags - * Don't know if this value is fix for SIO_GET_INTERFACE_LIST! */ + * Don't know if this value is fix for SIO_GET_INTERFACE_LIST! */ iiFlagsExpected = IFF_BROADCAST | IFF_MULTICAST; if ((pRow->wType & MIB_IPADDR_DISCONNECTED) == 0) iiFlagsExpected |= IFF_UP; @@ -205,10 +205,10 @@ void Test_WSAIoctl_GetInterfaceList() /* on Windows 7 loopback has broadcast flag cleared */ //iiFlagsExpected &= ~IFF_BROADCAST; } - + ok_hex(ifInfo[i1].iiFlags, iiFlagsExpected); ok_hex(ifInfo[i1].iiAddress.AddressIn.sin_addr.s_addr, pRow->dwAddr); - // dwBCastAddr is not the "real" Broadcast-Address. + // dwBCastAddr is not the "real" Broadcast-Address. BCastAddr = (pRow->dwBCastAddr == 1 && (iiFlagsExpected & IFF_BROADCAST) != 0) ? 0xFFFFFFFF : 0x0; ok_hex(ifInfo[i1].iiBroadcastAddress.AddressIn.sin_addr.s_addr, BCastAddr); ok_hex(ifInfo[i1].iiNetmask.AddressIn.sin_addr.s_addr, pRow->dwMask); diff --git a/modules/rostests/apitests/ws2_32/close.c b/modules/rostests/apitests/ws2_32/close.c index 8701a3cb733..898e638493a 100644 --- a/modules/rostests/apitests/ws2_32/close.c +++ b/modules/rostests/apitests/ws2_32/close.c @@ -22,7 +22,7 @@ void Test_CloseDuplicatedSocket() skip("socket failed %d. Aborting test.\n", WSAGetLastError()); return; } - + err = sendto(sck, szBuf, _countof(szBuf), 0, (struct sockaddr *)&to, sizeof(to)); ok(err == _countof(szBuf), "sendto err = %d %d\n", err, WSAGetLastError()); diff --git a/modules/rostests/apitests/ws2_32/helpers.c b/modules/rostests/apitests/ws2_32/helpers.c index 0bc985a3fac..2ed786bec1c 100644 --- a/modules/rostests/apitests/ws2_32/helpers.c +++ b/modules/rostests/apitests/ws2_32/helpers.c @@ -38,7 +38,7 @@ int ConnectToReactOSWebsite(SOCKET sck) sa.sin_port = htons(80); SCKTEST(connect(sck, (struct sockaddr *)&sa, sizeof(sa))); - + return 1; } @@ -60,6 +60,6 @@ int GetRequestAndWait(SOCKET sck) FD_SET(sck, &readable); SCKTEST(select(0, &readable, NULL, NULL, NULL)); - + return 1; } diff --git a/modules/rostests/apitests/ws2_32/nonblocking.c b/modules/rostests/apitests/ws2_32/nonblocking.c index 31db502f231..be845f39950 100644 --- a/modules/rostests/apitests/ws2_32/nonblocking.c +++ b/modules/rostests/apitests/ws2_32/nonblocking.c @@ -2,7 +2,7 @@ * PROJECT: ReactOS api tests * LICENSE: GPL - See COPYING in the top level directory * PURPOSE: Test for nonblocking sockets -* PROGRAMMERS: Peter Hater +* PROGRAMMERS: Peter Hater */ #include "ws2_32.h" diff --git a/modules/rostests/dibtests/bltrop/bltrop.c b/modules/rostests/dibtests/bltrop/bltrop.c index 8b73cf9018a..21777def1cc 100644 --- a/modules/rostests/dibtests/bltrop/bltrop.c +++ b/modules/rostests/dibtests/bltrop/bltrop.c @@ -11,7 +11,7 @@ HINSTANCE hInst; TCHAR szWindowClass[] = _T("testclass"); -static LRESULT CALLBACK +static LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) { static HBITMAP hBmpTest; @@ -65,7 +65,7 @@ WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) DeleteObject(brush); brush = CreateHatchBrush(HS_VERTICAL, RGB(255,0,0)); - SelectObject(hdc, brush); + SelectObject(hdc, brush); PatBlt(hdc, 0, 4*l, 30, l, PATCOPY); DeleteObject(brush); @@ -73,7 +73,7 @@ WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) SelectObject(hdc, brush); PatBlt(hdc, 0, 5*l, 30, l, PATCOPY); DeleteObject(brush); - + /* set up a second brush */ brush2 = CreateHatchBrush(HS_VERTICAL, RGB(127,127,127)); diff --git a/modules/rostests/dibtests/vbltest/vbltest.c b/modules/rostests/dibtests/vbltest/vbltest.c index 0e2bb25fe27..42ae58c6c1e 100644 --- a/modules/rostests/dibtests/vbltest/vbltest.c +++ b/modules/rostests/dibtests/vbltest/vbltest.c @@ -1,7 +1,7 @@ /* * Tests various blit and blend operations with different src * bit depths and scaling where possbile. - * + * * Created by Gregor Schneider , November 2008 */ @@ -26,7 +26,7 @@ BOOL WINAPI GdiTransparentBlt( HINSTANCE hInst; TCHAR szWindowClass[] = _T("testclass"); -static LRESULT CALLBACK +static LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) { static HBITMAP hbmList[CURRENT_BMPS]; @@ -65,7 +65,7 @@ WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) y = 0; SelectObject(hdcMem, hbmList[i]); GetObject(hbmList[i], sizeof(BITMAP), &bitmap); - + /* bit blt */ BitBlt(hdc, x, y, bitmap.bmWidth, bitmap.bmHeight, hdcMem, 0, 0, SRCCOPY); y += bitmap.bmHeight + OFFSET; @@ -85,7 +85,7 @@ WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) /* transparent blt, transparency: grey, scaled */ GdiTransparentBlt(hdc, x, y, bitmap.bmWidth*SCALE, bitmap.bmHeight*SCALE, hdcMem, 0, 0, bitmap.bmWidth, bitmap.bmHeight, 128*256*256+128*256+128); y += bitmap.bmHeight*SCALE + OFFSET; - + /* alpha blend, org size */ GdiAlphaBlend(hdc, x, y, bitmap.bmWidth, bitmap.bmHeight, hdcMem, 0, 0, bitmap.bmWidth, bitmap.bmHeight, bfunc); y += bitmap.bmHeight + OFFSET; diff --git a/modules/rostests/dxtest/win32kdxtest/NtGdiDdQueryDirectDrawObject.c b/modules/rostests/dxtest/win32kdxtest/NtGdiDdQueryDirectDrawObject.c index c0e4886d745..bdc426235a0 100644 --- a/modules/rostests/dxtest/win32kdxtest/NtGdiDdQueryDirectDrawObject.c +++ b/modules/rostests/dxtest/win32kdxtest/NtGdiDdQueryDirectDrawObject.c @@ -213,8 +213,8 @@ test_NtGdiDdQueryDirectDrawObject( HANDLE hDirectDrawLocal) testing_noteq(retValue,FALSE,fails,"39. NtGdiDdQueryDirectDrawObject(hDirectDrawLocal, pHalInfo, pCallBackFlags, puD3dCallbacks, NULL, ...);\0"); testing_eq(pHalInfo,NULL,fails,"40. NtGdiDdQueryDirectDrawObject(hDirectDrawLocal, pHalInfo, pCallBackFlags, puD3dCallbacks, NULL, ...);\0"); testing_eq(pCallBackFlags,NULL,fails,"41. NtGdiDdQueryDirectDrawObject(hDirectDrawLocal, pHalInfo, pCallBackFlags, puD3dCallbacks, NULL, ...);\0"); - - + + testing_noteq(puD3dCallbacks->dwSize,sizeof(D3DNTHAL_CALLBACKS),fails,"42. NtGdiDdQueryDirectDrawObject(hDirectDrawLocal, pHalInfo, pCallBackFlags, puD3dCallbacks, NULL, ...);\0"); testing_noteq(puD3dDriverData,NULL,fails,"43. NtGdiDdQueryDirectDrawObject(hDirectDrawLocal, pHalInfo, pCallBackFlags, puD3dCallbacks, NULL, ...);\0"); @@ -364,14 +364,14 @@ test_NtGdiDdQueryDirectDrawObject( HANDLE hDirectDrawLocal) puvmList, puNumFourCC, puFourCC); - - - + + + testing_noteq(retValue,FALSE,fails,"69. NtGdiDdQueryDirectDrawObject(hDirectDrawLocal, pHalInfo, pCallBackFlags, puD3dCallbacks, puD3dDriverData, puD3dBufferCallbacks, puD3dTextureFormats, NULL, ...);\0"); testing_eq(pHalInfo,NULL,fails,"70. NtGdiDdQueryDirectDrawObject(hDirectDrawLocal, pHalInfo, pCallBackFlags, puD3dCallbacks, puD3dDriverData, puD3dBufferCallbacks, puD3dTextureFormats, NULL, ...);\0"); testing_eq(pCallBackFlags,NULL,fails,"71. NtGdiDdQueryDirectDrawObject(hDirectDrawLocal, pHalInfo, pCallBackFlags, puD3dCallbacks, puD3dDriverData, puD3dBufferCallbacks, puD3dTextureFormats, NULL, ...);\0"); - + /* does not work nice in xp */ // testing_noteq(puD3dCallbacks->dwSize,sizeof(D3DNTHAL_CALLBACKS),fails,"72. NtGdiDdQueryDirectDrawObject(hDirectDrawLocal, pHalInfo, pCallBackFlags, puD3dCallbacks, puD3dDriverData, puD3dBufferCallbacks, puD3dTextureFormats, NULL, ...);\0"); @@ -391,7 +391,7 @@ test_NtGdiDdQueryDirectDrawObject( HANDLE hDirectDrawLocal) // if (puD3dBufferCallbacks) { - + testing_noteq(puD3dBufferCallbacks->dwSize,sizeof(DD_D3DBUFCALLBACKS),fails,"76. NtGdiDdQueryDirectDrawObject(hDirectDrawLocal, pHalInfo, pCallBackFlags, puD3dCallbacks, puD3dDriverData, puD3dBufferCallbacks, puD3dTextureFormats, NULL...);\0"); } diff --git a/modules/rostests/dxtest/win32kdxtest/dump.c b/modules/rostests/dxtest/win32kdxtest/dump.c index 9598030d2a8..5bdbbd58879 100644 --- a/modules/rostests/dxtest/win32kdxtest/dump.c +++ b/modules/rostests/dxtest/win32kdxtest/dump.c @@ -197,7 +197,7 @@ dump_halinfo(DD_HALINFO *pHalInfo, char *text) int t; UINT flag; INT count=0; - + printf("DD_HALINFO Version NT 2000/XP/2003 found \n"); printf(" pHalInfo->dwSize : 0x%08lx\n",(long)pHalInfo->dwSize); @@ -350,7 +350,7 @@ dump_halinfo(DD_HALINFO *pHalInfo, char *text) printf(" pHalInfo->ddCaps.dwFXAlphaCaps : 0x%08lx\n",pHalInfo->ddCaps.dwFXAlphaCaps); printf(" pHalInfo->ddCaps.dwPalCaps : 0x%08lx\n",pHalInfo->ddCaps.dwPalCaps); - printf(" pHalInfo->ddCaps.dwSVCaps : "); + printf(" pHalInfo->ddCaps.dwSVCaps : "); flag = pHalInfo->ddCaps.dwSVCaps; count = 0; checkflag(flag,DDSVCAPS_ENIGMA,"DDSVCAPS_ENIGMA"); @@ -423,10 +423,10 @@ dump_halinfo(DD_HALINFO *pHalInfo, char *text) printf(" pHalInfo->ddCaps.dwReserved1 : 0x%08lx\n",pHalInfo->ddCaps.dwReserved1); printf(" pHalInfo->ddCaps.dwReserved2 : 0x%08lx\n",pHalInfo->ddCaps.dwReserved2); printf(" pHalInfo->ddCaps.dwReserved3 : 0x%08lx\n",pHalInfo->ddCaps.dwReserved3); - + printf(" pHalInfo->ddCaps.dwSVBCaps : "); flag = pHalInfo->ddCaps.dwSVBCaps; - count = 0; + count = 0; checkflag(flag,DDCAPS_3D,"DDCAPS_3D"); checkflag(flag,DDCAPS_ALIGNBOUNDARYDEST,"DDCAPS_ALIGNBOUNDARYDEST"); checkflag(flag,DDCAPS_ALIGNBOUNDARYSRC,"DDCAPS_ALIGNBOUNDARYSRC"); @@ -470,7 +470,7 @@ dump_halinfo(DD_HALINFO *pHalInfo, char *text) printf(" pHalInfo->ddCaps.dwVSBCaps : "); flag = pHalInfo->ddCaps.dwVSBCaps; - count = 0; + count = 0; checkflag(flag,DDCAPS_3D,"DDCAPS_3D"); checkflag(flag,DDCAPS_ALIGNBOUNDARYDEST,"DDCAPS_ALIGNBOUNDARYDEST"); checkflag(flag,DDCAPS_ALIGNBOUNDARYSRC,"DDCAPS_ALIGNBOUNDARYSRC"); @@ -625,7 +625,7 @@ dump_D3dDriverData(D3DNTHAL_GLOBALDRIVERDATA *puD3dDriverData, char *text) checkflag(flag,D3DDD_TRANSFORMCAPS,"D3DDD_TRANSFORMCAPS"); checkflag(flag,D3DDD_TRICAPS,"D3DDD_TRICAPS"); endcheckflag(flag,"puD3dDriverData->hwCaps.dwFlags "); - + printf(" puD3dDriverData->hwCaps.dcmColorModel : 0x%08lx\n",(long)puD3dDriverData->hwCaps.dcmColorModel); printf(" puD3dDriverData->hwCaps.dwDevCaps : "); @@ -651,7 +651,7 @@ dump_D3dDriverData(D3DNTHAL_GLOBALDRIVERDATA *puD3dDriverData, char *text) checkflag(flag,D3DDEVCAPS_TEXTURESYSTEMMEMORY,"D3DDEVCAPS_TEXTURESYSTEMMEMORY"); checkflag(flag,D3DDEVCAPS_TEXTUREVIDEOMEMORY,"D3DDEVCAPS_TEXTUREVIDEOMEMORY"); endcheckflag(flag,"puD3dDriverData->hwCaps.dwDevCaps"); - + if (puD3dDriverData->hwCaps.dtcTransformCaps.dwSize == sizeof(D3DTRANSFORMCAPS)) { printf(" puD3dDriverData->hwCaps.dtcTransformCaps.dwSize : 0x%08lx\n",(long) puD3dDriverData->hwCaps.dtcTransformCaps.dwSize); @@ -660,7 +660,7 @@ dump_D3dDriverData(D3DNTHAL_GLOBALDRIVERDATA *puD3dDriverData, char *text) count = 0; flag = puD3dDriverData->hwCaps.dtcTransformCaps.dwCaps; checkflag(flag,D3DTRANSFORMCAPS_CLIP,"D3DTRANSFORMCAPS_CLIP"); - endcheckflag(flag,"puD3dDriverData->hwCaps.dtcTransformCaps.dwCaps"); + endcheckflag(flag,"puD3dDriverData->hwCaps.dtcTransformCaps.dwCaps"); } else { @@ -680,8 +680,8 @@ dump_D3dDriverData(D3DNTHAL_GLOBALDRIVERDATA *puD3dDriverData, char *text) checkflag(flag,D3DLIGHTCAPS_PARALLELPOINT,"D3DLIGHTCAPS_PARALLELPOINT"); checkflag(flag,D3DLIGHTCAPS_POINT,"D3DLIGHTCAPS_POINT"); checkflag(flag,D3DLIGHTCAPS_SPOT,"D3DLIGHTCAPS_SPOT"); - endcheckflag(flag,"puD3dDriverData->hwCaps.dlcLightingCaps.dwCaps"); - + endcheckflag(flag,"puD3dDriverData->hwCaps.dlcLightingCaps.dwCaps"); + printf(" puD3dDriverData->hwCaps.dlcLightingCaps.dwLightingModel : "); count = 0; @@ -689,8 +689,8 @@ dump_D3dDriverData(D3DNTHAL_GLOBALDRIVERDATA *puD3dDriverData, char *text) checkflag(flag,D3DLIGHTINGMODEL_MONO,"D3DLIGHTINGMODEL_MONO"); checkflag(flag,D3DLIGHTINGMODEL_RGB,"D3DLIGHTINGMODEL_RGB"); - endcheckflag(flag,"puD3dDriverData->hwCaps.dlcLightingCaps.dwLightingModel"); - + endcheckflag(flag,"puD3dDriverData->hwCaps.dlcLightingCaps.dwLightingModel"); + printf(" puD3dDriverData->hwCaps.dlcLightingCaps.dwNumLights : 0x%08lx\n",(long)puD3dDriverData->hwCaps.dlcLightingCaps.dwNumLights); } else @@ -713,7 +713,7 @@ dump_D3dDriverData(D3DNTHAL_GLOBALDRIVERDATA *puD3dDriverData, char *text) checkflag(flag,D3DPMISCCAPS_LINEPATTERNREP,"D3DPMISCCAPS_LINEPATTERNREP"); checkflag(flag,D3DPMISCCAPS_MASKPLANES,"D3DPMISCCAPS_MASKPLANES"); checkflag(flag,D3DPMISCCAPS_MASKZ,"D3DPMISCCAPS_MASKZ"); - endcheckflag(flag,"puD3dDriverData->hwCaps.dpcLineCaps.dwMiscCaps"); + endcheckflag(flag,"puD3dDriverData->hwCaps.dpcLineCaps.dwMiscCaps"); printf(" puD3dDriverData->hwCaps.dpcLineCaps.dwRasterCaps : "); count = 0; @@ -738,8 +738,8 @@ dump_D3dDriverData(D3DNTHAL_GLOBALDRIVERDATA *puD3dDriverData, char *text) checkflag(flag,D3DPRASTERCAPS_ZBIAS,"D3DPRASTERCAPS_ZBIAS"); checkflag(flag,D3DPRASTERCAPS_ZBUFFERLESSHSR,"D3DPRASTERCAPS_ZBUFFERLESSHSR"); checkflag(flag,D3DPRASTERCAPS_ZFOG,"D3DPRASTERCAPS_ZFOG"); - checkflag(flag,D3DPRASTERCAPS_ZTEST,"D3DPRASTERCAPS_ZTEST"); - endcheckflag(flag,"puD3dDriverData->hwCaps.dpcLineCaps.dwRasterCaps"); + checkflag(flag,D3DPRASTERCAPS_ZTEST,"D3DPRASTERCAPS_ZTEST"); + endcheckflag(flag,"puD3dDriverData->hwCaps.dpcLineCaps.dwRasterCaps"); printf(" puD3dDriverData->hwCaps.dpcLineCaps.dwZCmpCaps : "); count = 0; @@ -751,9 +751,9 @@ dump_D3dDriverData(D3DNTHAL_GLOBALDRIVERDATA *puD3dDriverData, char *text) checkflag(flag,D3DPCMPCAPS_LESS,"D3DPCMPCAPS_LESS"); checkflag(flag,D3DPCMPCAPS_LESSEQUAL,"D3DPCMPCAPS_LESSEQUAL"); checkflag(flag,D3DPCMPCAPS_NEVER,"D3DPCMPCAPS_NEVER"); - checkflag(flag,D3DPCMPCAPS_NOTEQUAL,"D3DPCMPCAPS_NOTEQUAL"); - endcheckflag(flag,"puD3dDriverData->hwCaps.dpcLineCaps.dwZCmpCaps "); - + checkflag(flag,D3DPCMPCAPS_NOTEQUAL,"D3DPCMPCAPS_NOTEQUAL"); + endcheckflag(flag,"puD3dDriverData->hwCaps.dpcLineCaps.dwZCmpCaps "); + printf(" puD3dDriverData->hwCaps.dpcLineCaps.dwSrcBlendCaps : "); count = 0; flag = puD3dDriverData->hwCaps.dpcLineCaps.dwSrcBlendCaps; @@ -764,13 +764,13 @@ dump_D3dDriverData(D3DNTHAL_GLOBALDRIVERDATA *puD3dDriverData, char *text) checkflag(flag,D3DPBLENDCAPS_INVDESTALPHA,"D3DPBLENDCAPS_INVDESTALPHA"); checkflag(flag,D3DPBLENDCAPS_INVDESTCOLOR,"D3DPBLENDCAPS_INVDESTCOLOR"); checkflag(flag,D3DPBLENDCAPS_INVSRCALPHA,"D3DPBLENDCAPS_INVSRCALPHA"); - checkflag(flag,D3DPBLENDCAPS_INVSRCCOLOR,"D3DPBLENDCAPS_INVSRCCOLOR"); + checkflag(flag,D3DPBLENDCAPS_INVSRCCOLOR,"D3DPBLENDCAPS_INVSRCCOLOR"); checkflag(flag,D3DPBLENDCAPS_ONE,"D3DPBLENDCAPS_ONE"); checkflag(flag,D3DPBLENDCAPS_SRCALPHA,"D3DPBLENDCAPS_SRCALPHA"); checkflag(flag,D3DPBLENDCAPS_SRCALPHASAT,"D3DPBLENDCAPS_SRCALPHASAT"); checkflag(flag,D3DPBLENDCAPS_SRCCOLOR,"D3DPBLENDCAPS_SRCCOLOR"); - checkflag(flag,D3DPBLENDCAPS_ZERO,"D3DPBLENDCAPS_ZERO"); - endcheckflag(flag,"puD3dDriverData->hwCaps.dpcLineCaps.dwSrcBlendCaps "); + checkflag(flag,D3DPBLENDCAPS_ZERO,"D3DPBLENDCAPS_ZERO"); + endcheckflag(flag,"puD3dDriverData->hwCaps.dpcLineCaps.dwSrcBlendCaps "); printf(" puD3dDriverData->hwCaps.dpcLineCaps.dwDestBlendCaps : "); count = 0; @@ -782,13 +782,13 @@ dump_D3dDriverData(D3DNTHAL_GLOBALDRIVERDATA *puD3dDriverData, char *text) checkflag(flag,D3DPBLENDCAPS_INVDESTALPHA,"D3DPBLENDCAPS_INVDESTALPHA"); checkflag(flag,D3DPBLENDCAPS_INVDESTCOLOR,"D3DPBLENDCAPS_INVDESTCOLOR"); checkflag(flag,D3DPBLENDCAPS_INVSRCALPHA,"D3DPBLENDCAPS_INVSRCALPHA"); - checkflag(flag,D3DPBLENDCAPS_INVSRCCOLOR,"D3DPBLENDCAPS_INVSRCCOLOR"); + checkflag(flag,D3DPBLENDCAPS_INVSRCCOLOR,"D3DPBLENDCAPS_INVSRCCOLOR"); checkflag(flag,D3DPBLENDCAPS_ONE,"D3DPBLENDCAPS_ONE"); checkflag(flag,D3DPBLENDCAPS_SRCALPHA,"D3DPBLENDCAPS_SRCALPHA"); checkflag(flag,D3DPBLENDCAPS_SRCALPHASAT,"D3DPBLENDCAPS_SRCALPHASAT"); checkflag(flag,D3DPBLENDCAPS_SRCCOLOR,"D3DPBLENDCAPS_SRCCOLOR"); - checkflag(flag,D3DPBLENDCAPS_ZERO,"D3DPBLENDCAPS_ZERO"); - endcheckflag(flag,"puD3dDriverData->hwCaps.dpcLineCaps.dwDestBlendCaps "); + checkflag(flag,D3DPBLENDCAPS_ZERO,"D3DPBLENDCAPS_ZERO"); + endcheckflag(flag,"puD3dDriverData->hwCaps.dpcLineCaps.dwDestBlendCaps "); printf(" puD3dDriverData->hwCaps.dpcLineCaps.dwAlphaCmpCaps : "); count = 0; @@ -800,8 +800,8 @@ dump_D3dDriverData(D3DNTHAL_GLOBALDRIVERDATA *puD3dDriverData, char *text) checkflag(flag,D3DPCMPCAPS_LESS,"D3DPCMPCAPS_LESS"); checkflag(flag,D3DPCMPCAPS_LESSEQUAL,"D3DPCMPCAPS_LESSEQUAL"); checkflag(flag,D3DPCMPCAPS_NEVER,"D3DPCMPCAPS_NEVER"); - checkflag(flag,D3DPCMPCAPS_NOTEQUAL,"D3DPCMPCAPS_NOTEQUAL"); - endcheckflag(flag,"puD3dDriverData->hwCaps.dpcLineCaps.dwAlphaCmpCaps "); + checkflag(flag,D3DPCMPCAPS_NOTEQUAL,"D3DPCMPCAPS_NOTEQUAL"); + endcheckflag(flag,"puD3dDriverData->hwCaps.dpcLineCaps.dwAlphaCmpCaps "); printf(" puD3dDriverData->hwCaps.dpcLineCaps.dwShadeCaps : "); count = 0; @@ -813,7 +813,7 @@ dump_D3dDriverData(D3DNTHAL_GLOBALDRIVERDATA *puD3dDriverData, char *text) checkflag(flag,D3DPSHADECAPS_ALPHAPHONGBLEND,"D3DPSHADECAPS_ALPHAPHONGBLEND"); checkflag(flag,D3DPSHADECAPS_ALPHAPHONGSTIPPLED,"D3DPSHADECAPS_ALPHAPHONGSTIPPLED"); checkflag(flag,D3DPSHADECAPS_COLORFLATMONO,"D3DPSHADECAPS_COLORFLATMONO"); - checkflag(flag,D3DPSHADECAPS_COLORFLATRGB,"D3DPSHADECAPS_COLORFLATRGB"); + checkflag(flag,D3DPSHADECAPS_COLORFLATRGB,"D3DPSHADECAPS_COLORFLATRGB"); checkflag(flag,D3DPSHADECAPS_COLORGOURAUDMONO,"D3DPSHADECAPS_COLORGOURAUDMONO"); checkflag(flag,D3DPSHADECAPS_COLORGOURAUDRGB,"D3DPSHADECAPS_COLORGOURAUDRGB"); checkflag(flag,D3DPSHADECAPS_COLORPHONGMONO,"D3DPSHADECAPS_COLORPHONGMONO"); @@ -821,13 +821,13 @@ dump_D3dDriverData(D3DNTHAL_GLOBALDRIVERDATA *puD3dDriverData, char *text) checkflag(flag,D3DPSHADECAPS_FOGFLAT,"D3DPSHADECAPS_FOGFLAT"); checkflag(flag,D3DPSHADECAPS_FOGGOURAUD,"D3DPSHADECAPS_FOGGOURAUD"); checkflag(flag,D3DPSHADECAPS_FOGPHONG,"D3DPSHADECAPS_FOGPHONG"); - checkflag(flag,D3DPSHADECAPS_SPECULARFLATMONO,"D3DPSHADECAPS_SPECULARFLATMONO"); - checkflag(flag,D3DPSHADECAPS_SPECULARFLATRGB,"D3DPSHADECAPS_SPECULARFLATRGB"); + checkflag(flag,D3DPSHADECAPS_SPECULARFLATMONO,"D3DPSHADECAPS_SPECULARFLATMONO"); + checkflag(flag,D3DPSHADECAPS_SPECULARFLATRGB,"D3DPSHADECAPS_SPECULARFLATRGB"); checkflag(flag,D3DPSHADECAPS_SPECULARGOURAUDMONO,"D3DPSHADECAPS_SPECULARGOURAUDMONO"); checkflag(flag,D3DPSHADECAPS_SPECULARGOURAUDRGB,"D3DPSHADECAPS_SPECULARGOURAUDRGB"); - checkflag(flag,D3DPSHADECAPS_SPECULARPHONGMONO,"D3DPSHADECAPS_SPECULARPHONGMONO"); - checkflag(flag,D3DPSHADECAPS_SPECULARPHONGRGB,"D3DPSHADECAPS_SPECULARPHONGRGB"); - endcheckflag(flag,"puD3dDriverData->hwCaps.dpcLineCaps.dwShadeCaps "); + checkflag(flag,D3DPSHADECAPS_SPECULARPHONGMONO,"D3DPSHADECAPS_SPECULARPHONGMONO"); + checkflag(flag,D3DPSHADECAPS_SPECULARPHONGRGB,"D3DPSHADECAPS_SPECULARPHONGRGB"); + endcheckflag(flag,"puD3dDriverData->hwCaps.dpcLineCaps.dwShadeCaps "); printf(" puD3dDriverData->hwCaps.dpcLineCaps.dwTextureCaps : "); count = 0; @@ -839,13 +839,13 @@ dump_D3dDriverData(D3DNTHAL_GLOBALDRIVERDATA *puD3dDriverData, char *text) checkflag(flag,D3DPTEXTURECAPS_CUBEMAP,"D3DPTEXTURECAPS_CUBEMAP"); checkflag(flag,D3DPTEXTURECAPS_PERSPECTIVE,"D3DPTEXTURECAPS_PERSPECTIVE"); checkflag(flag,D3DPTEXTURECAPS_POW2,"D3DPTEXTURECAPS_POW2"); - checkflag(flag,D3DPTEXTURECAPS_PROJECTED,"D3DPTEXTURECAPS_PROJECTED"); + checkflag(flag,D3DPTEXTURECAPS_PROJECTED,"D3DPTEXTURECAPS_PROJECTED"); checkflag(flag,D3DPTEXTURECAPS_NONPOW2CONDITIONAL,"D3DPTEXTURECAPS_NONPOW2CONDITIONAL"); checkflag(flag,D3DPTEXTURECAPS_SQUAREONLY,"D3DPTEXTURECAPS_SQUAREONLY"); // not in ddk or dxsdk but it is in msdn checkflag(flag,D3DPTEXTURECAPS_TEXREPEATNOTSCALESBYSIZE,"D3DPTEXTURECAPS_TEXREPEATNOTSCALESBYSIZE"); // not in ddk or dxsdk but it is in msdn checkflag(flag,D3DPTEXTURECAPS_TEXTURETRANSFORM,"D3DPTEXTURECAPS_TEXTURETRANSFORM"); checkflag(flag,D3DPTEXTURECAPS_TRANSPARENCY,"D3DPTEXTURECAPS_TRANSPARENCY"); - endcheckflag(flag,"puD3dDriverData->hwCaps.dpcLineCaps.dwTextureCaps "); + endcheckflag(flag,"puD3dDriverData->hwCaps.dpcLineCaps.dwTextureCaps "); printf(" puD3dDriverData->hwCaps.dpcLineCaps.dwTextureFilterCaps : "); count = 0; @@ -857,7 +857,7 @@ dump_D3dDriverData(D3DNTHAL_GLOBALDRIVERDATA *puD3dDriverData, char *text) checkflag(flag,D3DPTFILTERCAPS_MAGFANISOTROPIC,"D3DPTFILTERCAPS_MAGFANISOTROPIC"); checkflag(flag,D3DPTFILTERCAPS_MAGFGAUSSIANCUBIC,"D3DPTFILTERCAPS_MAGFGAUSSIANCUBIC"); checkflag(flag,D3DPTFILTERCAPS_MAGFLINEAR,"D3DPTFILTERCAPS_MAGFLINEAR"); - checkflag(flag,D3DPTFILTERCAPS_MAGFPOINT,"D3DPTFILTERCAPS_MAGFPOINT"); + checkflag(flag,D3DPTFILTERCAPS_MAGFPOINT,"D3DPTFILTERCAPS_MAGFPOINT"); checkflag(flag,D3DPTFILTERCAPS_MINFANISOTROPIC,"D3DPTFILTERCAPS_MINFANISOTROPIC"); checkflag(flag,D3DPTFILTERCAPS_MINFLINEAR,"D3DPTFILTERCAPS_MINFLINEAR"); checkflag(flag,D3DPTFILTERCAPS_MINFPOINT,"D3DPTFILTERCAPS_MINFPOINT"); @@ -866,7 +866,7 @@ dump_D3dDriverData(D3DNTHAL_GLOBALDRIVERDATA *puD3dDriverData, char *text) checkflag(flag,D3DPTFILTERCAPS_MIPLINEAR,"D3DPTFILTERCAPS_MIPLINEAR"); checkflag(flag,D3DPTFILTERCAPS_MIPNEAREST,"D3DPTFILTERCAPS_MIPNEAREST"); checkflag(flag,D3DPTFILTERCAPS_NEAREST,"D3DPTFILTERCAPS_NEAREST"); - endcheckflag(flag,"puD3dDriverData->hwCaps.dpcLineCaps.dwTextureFilterCaps "); + endcheckflag(flag,"puD3dDriverData->hwCaps.dpcLineCaps.dwTextureFilterCaps "); printf(" puD3dDriverData->hwCaps.dpcLineCaps.dwTextureBlendCaps : "); count = 0; @@ -878,8 +878,8 @@ dump_D3dDriverData(D3DNTHAL_GLOBALDRIVERDATA *puD3dDriverData, char *text) checkflag(flag,D3DPTBLENDCAPS_DECALMASK,"D3DPTBLENDCAPS_DECALMASK"); checkflag(flag,D3DPTBLENDCAPS_MODULATE,"D3DPTBLENDCAPS_MODULATE"); checkflag(flag,D3DPTBLENDCAPS_MODULATEALPHA,"D3DPTBLENDCAPS_MODULATEALPHA"); - checkflag(flag,D3DPTBLENDCAPS_MODULATEMASK,"D3DPTBLENDCAPS_MODULATEMASK"); - endcheckflag(flag,"puD3dDriverData->hwCaps.dpcLineCaps.dwTextureBlendCaps "); + checkflag(flag,D3DPTBLENDCAPS_MODULATEMASK,"D3DPTBLENDCAPS_MODULATEMASK"); + endcheckflag(flag,"puD3dDriverData->hwCaps.dpcLineCaps.dwTextureBlendCaps "); printf(" puD3dDriverData->hwCaps.dpcLineCaps.dwTextureAddressCaps : "); count = 0; @@ -888,8 +888,8 @@ dump_D3dDriverData(D3DNTHAL_GLOBALDRIVERDATA *puD3dDriverData, char *text) checkflag(flag,D3DPTADDRESSCAPS_CLAMP,"D3DPTADDRESSCAPS_CLAMP"); checkflag(flag,D3DPTADDRESSCAPS_INDEPENDENTUV,"D3DPTADDRESSCAPS_INDEPENDENTUV"); checkflag(flag,D3DPTADDRESSCAPS_MIRROR,"D3DPTADDRESSCAPS_MIRROR"); - checkflag(flag,D3DPTADDRESSCAPS_WRAP,"D3DPTADDRESSCAPS_WRAP"); - endcheckflag(flag,"puD3dDriverData->hwCaps.dpcLineCaps.dwTextureAddressCaps "); + checkflag(flag,D3DPTADDRESSCAPS_WRAP,"D3DPTADDRESSCAPS_WRAP"); + endcheckflag(flag,"puD3dDriverData->hwCaps.dpcLineCaps.dwTextureAddressCaps "); printf(" puD3dDriverData->hwCaps.dpcLineCaps.dwStippleWidth : 0x%08lx\n",(long)puD3dDriverData->hwCaps.dpcLineCaps.dwStippleWidth); printf(" puD3dDriverData->hwCaps.dpcLineCaps.dwStippleHeight : 0x%08lx\n",(long)puD3dDriverData->hwCaps.dpcLineCaps.dwStippleHeight); @@ -913,7 +913,7 @@ dump_D3dDriverData(D3DNTHAL_GLOBALDRIVERDATA *puD3dDriverData, char *text) checkflag(flag,D3DPMISCCAPS_LINEPATTERNREP,"D3DPMISCCAPS_LINEPATTERNREP"); checkflag(flag,D3DPMISCCAPS_MASKPLANES,"D3DPMISCCAPS_MASKPLANES"); checkflag(flag,D3DPMISCCAPS_MASKZ,"D3DPMISCCAPS_MASKZ"); - endcheckflag(flag,"puD3dDriverData->hwCaps.dpcTriCaps.dwMiscCaps"); + endcheckflag(flag,"puD3dDriverData->hwCaps.dpcTriCaps.dwMiscCaps"); printf(" puD3dDriverData->hwCaps.dpcTriCaps.dwRasterCaps : "); count = 0; @@ -938,8 +938,8 @@ dump_D3dDriverData(D3DNTHAL_GLOBALDRIVERDATA *puD3dDriverData, char *text) checkflag(flag,D3DPRASTERCAPS_ZBIAS,"D3DPRASTERCAPS_ZBIAS"); checkflag(flag,D3DPRASTERCAPS_ZBUFFERLESSHSR,"D3DPRASTERCAPS_ZBUFFERLESSHSR"); checkflag(flag,D3DPRASTERCAPS_ZFOG,"D3DPRASTERCAPS_ZFOG"); - checkflag(flag,D3DPRASTERCAPS_ZTEST,"D3DPRASTERCAPS_ZTEST"); - endcheckflag(flag,"puD3dDriverData->hwCaps.dpcTriCaps.dwRasterCaps"); + checkflag(flag,D3DPRASTERCAPS_ZTEST,"D3DPRASTERCAPS_ZTEST"); + endcheckflag(flag,"puD3dDriverData->hwCaps.dpcTriCaps.dwRasterCaps"); printf(" puD3dDriverData->hwCaps.dpcTriCaps.dwZCmpCaps : "); count = 0; @@ -951,9 +951,9 @@ dump_D3dDriverData(D3DNTHAL_GLOBALDRIVERDATA *puD3dDriverData, char *text) checkflag(flag,D3DPCMPCAPS_LESS,"D3DPCMPCAPS_LESS"); checkflag(flag,D3DPCMPCAPS_LESSEQUAL,"D3DPCMPCAPS_LESSEQUAL"); checkflag(flag,D3DPCMPCAPS_NEVER,"D3DPCMPCAPS_NEVER"); - checkflag(flag,D3DPCMPCAPS_NOTEQUAL,"D3DPCMPCAPS_NOTEQUAL"); - endcheckflag(flag,"puD3dDriverData->hwCaps.dpcTriCaps.dwZCmpCaps "); - + checkflag(flag,D3DPCMPCAPS_NOTEQUAL,"D3DPCMPCAPS_NOTEQUAL"); + endcheckflag(flag,"puD3dDriverData->hwCaps.dpcTriCaps.dwZCmpCaps "); + printf(" puD3dDriverData->hwCaps.dpcTriCaps.dwSrcBlendCaps : "); count = 0; flag = puD3dDriverData->hwCaps.dpcTriCaps.dwSrcBlendCaps; @@ -964,13 +964,13 @@ dump_D3dDriverData(D3DNTHAL_GLOBALDRIVERDATA *puD3dDriverData, char *text) checkflag(flag,D3DPBLENDCAPS_INVDESTALPHA,"D3DPBLENDCAPS_INVDESTALPHA"); checkflag(flag,D3DPBLENDCAPS_INVDESTCOLOR,"D3DPBLENDCAPS_INVDESTCOLOR"); checkflag(flag,D3DPBLENDCAPS_INVSRCALPHA,"D3DPBLENDCAPS_INVSRCALPHA"); - checkflag(flag,D3DPBLENDCAPS_INVSRCCOLOR,"D3DPBLENDCAPS_INVSRCCOLOR"); + checkflag(flag,D3DPBLENDCAPS_INVSRCCOLOR,"D3DPBLENDCAPS_INVSRCCOLOR"); checkflag(flag,D3DPBLENDCAPS_ONE,"D3DPBLENDCAPS_ONE"); checkflag(flag,D3DPBLENDCAPS_SRCALPHA,"D3DPBLENDCAPS_SRCALPHA"); checkflag(flag,D3DPBLENDCAPS_SRCALPHASAT,"D3DPBLENDCAPS_SRCALPHASAT"); checkflag(flag,D3DPBLENDCAPS_SRCCOLOR,"D3DPBLENDCAPS_SRCCOLOR"); - checkflag(flag,D3DPBLENDCAPS_ZERO,"D3DPBLENDCAPS_ZERO"); - endcheckflag(flag,"puD3dDriverData->hwCaps.dpcTriCaps.dwSrcBlendCaps "); + checkflag(flag,D3DPBLENDCAPS_ZERO,"D3DPBLENDCAPS_ZERO"); + endcheckflag(flag,"puD3dDriverData->hwCaps.dpcTriCaps.dwSrcBlendCaps "); printf(" puD3dDriverData->hwCaps.dpcTriCaps.dwDestBlendCaps : "); count = 0; @@ -982,13 +982,13 @@ dump_D3dDriverData(D3DNTHAL_GLOBALDRIVERDATA *puD3dDriverData, char *text) checkflag(flag,D3DPBLENDCAPS_INVDESTALPHA,"D3DPBLENDCAPS_INVDESTALPHA"); checkflag(flag,D3DPBLENDCAPS_INVDESTCOLOR,"D3DPBLENDCAPS_INVDESTCOLOR"); checkflag(flag,D3DPBLENDCAPS_INVSRCALPHA,"D3DPBLENDCAPS_INVSRCALPHA"); - checkflag(flag,D3DPBLENDCAPS_INVSRCCOLOR,"D3DPBLENDCAPS_INVSRCCOLOR"); + checkflag(flag,D3DPBLENDCAPS_INVSRCCOLOR,"D3DPBLENDCAPS_INVSRCCOLOR"); checkflag(flag,D3DPBLENDCAPS_ONE,"D3DPBLENDCAPS_ONE"); checkflag(flag,D3DPBLENDCAPS_SRCALPHA,"D3DPBLENDCAPS_SRCALPHA"); checkflag(flag,D3DPBLENDCAPS_SRCALPHASAT,"D3DPBLENDCAPS_SRCALPHASAT"); checkflag(flag,D3DPBLENDCAPS_SRCCOLOR,"D3DPBLENDCAPS_SRCCOLOR"); - checkflag(flag,D3DPBLENDCAPS_ZERO,"D3DPBLENDCAPS_ZERO"); - endcheckflag(flag,"puD3dDriverData->hwCaps.dpcTriCaps.dwDestBlendCaps "); + checkflag(flag,D3DPBLENDCAPS_ZERO,"D3DPBLENDCAPS_ZERO"); + endcheckflag(flag,"puD3dDriverData->hwCaps.dpcTriCaps.dwDestBlendCaps "); printf(" puD3dDriverData->hwCaps.dpcTriCaps.dwAlphaCmpCaps : "); count = 0; @@ -1000,8 +1000,8 @@ dump_D3dDriverData(D3DNTHAL_GLOBALDRIVERDATA *puD3dDriverData, char *text) checkflag(flag,D3DPCMPCAPS_LESS,"D3DPCMPCAPS_LESS"); checkflag(flag,D3DPCMPCAPS_LESSEQUAL,"D3DPCMPCAPS_LESSEQUAL"); checkflag(flag,D3DPCMPCAPS_NEVER,"D3DPCMPCAPS_NEVER"); - checkflag(flag,D3DPCMPCAPS_NOTEQUAL,"D3DPCMPCAPS_NOTEQUAL"); - endcheckflag(flag,"puD3dDriverData->hwCaps.dpcTriCaps.dwAlphaCmpCaps "); + checkflag(flag,D3DPCMPCAPS_NOTEQUAL,"D3DPCMPCAPS_NOTEQUAL"); + endcheckflag(flag,"puD3dDriverData->hwCaps.dpcTriCaps.dwAlphaCmpCaps "); printf(" puD3dDriverData->hwCaps.dpcTriCaps.dwShadeCaps : "); count = 0; @@ -1013,7 +1013,7 @@ dump_D3dDriverData(D3DNTHAL_GLOBALDRIVERDATA *puD3dDriverData, char *text) checkflag(flag,D3DPSHADECAPS_ALPHAPHONGBLEND,"D3DPSHADECAPS_ALPHAPHONGBLEND"); checkflag(flag,D3DPSHADECAPS_ALPHAPHONGSTIPPLED,"D3DPSHADECAPS_ALPHAPHONGSTIPPLED"); checkflag(flag,D3DPSHADECAPS_COLORFLATMONO,"D3DPSHADECAPS_COLORFLATMONO"); - checkflag(flag,D3DPSHADECAPS_COLORFLATRGB,"D3DPSHADECAPS_COLORFLATRGB"); + checkflag(flag,D3DPSHADECAPS_COLORFLATRGB,"D3DPSHADECAPS_COLORFLATRGB"); checkflag(flag,D3DPSHADECAPS_COLORGOURAUDMONO,"D3DPSHADECAPS_COLORGOURAUDMONO"); checkflag(flag,D3DPSHADECAPS_COLORGOURAUDRGB,"D3DPSHADECAPS_COLORGOURAUDRGB"); checkflag(flag,D3DPSHADECAPS_COLORPHONGMONO,"D3DPSHADECAPS_COLORPHONGMONO"); @@ -1021,13 +1021,13 @@ dump_D3dDriverData(D3DNTHAL_GLOBALDRIVERDATA *puD3dDriverData, char *text) checkflag(flag,D3DPSHADECAPS_FOGFLAT,"D3DPSHADECAPS_FOGFLAT"); checkflag(flag,D3DPSHADECAPS_FOGGOURAUD,"D3DPSHADECAPS_FOGGOURAUD"); checkflag(flag,D3DPSHADECAPS_FOGPHONG,"D3DPSHADECAPS_FOGPHONG"); - checkflag(flag,D3DPSHADECAPS_SPECULARFLATMONO,"D3DPSHADECAPS_SPECULARFLATMONO"); - checkflag(flag,D3DPSHADECAPS_SPECULARFLATRGB,"D3DPSHADECAPS_SPECULARFLATRGB"); + checkflag(flag,D3DPSHADECAPS_SPECULARFLATMONO,"D3DPSHADECAPS_SPECULARFLATMONO"); + checkflag(flag,D3DPSHADECAPS_SPECULARFLATRGB,"D3DPSHADECAPS_SPECULARFLATRGB"); checkflag(flag,D3DPSHADECAPS_SPECULARGOURAUDMONO,"D3DPSHADECAPS_SPECULARGOURAUDMONO"); checkflag(flag,D3DPSHADECAPS_SPECULARGOURAUDRGB,"D3DPSHADECAPS_SPECULARGOURAUDRGB"); - checkflag(flag,D3DPSHADECAPS_SPECULARPHONGMONO,"D3DPSHADECAPS_SPECULARPHONGMONO"); - checkflag(flag,D3DPSHADECAPS_SPECULARPHONGRGB,"D3DPSHADECAPS_SPECULARPHONGRGB"); - endcheckflag(flag,"puD3dDriverData->hwCaps.dpcTriCaps.dwShadeCaps "); + checkflag(flag,D3DPSHADECAPS_SPECULARPHONGMONO,"D3DPSHADECAPS_SPECULARPHONGMONO"); + checkflag(flag,D3DPSHADECAPS_SPECULARPHONGRGB,"D3DPSHADECAPS_SPECULARPHONGRGB"); + endcheckflag(flag,"puD3dDriverData->hwCaps.dpcTriCaps.dwShadeCaps "); printf(" puD3dDriverData->hwCaps.dpcTriCaps.dwTextureCaps : "); count = 0; @@ -1039,13 +1039,13 @@ dump_D3dDriverData(D3DNTHAL_GLOBALDRIVERDATA *puD3dDriverData, char *text) checkflag(flag,D3DPTEXTURECAPS_CUBEMAP,"D3DPTEXTURECAPS_CUBEMAP"); checkflag(flag,D3DPTEXTURECAPS_PERSPECTIVE,"D3DPTEXTURECAPS_PERSPECTIVE"); checkflag(flag,D3DPTEXTURECAPS_POW2,"D3DPTEXTURECAPS_POW2"); - checkflag(flag,D3DPTEXTURECAPS_PROJECTED,"D3DPTEXTURECAPS_PROJECTED"); + checkflag(flag,D3DPTEXTURECAPS_PROJECTED,"D3DPTEXTURECAPS_PROJECTED"); checkflag(flag,D3DPTEXTURECAPS_NONPOW2CONDITIONAL,"D3DPTEXTURECAPS_NONPOW2CONDITIONAL"); checkflag(flag,D3DPTEXTURECAPS_SQUAREONLY,"D3DPTEXTURECAPS_SQUAREONLY"); //not in ddk or dxsdk but it is in msdn checkflag(flag,D3DPTEXTURECAPS_TEXREPEATNOTSCALESBYSIZE,"D3DPTEXTURECAPS_TEXREPEATNOTSCALESBYSIZE"); //not in ddk or dxsdk but it is in msdn checkflag(flag,D3DPTEXTURECAPS_TEXTURETRANSFORM,"D3DPTEXTURECAPS_TEXTURETRANSFORM"); checkflag(flag,D3DPTEXTURECAPS_TRANSPARENCY,"D3DPTEXTURECAPS_TRANSPARENCY"); - endcheckflag(flag,"puD3dDriverData->hwCaps.dpcTriCaps.dwTextureCaps "); + endcheckflag(flag,"puD3dDriverData->hwCaps.dpcTriCaps.dwTextureCaps "); printf(" puD3dDriverData->hwCaps.dpcTriCaps.dwTextureFilterCaps : "); count = 0; @@ -1057,7 +1057,7 @@ dump_D3dDriverData(D3DNTHAL_GLOBALDRIVERDATA *puD3dDriverData, char *text) checkflag(flag,D3DPTFILTERCAPS_MAGFANISOTROPIC,"D3DPTFILTERCAPS_MAGFANISOTROPIC"); checkflag(flag,D3DPTFILTERCAPS_MAGFGAUSSIANCUBIC,"D3DPTFILTERCAPS_MAGFGAUSSIANCUBIC"); checkflag(flag,D3DPTFILTERCAPS_MAGFLINEAR,"D3DPTFILTERCAPS_MAGFLINEAR"); - checkflag(flag,D3DPTFILTERCAPS_MAGFPOINT,"D3DPTFILTERCAPS_MAGFPOINT"); + checkflag(flag,D3DPTFILTERCAPS_MAGFPOINT,"D3DPTFILTERCAPS_MAGFPOINT"); checkflag(flag,D3DPTFILTERCAPS_MINFANISOTROPIC,"D3DPTFILTERCAPS_MINFANISOTROPIC"); checkflag(flag,D3DPTFILTERCAPS_MINFLINEAR,"D3DPTFILTERCAPS_MINFLINEAR"); checkflag(flag,D3DPTFILTERCAPS_MINFPOINT,"D3DPTFILTERCAPS_MINFPOINT"); @@ -1066,7 +1066,7 @@ dump_D3dDriverData(D3DNTHAL_GLOBALDRIVERDATA *puD3dDriverData, char *text) checkflag(flag,D3DPTFILTERCAPS_MIPLINEAR,"D3DPTFILTERCAPS_MIPLINEAR"); checkflag(flag,D3DPTFILTERCAPS_MIPNEAREST,"D3DPTFILTERCAPS_MIPNEAREST"); checkflag(flag,D3DPTFILTERCAPS_NEAREST,"D3DPTFILTERCAPS_NEAREST"); - endcheckflag(flag,"puD3dDriverData->hwCaps.dpcTriCaps.dwTextureFilterCaps "); + endcheckflag(flag,"puD3dDriverData->hwCaps.dpcTriCaps.dwTextureFilterCaps "); printf(" puD3dDriverData->hwCaps.dpcTriCaps.dwTextureBlendCaps : "); count = 0; @@ -1078,8 +1078,8 @@ dump_D3dDriverData(D3DNTHAL_GLOBALDRIVERDATA *puD3dDriverData, char *text) checkflag(flag,D3DPTBLENDCAPS_DECALMASK,"D3DPTBLENDCAPS_DECALMASK"); checkflag(flag,D3DPTBLENDCAPS_MODULATE,"D3DPTBLENDCAPS_MODULATE"); checkflag(flag,D3DPTBLENDCAPS_MODULATEALPHA,"D3DPTBLENDCAPS_MODULATEALPHA"); - checkflag(flag,D3DPTBLENDCAPS_MODULATEMASK,"D3DPTBLENDCAPS_MODULATEMASK"); - endcheckflag(flag,"puD3dDriverData->hwCaps.dpcTriCaps.dwTextureBlendCaps "); + checkflag(flag,D3DPTBLENDCAPS_MODULATEMASK,"D3DPTBLENDCAPS_MODULATEMASK"); + endcheckflag(flag,"puD3dDriverData->hwCaps.dpcTriCaps.dwTextureBlendCaps "); printf(" puD3dDriverData->hwCaps.dpcTriCaps.dwTextureAddressCaps : "); count = 0; @@ -1088,8 +1088,8 @@ dump_D3dDriverData(D3DNTHAL_GLOBALDRIVERDATA *puD3dDriverData, char *text) checkflag(flag,D3DPTADDRESSCAPS_CLAMP,"D3DPTADDRESSCAPS_CLAMP"); checkflag(flag,D3DPTADDRESSCAPS_INDEPENDENTUV,"D3DPTADDRESSCAPS_INDEPENDENTUV"); checkflag(flag,D3DPTADDRESSCAPS_MIRROR,"D3DPTADDRESSCAPS_MIRROR"); - checkflag(flag,D3DPTADDRESSCAPS_WRAP,"D3DPTADDRESSCAPS_WRAP"); - endcheckflag(flag,"puD3dDriverData->hwCaps.dpcTriCaps.dwTextureAddressCaps "); + checkflag(flag,D3DPTADDRESSCAPS_WRAP,"D3DPTADDRESSCAPS_WRAP"); + endcheckflag(flag,"puD3dDriverData->hwCaps.dpcTriCaps.dwTextureAddressCaps "); printf(" puD3dDriverData->hwCaps.dpcTriCaps.dwStippleWidth : 0x%08lx\n",(long)puD3dDriverData->hwCaps.dpcTriCaps.dwStippleWidth); printf(" puD3dDriverData->hwCaps.dpcTriCaps.dwStippleHeight : 0x%08lx\n",(long)puD3dDriverData->hwCaps.dpcTriCaps.dwStippleHeight); @@ -1144,14 +1144,14 @@ dump_D3dBufferCallbacks(DD_D3DBUFCALLBACKS *puD3dBufferCallbacks, char *text) checkflag(flag,DDHAL_D3DBUFCB32_DESTROYD3DBUF,"DDHAL_D3DBUFCB32_DESTROYD3DBUF"); checkflag(flag,DDHAL_D3DBUFCB32_LOCKD3DBUF,"DDHAL_D3DBUFCB32_LOCKD3DBUF"); - checkflag(flag,DDHAL_D3DBUFCB32_UNLOCKD3DBUF,"DDHAL_D3DBUFCB32_UNLOCKD3DBUF"); - endcheckflag(flag,"puD3dBufferCallbacks->dwFlags"); + checkflag(flag,DDHAL_D3DBUFCB32_UNLOCKD3DBUF,"DDHAL_D3DBUFCB32_UNLOCKD3DBUF"); + endcheckflag(flag,"puD3dBufferCallbacks->dwFlags"); printf(" puD3dBufferCallbacks->CanCreateD3DBuffer : 0x%08lx\n",(long)puD3dBufferCallbacks->CanCreateD3DBuffer); printf(" puD3dBufferCallbacks->CreateD3DBuffer : 0x%08lx\n",(long)puD3dBufferCallbacks->CreateD3DBuffer); printf(" puD3dBufferCallbacks->DestroyD3DBuffer : 0x%08lx\n",(long)puD3dBufferCallbacks->DestroyD3DBuffer); printf(" puD3dBufferCallbacks->LockD3DBuffer : 0x%08lx\n",(long)puD3dBufferCallbacks->LockD3DBuffer); - printf(" puD3dBufferCallbacks->UnlockD3DBuffer : 0x%08lx\n",(long)puD3dBufferCallbacks->UnlockD3DBuffer); + printf(" puD3dBufferCallbacks->UnlockD3DBuffer : 0x%08lx\n",(long)puD3dBufferCallbacks->UnlockD3DBuffer); } else { @@ -1167,15 +1167,15 @@ dump_D3dTextureFormats(DDSURFACEDESC *puD3dTextureFormats, int dwNum, char *text int count = 0; DWORD flag = 0; DDSURFACEDESC * myTextureFormats = puD3dTextureFormats; - + printf("dumping the DDSURFACEDESC/DDSURFACEDESC2 from %s\n",text); for (t=0;tdwSize == sizeof(DDSURFACEDESC)) - { - printf(" puD3dTextureFormats->dwSize : 0x%08lx\n",(long)myTextureFormats->dwSize); + { + printf(" puD3dTextureFormats->dwSize : 0x%08lx\n",(long)myTextureFormats->dwSize); printf(" puD3dTextureFormats->dwFlags : "); count = 0; @@ -1184,19 +1184,19 @@ dump_D3dTextureFormats(DDSURFACEDESC *puD3dTextureFormats, int dwNum, char *text checkflag(flag,DDSD_BACKBUFFERCOUNT ,"DDSD_BACKBUFFERCOUNT"); checkflag(flag,DDSD_CAPS,"DDSD_CAPS "); checkflag(flag,DDSD_CKDESTBLT,"DDSD_CKDESTBLT"); - checkflag(flag,DDSD_CKDESTOVERLAY,"DDSD_CKDESTOVERLAY"); - checkflag(flag,DDSD_CKSRCBLT,"DDSD_CKSRCBLT"); - checkflag(flag,DDSD_CKSRCOVERLAY,"DDSD_CKSRCOVERLAY"); - checkflag(flag,DDSD_HEIGHT,"DDSD_HEIGHT"); - checkflag(flag,DDSD_LINEARSIZE,"DDSD_LINEARSIZE"); - checkflag(flag,DDSD_LPSURFACE,"DDSD_LPSURFACE"); - checkflag(flag,DDSD_MIPMAPCOUNT,"DDSD_MIPMAPCOUNT"); - checkflag(flag,DDSD_PITCH,"DDSD_PITCH"); - checkflag(flag,DDSD_PIXELFORMAT,"DDSD_PIXELFORMAT"); + checkflag(flag,DDSD_CKDESTOVERLAY,"DDSD_CKDESTOVERLAY"); + checkflag(flag,DDSD_CKSRCBLT,"DDSD_CKSRCBLT"); + checkflag(flag,DDSD_CKSRCOVERLAY,"DDSD_CKSRCOVERLAY"); + checkflag(flag,DDSD_HEIGHT,"DDSD_HEIGHT"); + checkflag(flag,DDSD_LINEARSIZE,"DDSD_LINEARSIZE"); + checkflag(flag,DDSD_LPSURFACE,"DDSD_LPSURFACE"); + checkflag(flag,DDSD_MIPMAPCOUNT,"DDSD_MIPMAPCOUNT"); + checkflag(flag,DDSD_PITCH,"DDSD_PITCH"); + checkflag(flag,DDSD_PIXELFORMAT,"DDSD_PIXELFORMAT"); checkflag(flag,DDSD_REFRESHRATE,"DDSD_REFRESHRATE"); checkflag(flag,DDSD_WIDTH,"DDSD_WIDTH"); checkflag(flag,DDSD_ZBUFFERBITDEPTH,"DDSD_ZBUFFERBITDEPTH"); - endcheckflag(flag,"puD3dTextureFormats->dwFlags"); + endcheckflag(flag,"puD3dTextureFormats->dwFlags"); printf(" puD3dTextureFormats->dwHeight : 0x%08lx\n",(long)myTextureFormats->dwHeight); printf(" puD3dTextureFormats->dwWidth : 0x%08lx\n",(long)myTextureFormats->dwWidth); @@ -1210,16 +1210,16 @@ dump_D3dTextureFormats(DDSURFACEDESC *puD3dTextureFormats, int dwNum, char *text printf(" puD3dTextureFormats->ddckCKDestOverlay.dwColorSpaceHighValue : 0x%08lx\n",(long)myTextureFormats->ddckCKDestOverlay.dwColorSpaceHighValue); printf(" puD3dTextureFormats->ddckCKDestBlt.dwColorSpaceLowValue : 0x%08lx\n",(long)myTextureFormats->ddckCKDestBlt.dwColorSpaceLowValue); printf(" puD3dTextureFormats->ddckCKDestBlt : 0x%08lx\n",(long)myTextureFormats->ddckCKDestBlt.dwColorSpaceHighValue); - printf(" puD3dTextureFormats->ddckCKSrcOverlay.dwColorSpaceLowValue : 0x%08lx\n",(long)myTextureFormats->ddckCKSrcOverlay.dwColorSpaceLowValue); - printf(" puD3dTextureFormats->ddckCKSrcOverlay.dwColorSpaceHighValue : 0x%08lx\n",(long)myTextureFormats->ddckCKSrcOverlay.dwColorSpaceHighValue); + printf(" puD3dTextureFormats->ddckCKSrcOverlay.dwColorSpaceLowValue : 0x%08lx\n",(long)myTextureFormats->ddckCKSrcOverlay.dwColorSpaceLowValue); + printf(" puD3dTextureFormats->ddckCKSrcOverlay.dwColorSpaceHighValue : 0x%08lx\n",(long)myTextureFormats->ddckCKSrcOverlay.dwColorSpaceHighValue); printf(" puD3dTextureFormats->ddckCKSrcBlt.dwColorSpaceLowValue : 0x%08lx\n",(long)myTextureFormats->ddckCKSrcBlt.dwColorSpaceLowValue); printf(" puD3dTextureFormats->ddckCKSrcBlt.dwColorSpaceHighValue : 0x%08lx\n",(long)myTextureFormats->ddckCKSrcBlt.dwColorSpaceHighValue); - // DDPIXELFORMAT + // DDPIXELFORMAT printf(" puD3dTextureFormats->ddpfPixelFormat.dwSize : 0x%08lx\n",(long)myTextureFormats->ddpfPixelFormat.dwSize); if (puD3dTextureFormats->ddpfPixelFormat.dwSize == sizeof(DDPIXELFORMAT)) { - printf(" puD3dTextureFormats->ddpfPixelFormat.dwFlags : "); + printf(" puD3dTextureFormats->ddpfPixelFormat.dwFlags : "); count = 0; flag = myTextureFormats->ddpfPixelFormat.dwFlags; checkflag(flag,DDPF_ALPHA,"DDPF_ALPHA"); @@ -1241,14 +1241,14 @@ dump_D3dTextureFormats(DDSURFACEDESC *puD3dTextureFormats, int dwNum, char *text checkflag(flag,DDPF_YUV,"DDPF_YUV"); checkflag(flag,DDPF_ZBUFFER,"DDPF_ZBUFFER"); checkflag(flag,DDPF_ZPIXELS,"DDPF_ZPIXELS"); - endcheckflag(flag,"puD3dTextureFormats->ddpfPixelFormat.dwFlags"); + endcheckflag(flag,"puD3dTextureFormats->ddpfPixelFormat.dwFlags"); if (myTextureFormats->ddpfPixelFormat.dwFlags & DDPF_FOURCC) { printf(" puD3dTextureFormats->ddpfPixelFormat.dwFourCC : "); switch(myTextureFormats->ddpfPixelFormat.dwFourCC) - { + { case MAKEFOURCC('A','U','R','2'): printf("AUR2\n"); break; @@ -1340,11 +1340,11 @@ dump_D3dTextureFormats(DDSURFACEDESC *puD3dTextureFormats, int dwNum, char *text case MAKEFOURCC('V','I','D','S'): printf("VIDS\n"); break; - + case MAKEFOURCC('Y','U','9','2'): printf("YU92\n"); break; - + case MAKEFOURCC('Y','U','V','8'): printf("YUV8\n"); break; @@ -1356,7 +1356,7 @@ dump_D3dTextureFormats(DDSURFACEDESC *puD3dTextureFormats, int dwNum, char *text case MAKEFOURCC('Y','U','Y','V'): printf("YUYV\n"); break; - + case MAKEFOURCC('Z','P','E','G'): printf("ZPEG\n"); break; @@ -1380,7 +1380,7 @@ dump_D3dTextureFormats(DDSURFACEDESC *puD3dTextureFormats, int dwNum, char *text { printf("none uD3dTextureFormats->ddpfPixelFormat from the driver 0x%08lx\n",myTextureFormats->ddpfPixelFormat.dwSize); } - + printf(" puD3dTextureFormats->ddsCaps.dwCaps : "); count = 0; flag = myTextureFormats->ddsCaps.dwCaps; @@ -1390,13 +1390,13 @@ dump_D3dTextureFormats(DDSURFACEDESC *puD3dTextureFormats, int dwNum, char *text checkflag(flag,DDSCAPS_ALPHA,"DDSCAPS_ALPHA"); checkflag(flag,DDSCAPS_BACKBUFFER,"DDSCAPS_BACKBUFFER"); checkflag(flag,DDSCAPS_FLIP,"DDSCAPS_FLIP"); - checkflag(flag,DDSCAPS_FRONTBUFFER,"DDSCAPS_FRONTBUFFER"); - checkflag(flag,DDSCAPS_HWCODEC,"DDSCAPS_HWCODEC"); - checkflag(flag,DDSCAPS_LIVEVIDEO ,"DDSCAPS_LIVEVIDEO"); - checkflag(flag,DDSCAPS_LOCALVIDMEM,"DDSCAPS_LOCALVIDMEM"); - checkflag(flag,DDSCAPS_MIPMAP,"DDSCAPS_MIPMAP"); - checkflag(flag,DDSCAPS_MODEX,"DDSCAPS_MODEX"); - checkflag(flag,DDSCAPS_NONLOCALVIDMEM,"DDSCAPS_NONLOCALVIDMEM"); + checkflag(flag,DDSCAPS_FRONTBUFFER,"DDSCAPS_FRONTBUFFER"); + checkflag(flag,DDSCAPS_HWCODEC,"DDSCAPS_HWCODEC"); + checkflag(flag,DDSCAPS_LIVEVIDEO ,"DDSCAPS_LIVEVIDEO"); + checkflag(flag,DDSCAPS_LOCALVIDMEM,"DDSCAPS_LOCALVIDMEM"); + checkflag(flag,DDSCAPS_MIPMAP,"DDSCAPS_MIPMAP"); + checkflag(flag,DDSCAPS_MODEX,"DDSCAPS_MODEX"); + checkflag(flag,DDSCAPS_NONLOCALVIDMEM,"DDSCAPS_NONLOCALVIDMEM"); checkflag(flag,DDSCAPS_OFFSCREENPLAIN,"DDSCAPS_OFFSCREENPLAIN"); checkflag(flag,DDSCAPS_OPTIMIZED,"DDSCAPS_OPTIMIZED"); checkflag(flag,DDSCAPS_OVERLAY,"DDSCAPS_OVERLAY"); @@ -1411,7 +1411,7 @@ dump_D3dTextureFormats(DDSURFACEDESC *puD3dTextureFormats, int dwNum, char *text checkflag(flag,DDSCAPS_VISIBLE,"DDSCAPS_VISIBLE"); checkflag(flag,DDSCAPS_WRITEONLY ,"DDSCAPS_WRITEONLY"); checkflag(flag,DDSCAPS_ZBUFFER,"DDSCAPS_ZBUFFER"); - endcheckflag(flag,"puD3dTextureFormats->ddsCaps.dwCaps"); + endcheckflag(flag,"puD3dTextureFormats->ddsCaps.dwCaps"); myTextureFormats = (DDSURFACEDESC *) (((DWORD) myTextureFormats) + sizeof(DDSURFACEDESC)); @@ -1424,11 +1424,11 @@ dump_D3dTextureFormats(DDSURFACEDESC *puD3dTextureFormats, int dwNum, char *text } - - - - + + + + diff --git a/modules/rostests/dxtest/win32kdxtest/main.c b/modules/rostests/dxtest/win32kdxtest/main.c index fe23dc231b9..c62a9247c8a 100644 --- a/modules/rostests/dxtest/win32kdxtest/main.c +++ b/modules/rostests/dxtest/win32kdxtest/main.c @@ -51,8 +51,8 @@ int main(int argc, char **argv) { if (stricmp(argv[1],"-dumpfile")==0) { - /* create or over write a file in binary mode, and redirect printf to the file */ - if ( (fs_file = freopen(argv[2], "wb", stdout)) != NULL) + /* create or over write a file in binary mode, and redirect printf to the file */ + if ( (fs_file = freopen(argv[2], "wb", stdout)) != NULL) { dumping_on = TRUE; } diff --git a/modules/rostests/kmtests/fltmgr/fltmgr_register/fltmgr_register.c b/modules/rostests/kmtests/fltmgr/fltmgr_register/fltmgr_register.c index 9703dfa8fd4..aa68297b169 100644 --- a/modules/rostests/kmtests/fltmgr/fltmgr_register/fltmgr_register.c +++ b/modules/rostests/kmtests/fltmgr/fltmgr_register/fltmgr_register.c @@ -108,7 +108,7 @@ TestFltRegisterFilter(_In_ PDRIVER_OBJECT DriverObject) ok_eq_hex(Filter->Base.Flags, FLT_OBFL_TYPE_FILTER); - + /* Check we have the right filter name */ RtlInitUnicodeString(&Name, L"Kmtest-FltMgrReg"); ok_eq_long(RtlCompareUnicodeString(&Filter->Name, &Name, FALSE), 0); @@ -125,7 +125,7 @@ TestFltRegisterFilter(_In_ PDRIVER_OBJECT DriverObject) FltUnregisterFilter(Filter); /* - * The last thing we'll do before we exit is to properly register with the filter manager + * The last thing we'll do before we exit is to properly register with the filter manager * and set an unload routine. This'll let us test the FltUnregisterFilter routine */ RESET_REGISTRATION(TRUE); @@ -136,7 +136,7 @@ TestFltRegisterFilter(_In_ PDRIVER_OBJECT DriverObject) FilterRegistration.FilterUnloadCallback = TestRegFilterUnload; Status = FltRegisterFilter(DriverObject, &FilterRegistration, &TestFilter); ok_eq_hex(Status, STATUS_SUCCESS); - + /* Test all the unlod routines */ ok_eq_pointer(TestFilter->FilterUnload, TestRegFilterUnload); ok_eq_pointer(TestFilter->OldDriverUnload, (PFLT_FILTER_UNLOAD_CALLBACK)0x1234FFFF); diff --git a/modules/rostests/kmtests/hal/HalSystemInfo.c b/modules/rostests/kmtests/hal/HalSystemInfo.c index fa998c37846..f4da34edcd2 100644 --- a/modules/rostests/kmtests/hal/HalSystemInfo.c +++ b/modules/rostests/kmtests/hal/HalSystemInfo.c @@ -63,7 +63,7 @@ TestAMLIllegalIOPortAddresses(void) { return; } - + if (ReturnedLength != sizeof(*AddressList)) { /* Try with space for exactly one entry and make sure we get diff --git a/modules/rostests/kmtests/ntos_cc/CcPinMappedData_drv.c b/modules/rostests/kmtests/ntos_cc/CcPinMappedData_drv.c index 79bbf8168d1..503146d8d94 100644 --- a/modules/rostests/kmtests/ntos_cc/CcPinMappedData_drv.c +++ b/modules/rostests/kmtests/ntos_cc/CcPinMappedData_drv.c @@ -526,7 +526,7 @@ TestMessageHandler( ok_eq_ulong((ULONG)InLength, sizeof(ULONG)); PerformTest(*(PULONG)Buffer, DeviceObject); break; - + case IOCTL_FINISH_TEST: ok_eq_ulong((ULONG)InLength, sizeof(ULONG)); CleanupTest(*(PULONG)Buffer, DeviceObject); diff --git a/modules/rostests/kmtests/ntos_ex/ExSequencedList.c b/modules/rostests/kmtests/ntos_ex/ExSequencedList.c index 6dd99505bb8..60c741bf120 100644 --- a/modules/rostests/kmtests/ntos_ex/ExSequencedList.c +++ b/modules/rostests/kmtests/ntos_ex/ExSequencedList.c @@ -75,7 +75,7 @@ START_TEST(ExSequencedList) ExInitializeSListHead(ListHead); CheckSListHeader(ListHead, NULL, 0); TestSListFunctionalExports(ListHead, Entries, pSpinLock); - + KeLowerIrql(Irql); ExFreePoolWithTag(Buffer, 'TLqS'); #endif diff --git a/modules/rostests/kmtests/ntos_ex/ExSingleList.c b/modules/rostests/kmtests/ntos_ex/ExSingleList.c index 91a165325dc..8815740fcac 100644 --- a/modules/rostests/kmtests/ntos_ex/ExSingleList.c +++ b/modules/rostests/kmtests/ntos_ex/ExSingleList.c @@ -96,7 +96,7 @@ START_TEST(ExSingleList) ListHead = (PVOID)&Buffer[1]; Entries = (PVOID)&ListHead[1]; KeRaiseIrql(HIGH_LEVEL, &Irql); - + RtlFillMemory(Entries, sizeof(*Entries), 0x55); ListHead->Next = NULL; TestListFunctional(ListHead, Entries, &SpinLock); @@ -104,11 +104,11 @@ START_TEST(ExSingleList) RtlFillMemory(Entries, sizeof(*Entries), 0x55); ListHead->Next = NULL; TestListFunctionalExports(ListHead, Entries, &SpinLock); - + RtlFillMemory(Entries, sizeof(*Entries), 0x55); ListHead->Next = NULL; TestListFunctionalNoInterlocked(ListHead, Entries, &SpinLock); - + KeLowerIrql(Irql); ExFreePoolWithTag(Buffer, 'TLiS'); } diff --git a/modules/rostests/kmtests/ntos_ex/ExXList.h b/modules/rostests/kmtests/ntos_ex/ExXList.h index f5928c92990..a17185aa2e4 100644 --- a/modules/rostests/kmtests/ntos_ex/ExXList.h +++ b/modules/rostests/kmtests/ntos_ex/ExXList.h @@ -12,7 +12,7 @@ TestXListFunctional( Ret = FlushXList(ListHead); ok_eq_pointer(Ret, NULL); CheckXListHeader(ListHead, NULL, 0); - + Ret = PopXList(ListHead, pSpinLock); ok_eq_pointer(Ret, NULL); CheckXListHeader(ListHead, NULL, 0); @@ -41,7 +41,7 @@ TestXListFunctional( ok_free_xlist(Entries[0].Next, NULL); ok_free_xlist(Entries[1].Next, &Entries[0]); CheckXListHeader(ListHead, NULL, 0); - + Ret = PopXList(ListHead, pSpinLock); ok_eq_pointer(Ret, NULL); ok_free_xlist(Entries[0].Next, NULL); diff --git a/modules/rostests/kmtests/ntos_fsrtl/FsRtlTunnel.c b/modules/rostests/kmtests/ntos_fsrtl/FsRtlTunnel.c index 7919b3ad2a3..a995300155c 100644 --- a/modules/rostests/kmtests/ntos_fsrtl/FsRtlTunnel.c +++ b/modules/rostests/kmtests/ntos_fsrtl/FsRtlTunnel.c @@ -13,7 +13,7 @@ #include /* -Tested with the system kmtest +Tested with the system kmtest the following functions: FsRtlInitializeTunnelCache FsRtlDeleteTunnelCache @@ -61,7 +61,7 @@ void TestFsRtlInitializeTunnelCache() eq = RtlCompareMemory((const VOID*)T, (const VOID*)Tb, sizeof(TUNNEL)); - ok ( eq != sizeof(TUNNEL), "FsRtlInitializeTunnelCache function did not change anything in the memory at the address PTUNEL.\n"); + ok ( eq != sizeof(TUNNEL), "FsRtlInitializeTunnelCache function did not change anything in the memory at the address PTUNEL.\n"); } void TestFsRtlAddToTunnelCache(ULONGLONG DirectoryKey, PUNICODE_STRING s_name, PUNICODE_STRING l_name, BOOLEAN KeyByShortName) @@ -91,7 +91,7 @@ void TestFsRtlAddToTunnelCache(ULONGLONG DirectoryKey, PUNICODE_STRING s_name, P eq = RtlCompareMemory((const VOID*)Buf, (const VOID*)Bufb, BufSize); - ok( eq != sizeof(TUNNEL),"FsRtlAddToTunnelCache function did not change anything in the memory at the address Buf.\n"); + ok( eq != sizeof(TUNNEL),"FsRtlAddToTunnelCache function did not change anything in the memory at the address Buf.\n"); b = RtlCompareUnicodeString(l_name, bl_name, TRUE); ok (b == 0, "long name after call FsRtlAddToTunnelCache != long name befo call FsRtlAddToTunnelCache\n\n"); @@ -113,7 +113,7 @@ BOOLEAN TestFsRtlFindInTunnelCache(ULONG DirectoryKey, PUNICODE_STRING name, PUN PVOID Buf = ExAllocatePool(PagedPool, BufSize*2); ok(Buf != NULL, "Buff in FsRtlFindInTunnelCache is NULL after allocated memory\n"); - return FsRtlFindInTunnelCache(T, DirectoryKey, name, s_name, l_name, &BufsizeTemp, Buf); + return FsRtlFindInTunnelCache(T, DirectoryKey, name, s_name, l_name, &BufsizeTemp, Buf); } void TestFsRtlDeleteKeyFromTunnelCache(ULONGLONG a) diff --git a/modules/rostests/kmtests/ntos_mm/MmMapLockedPagesSpecifyCache.h b/modules/rostests/kmtests/ntos_mm/MmMapLockedPagesSpecifyCache.h index fcc0abf940b..cc8fe053914 100644 --- a/modules/rostests/kmtests/ntos_mm/MmMapLockedPagesSpecifyCache.h +++ b/modules/rostests/kmtests/ntos_mm/MmMapLockedPagesSpecifyCache.h @@ -5,7 +5,7 @@ * PROGRAMMER: Pierre Schweitzer */ - + #ifndef _KMTEST_MMMAPLOCKEDPAGESSPECIFYCACHE_H_ #define _KMTEST_MMMAPLOCKEDPAGESSPECIFYCACHE_H_ diff --git a/modules/rostests/kmtests/ntos_se/SeQueryInfoToken.c b/modules/rostests/kmtests/ntos_se/SeQueryInfoToken.c index 97ea924cf76..a506ceb78ca 100644 --- a/modules/rostests/kmtests/ntos_se/SeQueryInfoToken.c +++ b/modules/rostests/kmtests/ntos_se/SeQueryInfoToken.c @@ -19,7 +19,7 @@ // Testing function for SQIT -void TestsSeQueryInformationToken(PACCESS_TOKEN Token) +void TestsSeQueryInformationToken(PACCESS_TOKEN Token) { NTSTATUS Status; PVOID Buffer = NULL; @@ -59,7 +59,7 @@ void TestsSeQueryInformationToken(PACCESS_TOKEN Token) } //----------------------------------------------------------------// - + Buffer = NULL; Status = SeQueryInformationToken(Token, TokenDefaultDacl, &Buffer); ok(Status == STATUS_SUCCESS, "SQIT with TokenDefaultDacl fails with status 0x%08X\n", Status); @@ -151,8 +151,8 @@ void TestsSeQueryInformationToken(PACCESS_TOKEN Token) { TStats = (PTOKEN_STATISTICS)Buffer; // just put 0 into 1st arg or use trace to print TokenStatistics - ok(1, "print statistics:\n\tTokenID = %u_%d\n\tSecurityImperLevel = %d\n\tPrivCount = %d\n\tGroupCount = %d\n\n", TStats->TokenId.LowPart, - TStats->TokenId.HighPart, + ok(1, "print statistics:\n\tTokenID = %u_%d\n\tSecurityImperLevel = %d\n\tPrivCount = %d\n\tGroupCount = %d\n\n", TStats->TokenId.LowPart, + TStats->TokenId.HighPart, TStats->ImpersonationLevel, TStats->PrivilegeCount, TStats->GroupCount diff --git a/modules/rostests/kmtests/rtl/RtlMemory.c b/modules/rostests/kmtests/rtl/RtlMemory.c index 644180b026b..0e9806a095d 100644 --- a/modules/rostests/kmtests/rtl/RtlMemory.c +++ b/modules/rostests/kmtests/rtl/RtlMemory.c @@ -291,7 +291,7 @@ START_TEST(RtlMemory) 1, 1, 0x12, 8, HalfSize / 8, 0x12, 0x34, 0x56, 0x78, 0x9A, 0xBC, 0xDE, 0xF0, 1, 7, 0x12, 0); - + ok_bool_true(RtlEqualMemory((PVOID)1, (PVOID)2, 0), "RtlEqualMemory returned"); ok_bool_true(RtlEqualMemory(Buffer, Buffer + HalfSize - 7, HalfSize - 8), diff --git a/modules/rostests/kmtests/rtl/RtlStrSafe.c b/modules/rostests/kmtests/rtl/RtlStrSafe.c index 3bb8d30355a..0dd68291f7c 100644 --- a/modules/rostests/kmtests/rtl/RtlStrSafe.c +++ b/modules/rostests/kmtests/rtl/RtlStrSafe.c @@ -44,7 +44,7 @@ Test_RtlUnicodeStringPrintf() ok_eq_hex(Status, STATUS_SUCCESS); ok_eq_size(EqualBytes, sizeof(FormatStringIntsResult)); ok_eq_uint(UsString.Length, sizeof(FormatStringIntsResult) - sizeof(WCHAR)); - ok_eq_uint(UsString.MaximumLength, BufferSize); + ok_eq_uint(UsString.MaximumLength, BufferSize); KmtFreeGuarded(pBuffer); pBuffer = NULL; diff --git a/modules/rostests/regtests/crt/iofuncs.c b/modules/rostests/regtests/crt/iofuncs.c index cc64ac2c56a..8ee761d9a0f 100644 --- a/modules/rostests/regtests/crt/iofuncs.c +++ b/modules/rostests/regtests/crt/iofuncs.c @@ -47,7 +47,7 @@ struct _testData void Test_ofuncs() { - int i; + int i; char* buf = NULL; /* Test exponential format */ @@ -60,15 +60,15 @@ void Test_ofuncs() for (i = 0; i < sizeof(ECVTTESTDATA)/sizeof(ECVTTESTDATA[0]); i++) { sprintf(buf, "%-+.*E", ECVTTESTDATA[i].prec, ECVTTESTDATA[i].val); - ok(!strcmp(buf, ECVTTESTDATA[i].exp), - "sprintf exp test %d failed: got %s, expected %s\n", + ok(!strcmp(buf, ECVTTESTDATA[i].exp), + "sprintf exp test %d failed: got %s, expected %s\n", i, buf, ECVTTESTDATA[i].exp); } for (i = 0; i < sizeof(ECVTTESTDATA)/sizeof(ECVTTESTDATA[0]); i++) { sprintf(buf, "%-+.*E", ECVTTESTDATA[i].prec + 2, ECVTTESTDATA[i].val); - ok(!strcmp(buf, ECVTTESTDATA[i].exp2), - "sprintf exp +2 prec test %d failed: got %s, expected %s\n", + ok(!strcmp(buf, ECVTTESTDATA[i].exp2), + "sprintf exp +2 prec test %d failed: got %s, expected %s\n", i, buf, ECVTTESTDATA[i].exp2); } diff --git a/modules/rostests/regtests/gdi/xlate.c b/modules/rostests/regtests/gdi/xlate.c index e981381cb53..178e4b93fb9 100644 --- a/modules/rostests/regtests/gdi/xlate.c +++ b/modules/rostests/regtests/gdi/xlate.c @@ -96,7 +96,7 @@ ULONG iXlateFromRGB(ULONG iFormat, COLORREF crColor) { ULONG ulRed, ulGreen, ulBlue; - + ulRed = GetRValue(crColor); ulGreen = GetGValue(crColor); ulBlue = GetBValue(crColor); @@ -136,7 +136,7 @@ COLORREF iXlateToRGB(ULONG iFormat, ULONG ulColor) { ULONG ulRed, ulGreen, ulBlue; - + switch (iFormat) { case BMF_1BPP: @@ -191,7 +191,7 @@ GetDIBPixel(ULONG iFormat, PVOID pvBits, ULONG x) switch (iFormat) { case BMF_1BPP: - // + // case BMF_16BPP_555: case BMF_16BPP_565: return *(WORD*)((PCHAR)pvBits + x * sizeof(WORD)); @@ -499,7 +499,7 @@ Test_SrcMono() ok(c == expected, "expected %lx, got %lx\n", expected, c); Test_SrcMono1(BMF_16BPP_555, hbmp, pvBits); - + DeleteObject(hbmp); /* Create a 565 DIB section */ @@ -537,7 +537,7 @@ START_TEST(xlate) { Initialize(); - Test_SrcMono(); + Test_SrcMono(); } // trunk: 41 failures diff --git a/modules/rostests/testdata/old/ReadMe.txt b/modules/rostests/testdata/old/ReadMe.txt index 2c6129599f2..61185fee47c 100644 --- a/modules/rostests/testdata/old/ReadMe.txt +++ b/modules/rostests/testdata/old/ReadMe.txt @@ -1,12 +1,11 @@ We can not test follow format yet. - Follow format need be genreted to complete all test -*.fon : Font resource file. -*.fnt : Raw bitmap font file. -*.ttc : East Asian Windows: TrueType font collection. -*.fot : TrueType resource file. -*.mmm : multiple master Type1 font resource file. It must be used with .pfm and .pfb files. +*.fon : Font resource file. +*.fnt : Raw bitmap font file. +*.ttc : East Asian Windows: TrueType font collection. +*.fot : TrueType resource file. +*.mmm : multiple master Type1 font resource file. It must be used with .pfm and .pfb files. Follow format have been genrate from test.std with fontforge in cygwin test.otf @@ -14,8 +13,5 @@ test.pfb test.pfm test.ttf - How to setup test data -Copy this folder to same folder as gdi32api.exe - - +Copy this folder to same folder as gdi32api.exe diff --git a/modules/rostests/tests/README.txt b/modules/rostests/tests/README.txt index 92ec4ce787e..0bb43314915 100644 --- a/modules/rostests/tests/README.txt +++ b/modules/rostests/tests/README.txt @@ -1,4 +1,4 @@ -This folder contains tests that are not merged in to +This folder contains tests that are not merged in to the new regression testing system. Please DO NOT add new tests here. diff --git a/modules/rostests/tests/mmixer_test/test.c b/modules/rostests/tests/mmixer_test/test.c index 6e8a1354b7c..8584359b1ef 100644 --- a/modules/rostests/tests/mmixer_test/test.c +++ b/modules/rostests/tests/mmixer_test/test.c @@ -34,7 +34,7 @@ VOID test() { - + hwnd = CreateWindowExA(0, "static", "winmm test", WS_POPUP, 0,0,100,100, 0, 0, 0, NULL); diff --git a/modules/rostests/tests/parttest/parttest.c b/modules/rostests/tests/parttest/parttest.c index 688e1258b14..ce9c8f378eb 100644 --- a/modules/rostests/tests/parttest/parttest.c +++ b/modules/rostests/tests/parttest/parttest.c @@ -179,7 +179,7 @@ BOOL CheckAgainstNTFS(PNTFSBootSector Sector) /* Check cluster size */ ClusterSize = Sector->BytesPerSector * Sector->SectorsPerCluster; - if (ClusterSize != 512 && ClusterSize != 1024 && + if (ClusterSize != 512 && ClusterSize != 1024 && ClusterSize != 2048 && ClusterSize != 4096 && ClusterSize != 8192 && ClusterSize != 16384 && ClusterSize != 32768 && ClusterSize != 65536) diff --git a/modules/rostests/tests/spec2def/testdata/06-stubs.asm b/modules/rostests/tests/spec2def/testdata/06-stubs.asm index 5bad411c2f1..2943ce3d581 100644 --- a/modules/rostests/tests/spec2def/testdata/06-stubs.asm +++ b/modules/rostests/tests/spec2def/testdata/06-stubs.asm @@ -1,4 +1,4 @@ -; File generated automatically, do not edit! +; File generated automatically, do not edit! .586 .model flat diff --git a/modules/rostests/tests/spec2def/testdata/07-stubs.asm b/modules/rostests/tests/spec2def/testdata/07-stubs.asm index 74c2a6f2f8d..483765bb2e1 100644 --- a/modules/rostests/tests/spec2def/testdata/07-stubs.asm +++ b/modules/rostests/tests/spec2def/testdata/07-stubs.asm @@ -1,4 +1,4 @@ -; File generated automatically, do not edit! +; File generated automatically, do not edit! .code PUBLIC _stub_FastcallFunction diff --git a/modules/rostests/win32/DriverLoading/Application/main.c b/modules/rostests/win32/DriverLoading/Application/main.c index 01d856a66df..8ffc9f070d2 100644 --- a/modules/rostests/win32/DriverLoading/Application/main.c +++ b/modules/rostests/win32/DriverLoading/Application/main.c @@ -100,7 +100,7 @@ SneakyUndocumentedMethods(LPCWSTR lpDriverPath) if (LoadVia_SystemExtendServiceTableInformation(szDevice)) { wprintf(L"\tStarted\n"); - + NtStopDriver(DRIVER_NAME); } diff --git a/modules/rostests/win32/DriverLoading/Application/undoc.c b/modules/rostests/win32/DriverLoading/Application/undoc.c index 6a3f8c098a6..368fe3fb58b 100644 --- a/modules/rostests/win32/DriverLoading/Application/undoc.c +++ b/modules/rostests/win32/DriverLoading/Application/undoc.c @@ -193,7 +193,7 @@ NtStopDriver(LPCWSTR lpService) // // We shouldn't be able to call this from umode. -// Returns true if +// Returns true if // BOOL LoadVia_SystemLoadGdiDriverInformation(LPWSTR lpDriverPath) diff --git a/modules/rostests/win32/comctl32/buttonvistest/buttonvistest.cpp b/modules/rostests/win32/comctl32/buttonvistest/buttonvistest.cpp index 266a8eee970..e40a8a41c2f 100644 --- a/modules/rostests/win32/comctl32/buttonvistest/buttonvistest.cpp +++ b/modules/rostests/win32/comctl32/buttonvistest/buttonvistest.cpp @@ -70,7 +70,7 @@ static HWND CreateBtn(HWND hWnd, LPCWSTR Text, LONG style, int i, int j) { WCHAR buffer[100]; SIZE s; - + HWND ret = CreateWnd(hWnd, L"Button", Text, style, i, j); if (GetWindowLongW(ret, GWL_STYLE) != (style | WS_CHILD | WS_VISIBLE)) { @@ -134,7 +134,7 @@ int WINAPI wWinMain(_In_ HINSTANCE hInstance, hbrCtlColorBtn = hbrCyan; hbrPrintClientClear = hbrYellow; hbrErase = hbrGreen; - + bSkipErase = FALSE; bSkipPaint = FALSE; @@ -142,13 +142,13 @@ int WINAPI wWinMain(_In_ HINSTANCE hInstance, HWND hWnd = CreateWindowExW(WS_EX_CLIENTEDGE, L"ButtonTests", L"Button tests", WS_OVERLAPPEDWINDOW| WS_HSCROLL| WS_VSCROLL, CW_USEDEFAULT, 0, CW_USEDEFAULT, 0, NULL, NULL, hInstance, NULL); - + CreateWnd(hWnd, L"Static", L"no images", 0, -1, 0); CreateWnd(hWnd, L"Static", L"with BM_SETIMAGE", 0, -1, 1); CreateWnd(hWnd, L"Static", L"with BM_SETIMAGE", 0, -1, 2); CreateWnd(hWnd, L"Static", L"with BM_SETIMAGE and BS_BITMAP", 0, -1, 3); CreateWnd(hWnd, L"Static", L"with BM_SETIMAGE and BS_ICON", 0, -1, 4); - + CreateWnd(hWnd, L"Static", L"Button V5", 0, 0, -1); CreateButtonSet(hWnd, &hwnd[0], 0, 0, BS_PUSHBUTTON); CreateButtonSet(hWnd, &hwnd[5], 1, 0, BS_DEFPUSHBUTTON); @@ -205,7 +205,7 @@ int WINAPI wWinMain(_In_ HINSTANCE hInstance, SendMessageW(hwnd[i], BCM_SETIMAGELIST, 0, (LPARAM)&btniml); if (bActivated) DeactivateActCtx(0, cookie); - + SCROLLINFO vsi = {sizeof(SCROLLINFO), SIF_ALL, 0, 2 * TOP_MARGIN + 10 * (Y_GAP + Y_HEIGHT), Y_HEIGHT, 0, 0}; SCROLLINFO hsi = {sizeof(SCROLLINFO), SIF_ALL, 0, 2 * LEFT_MARGIN + 13 * (X_GAP + X_WIDTH), X_WIDTH, 0, 0}; @@ -214,7 +214,7 @@ int WINAPI wWinMain(_In_ HINSTANCE hInstance, ShowScrollBar(hWnd, SB_HORZ, TRUE); ShowScrollBar(hWnd, SB_VERT, TRUE); - + ShowWindow(hWnd, nCmdShow); UpdateWindow(hWnd); @@ -402,7 +402,7 @@ LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) case IDM_BLUE_PRINTCLNT: hbrPrintClientClear = hbrBlue; break; case IDM_YELLOW_PRINTCLNT: hbrPrintClientClear = hbrYellow; break; case IDM_CYAN_PRINTCLNT: hbrPrintClientClear = hbrCyan; break; - + case IDM_SKIP_ERASE: bSkipErase = !bSkipErase; break; case IDM_SKIP_PAINT: bSkipPaint = !bSkipPaint; break; default: diff --git a/modules/rostests/win32/kernel32/notificationtest/notificationtest.c b/modules/rostests/win32/kernel32/notificationtest/notificationtest.c index d3b84ecfdd4..f6280324921 100644 --- a/modules/rostests/win32/kernel32/notificationtest/notificationtest.c +++ b/modules/rostests/win32/kernel32/notificationtest/notificationtest.c @@ -35,8 +35,8 @@ int _tmain(int argc, TCHAR *argv[]) void WatchDirectory(LPTSTR lpDir) { - DWORD dwWaitStatus; - HANDLE dwChangeHandles[2]; + DWORD dwWaitStatus; + HANDLE dwChangeHandles[2]; TCHAR lpDrive[4]; TCHAR lpFile[_MAX_FNAME]; TCHAR lpExt[_MAX_EXT]; @@ -45,93 +45,93 @@ void WatchDirectory(LPTSTR lpDir) lpDrive[2] = (TCHAR)'\\'; lpDrive[3] = (TCHAR)'\0'; - -// Watch the directory for file creation and deletion. - - dwChangeHandles[0] = FindFirstChangeNotification( - lpDir, // directory to watch - FALSE, // do not watch subtree - FILE_NOTIFY_CHANGE_FILE_NAME); // watch file name changes - - if (dwChangeHandles[0] == INVALID_HANDLE_VALUE) + +// Watch the directory for file creation and deletion. + + dwChangeHandles[0] = FindFirstChangeNotification( + lpDir, // directory to watch + FALSE, // do not watch subtree + FILE_NOTIFY_CHANGE_FILE_NAME); // watch file name changes + + if (dwChangeHandles[0] == INVALID_HANDLE_VALUE) { printf("\n ERROR: FindFirstChangeNotification function failed.\n"); - ExitProcess(GetLastError()); + ExitProcess(GetLastError()); } - -// Watch the subtree for directory creation and deletion. - - dwChangeHandles[1] = FindFirstChangeNotification( - lpDrive, // directory to watch - TRUE, // watch the subtree - FILE_NOTIFY_CHANGE_DIR_NAME); // watch dir name changes - - if (dwChangeHandles[1] == INVALID_HANDLE_VALUE) + +// Watch the subtree for directory creation and deletion. + + dwChangeHandles[1] = FindFirstChangeNotification( + lpDrive, // directory to watch + TRUE, // watch the subtree + FILE_NOTIFY_CHANGE_DIR_NAME); // watch dir name changes + + if (dwChangeHandles[1] == INVALID_HANDLE_VALUE) { printf("\n ERROR: FindFirstChangeNotification function failed.\n"); - ExitProcess(GetLastError()); + ExitProcess(GetLastError()); } - + // Make a final validation check on our handles. if ((dwChangeHandles[0] == NULL) || (dwChangeHandles[1] == NULL)) { printf("\n ERROR: Unexpected NULL from FindFirstChangeNotification.\n"); - ExitProcess(GetLastError()); + ExitProcess(GetLastError()); } -// Change notification is set. Now wait on both notification -// handles and refresh accordingly. - - while (TRUE) - { +// Change notification is set. Now wait on both notification +// handles and refresh accordingly. + + while (TRUE) + { // Wait for notification. - + printf("\nWaiting for notification...\n"); - dwWaitStatus = WaitForMultipleObjects(2, dwChangeHandles, - FALSE, INFINITE); - - switch (dwWaitStatus) - { - case WAIT_OBJECT_0: - + dwWaitStatus = WaitForMultipleObjects(2, dwChangeHandles, + FALSE, INFINITE); + + switch (dwWaitStatus) + { + case WAIT_OBJECT_0: + // A file was created, renamed, or deleted in the directory. // Refresh this directory and restart the notification. - - RefreshDirectory(lpDir); + + RefreshDirectory(lpDir); if ( FindNextChangeNotification(dwChangeHandles[0]) == FALSE ) { printf("\n ERROR: FindNextChangeNotification function failed.\n"); - ExitProcess(GetLastError()); + ExitProcess(GetLastError()); } - break; - - case WAIT_OBJECT_0 + 1: - + break; + + case WAIT_OBJECT_0 + 1: + // A directory was created, renamed, or deleted. // Refresh the tree and restart the notification. - - RefreshTree(lpDrive); + + RefreshTree(lpDrive); if (FindNextChangeNotification(dwChangeHandles[1]) == FALSE ) { printf("\n ERROR: FindNextChangeNotification function failed.\n"); - ExitProcess(GetLastError()); + ExitProcess(GetLastError()); } - break; - + break; + case WAIT_TIMEOUT: - // A timeout occurred, this would happen if some value other + // A timeout occurred, this would happen if some value other // than INFINITE is used in the Wait call and no changes occur. // In a single-threaded environment you might not want an // INFINITE wait. - + printf("\nNo changes in the timeout period.\n"); break; - default: + default: printf("\n ERROR: Unhandled dwWaitStatus.\n"); ExitProcess(GetLastError()); break; diff --git a/modules/rostests/win32/user32/biditext/biditext.c b/modules/rostests/win32/user32/biditext/biditext.c index 6d0c263c8c9..5e5551deefe 100644 --- a/modules/rostests/win32/user32/biditext/biditext.c +++ b/modules/rostests/win32/user32/biditext/biditext.c @@ -12,7 +12,7 @@ #include "biditext.h" /* Prototypes */ -DWORD WINAPI LpkGetCharacterPlacement(HDC hdc, LPCWSTR lpString, INT uCount, INT nMaxExtent, +DWORD WINAPI LpkGetCharacterPlacement(HDC hdc, LPCWSTR lpString, INT uCount, INT nMaxExtent, GCP_RESULTSW *lpResults, DWORD dwFlags, DWORD dwUnused); BOOL WINAPI LpkExtTextOut(HDC hdc, int x, int y, @@ -167,7 +167,7 @@ LRESULT CALLBACK MainWndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) } break; } - + case WM_PAINT: { PAINTSTRUCT ps; diff --git a/modules/rostests/win32/user32/psmtest/psmtest.c b/modules/rostests/win32/user32/psmtest/psmtest.c index 39b5b60003d..386f1719b3d 100644 --- a/modules/rostests/win32/user32/psmtest/psmtest.c +++ b/modules/rostests/win32/user32/psmtest/psmtest.c @@ -57,7 +57,7 @@ wWinMain(HINSTANCE hInstance, HACCEL hAccelerators; MSG msg; WNDCLASSEXW wc; - + /* Class for our main window */ wc.cbSize = sizeof(wc); wc.style = 0; @@ -224,7 +224,7 @@ LRESULT CALLBACK MainWndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) DrawTest(hdc, 700, Test10, DT_NOPREFIX, LPK); DrawTest(hdc, 720, Test10, DT_HIDEPREFIX, LPK); DrawTest(hdc, 740, Test10, DT_PREFIXONLY, LPK); - + TextOutW(hdc, 100, 760, L"LpkPSMTextOut", 13); DrawTest(hdc, 0, Test, 0, USERLPK); diff --git a/modules/wallpapers/ReadMe.txt b/modules/wallpapers/ReadMe.txt index cd82eb93444..a5df0fa96a8 100644 --- a/modules/wallpapers/ReadMe.txt +++ b/modules/wallpapers/ReadMe.txt @@ -21,7 +21,7 @@ ReactOS_Mizu_16x9_A.png | See above ReactOS_Mizu_16x9_B.png | See above | See above Silhouette collection | Jake Collins (polar@ever3st.com) | https://ever3st.com/Graphics/Loot/ -To include the module in your build folder, run the configure script with the flags -DENABLE_WALLPAPERS=1 +To include the module in your build folder, run the configure script with the flags -DENABLE_WALLPAPERS=1 # For Windows users diff --git a/modules/wallpapers/Silhouette/README.md b/modules/wallpapers/Silhouette/README.md index b30861bd3cf..df22d29dbbc 100644 --- a/modules/wallpapers/Silhouette/README.md +++ b/modules/wallpapers/Silhouette/README.md @@ -1,7 +1,7 @@ # Silhouette wallpaper collection This is a collection of wallpapers lisenced for use -in the reactOS project. This work is licensed under a +in the ReactOS project. This work is licensed under a Creative Commons Attribution 4.0 International License. The original work can be found [here](http://ever3st.com/Graphics/Loot/) \ No newline at end of file diff --git a/modules/wallpapers/wallpapers.txt b/modules/wallpapers/wallpapers.txt index 97a59d4a498..277fb3aa5a0 100644 --- a/modules/wallpapers/wallpapers.txt +++ b/modules/wallpapers/wallpapers.txt @@ -57,13 +57,13 @@ Some useful links: * KDE-LOOK.ORG http://www.kde-look.org/ -* Frik85's ReactOS Fanpage +* Frik85's ReactOS Fanpage http://frik85.reactos.at (-> http://reactosde.re.funpic.de/mediagroup.php?sec=Graphic%20arts) -History: +History: 2005-02-25 Klemens Friedl 2005-05-31 Klemens Friedl diff --git a/ntoskrnl/include/internal/i386/callconv.s b/ntoskrnl/include/internal/i386/callconv.s index d8251c4f5cf..5c1a400c91b 100644 --- a/ntoskrnl/include/internal/i386/callconv.s +++ b/ntoskrnl/include/internal/i386/callconv.s @@ -10,7 +10,7 @@ // // @name CountArg -// +// // This macro counts the number of arguments in the ArgList and returns // the value in cCount. // @@ -32,7 +32,7 @@ // // @name RevPush -// +// // This macro pushes the arguments in ArgList in the reverse order // and returns the number of arguments in cCount // @@ -63,7 +63,7 @@ // // @name stdCallCall -// +// // This macro performs a function call using the STDCALL convention and applies // the correct name decoration required based on the stack bytes // @@ -82,7 +82,7 @@ // // @name stdCall -// +// // This macro pushes the arguments required for a function call using the // STDCALL convention and then issues the call // diff --git a/ntoskrnl/include/internal/se.h b/ntoskrnl/include/internal/se.h index 1f8dd8f8534..46cf4380488 100644 --- a/ntoskrnl/include/internal/se.h +++ b/ntoskrnl/include/internal/se.h @@ -601,13 +601,13 @@ SepRegQueryHelper( _In_ ULONG DataLength, _Out_ PVOID ValueData); -VOID +VOID NTAPI SeQuerySecurityAccessMask( _In_ SECURITY_INFORMATION SecurityInformation, _Out_ PACCESS_MASK DesiredAccess); -VOID +VOID NTAPI SeSetSecurityAccessMask( _In_ SECURITY_INFORMATION SecurityInformation, diff --git a/ntoskrnl/se/access.c b/ntoskrnl/se/access.c index 97a53380779..7e6eb23d136 100644 --- a/ntoskrnl/se/access.c +++ b/ntoskrnl/se/access.c @@ -20,21 +20,21 @@ ERESOURCE SepSubjectContextLock; /** * @brief * Checks if a SID is present in a token. - * + * * @param[in] _Token * A valid token object. - * + * * @param[in] PrincipalSelfSid * A principal self SID. - * + * * @param[in] _Sid * A regular SID. - * + * * @param[in] Deny * If set to TRUE, the caller expected that a SID in a token * must be a deny-only SID, that is, access checks are performed * only for deny-only ACEs of the said SID. - * + * * @param[in] Restricted * If set to TRUE, the caller expects that a SID in a token is * restricted. @@ -133,10 +133,10 @@ SepSidInTokenEx( /** * @brief * Checks if a SID is present in a token. - * + * * @param[in] _Token * A valid token object. - * + * * @param[in] _Sid * A regular SID. * @@ -157,13 +157,13 @@ SepSidInToken( /** * @brief * Checks if a token belongs to the main user, being the owner. - * + * * @param[in] _Token * A valid token object. - * + * * @param[in] SecurityDescriptor * A security descriptor where the owner is to be found. - * + * * @param[in] TokenLocked * If set to TRUE, the token has been already locked and there's * no need to lock it again. Otherwise the function will acquire @@ -207,10 +207,10 @@ SepTokenIsOwner( /** * @brief * Retrieves token control information. - * + * * @param[in] _Token * A valid token object. - * + * * @param[out] SecurityDescriptor * The returned token control information. * @@ -244,28 +244,28 @@ SeGetTokenControlInformation( /** * @brief * Creates a client security context based upon an access token. - * + * * @param[in] Token * A valid token object. - * + * * @param[in] ClientSecurityQos * The Quality of Service (QoS) of a client security context. - * + * * @param[in] ServerIsRemote * If the client is a remote server (TRUE), the function will retrieve the * control information of an access token, that is, we're doing delegation * and that the server isn't local. - * + * * @param[in] TokenType * Type of token. - * + * * @param[in] ThreadEffectiveOnly * If set to TRUE, the client wants that the current thread wants to modify * (enable or disable) privileges and groups. - * + * * @param[in] ImpersonationLevel * Security impersonation level filled in the QoS context. - * + * * @param[out] ClientContext * The returned security client context. * @@ -370,15 +370,15 @@ SepCreateClientSecurity( * @brief * An extended function that captures the security subject context based upon * the specified thread and process. - * + * * @param[in] Thread * A thread where the calling thread's token is to be referenced for * the security context. - * + * * @param[in] Process * A process where the main process' token is to be referenced for * the security context. - * + * * @param[out] SubjectContext * The returned security subject context. * @@ -422,7 +422,7 @@ SeCaptureSubjectContextEx( * @brief * Captures the security subject context of the calling thread and calling * process. - * + * * @param[out] SubjectContext * The returned security subject context. * @@ -444,7 +444,7 @@ SeCaptureSubjectContext( * @brief * Locks both the referenced primary and client access tokens of a * security subject context. - * + * * @param[in] SubjectContext * A valid security context with both referenced tokens. * @@ -475,7 +475,7 @@ SeLockSubjectContext( * @brief * Unlocks both the referenced primary and client access tokens of a * security subject context. - * + * * @param[in] SubjectContext * A valid security context with both referenced tokens. * @@ -508,7 +508,7 @@ SeUnlockSubjectContext( * @brief * Releases both the primary and client tokens of a security * subject context. - * + * * @param[in] SubjectContext * The captured security context. * @@ -534,22 +534,22 @@ SeReleaseSubjectContext( /** * @brief * An extended function that creates an access state. - * + * * @param[in] Thread * Valid thread object where subject context is to be captured. - * + * * @param[in] Process * Valid process object where subject context is to be captured. - * + * * @param[in,out] AccessState * An initialized returned parameter to an access state. - * + * * @param[in] AuxData * Auxiliary security data for access state. - * + * * @param[in] Access * Type of access mask to assign. - * + * * @param[in] GenericMapping * Generic mapping for the access state to assign. * @@ -618,16 +618,16 @@ SeCreateAccessStateEx( /** * @brief * Creates an access state. - * + * * @param[in,out] AccessState * An initialized returned parameter to an access state. - * + * * @param[in] AuxData * Auxiliary security data for access state. - * + * * @param[in] Access * Type of access mask to assign. - * + * * @param[in] GenericMapping * Generic mapping for the access state to assign. * @@ -656,7 +656,7 @@ SeCreateAccessState( /** * @brief * Deletes an allocated access state from the memory. - * + * * @param[in] AccessState * A valid access state. * @@ -696,10 +696,10 @@ SeDeleteAccessState( /** * @brief * Sets a new generic mapping for an allocated access state. - * + * * @param[in] AccessState * A valid access state. - * + * * @param[in] GenericMapping * New generic mapping to assign. * @@ -721,16 +721,16 @@ SeSetAccessStateGenericMapping( /** * @brief * Creates a client security context. - * + * * @param[in] Thread * Thread object of the client where impersonation has to begin. - * + * * @param[in] Qos * Quality of service to specify what kind of impersonation to be done. - * + * * @param[in] RemoteClient * If set to TRUE, the client that we're going to impersonate is remote. - * + * * @param[out] ClientContext * The returned security client context. * @@ -782,17 +782,17 @@ SeCreateClientSecurity( * @brief * Creates a client security context based upon the captured security * subject context. - * + * * @param[in] SubjectContext * The captured subject context where client security is to be created * from. - * + * * @param[in] ClientSecurityQos * Quality of service to specify what kind of impersonation to be done. - * + * * @param[in] ServerIsRemote * If set to TRUE, the client that we're going to impersonate is remote. - * + * * @param[out] ClientContext * The returned security client context. * @@ -840,13 +840,13 @@ SeCreateClientSecurityFromSubjectContext( /** * @brief * Extended function that impersonates a client. - * + * * @param[in] ClientContext * A valid client context. - * + * * @param[in] ServerThread * The thread where impersonation is to be done. - * + * * @return * STATUS_SUCCESS is returned if the calling thread successfully impersonates * the client. A failure NTSTATUS code is returned otherwise. @@ -886,10 +886,10 @@ SeImpersonateClientEx( /** * @brief * Impersonates a client user. - * + * * @param[in] ClientContext * A valid client context. - * + * * @param[in] ServerThread * The thread where impersonation is to be done. * * diff --git a/ntoskrnl/se/accesschk.c b/ntoskrnl/se/accesschk.c index 537ab9739a9..a8322c326ac 100644 --- a/ntoskrnl/se/accesschk.c +++ b/ntoskrnl/se/accesschk.c @@ -22,46 +22,46 @@ * Private function that determines whether security access rights can be given * to an object depending on the security descriptor and other security context * entities, such as an owner. - * + * * @param[in] SecurityDescriptor * Security descriptor of the object that is being accessed. - * + * * @param[in] SubjectSecurityContext * The captured subject security context. - * + * * @param[in] DesiredAccess * Access right bitmask that the calling thread wants to acquire. - * + * * @param[in] ObjectTypeListLength * The length of a object type list. - * + * * @param[in] PreviouslyGrantedAccess * The access rights previously acquired in the past. - * + * * @param[out] Privileges * The returned set of privileges. - * + * * @param[in] GenericMapping * The generic mapping of access rights of an object type. - * + * * @param[in] AccessMode * The processor request level mode. - * + * * @param[out] GrantedAccessList * A list of granted access rights. - * + * * @param[out] AccessStatusList * The returned status code specifying why access cannot be made * onto an object (if said access is denied in the first place). - * + * * @param[in] UseResultList - * If set to TRUE, the function will return complete lists of + * If set to TRUE, the function will return complete lists of * access status codes and granted access rights. - * + * * @return * Returns TRUE if access onto the specific object is allowed, FALSE * otherwise. - * + * * @remarks * The function is currently incomplete! */ @@ -334,11 +334,11 @@ ReturnCommonStatus: /** * @brief * Retrieves the main user from a security descriptor. - * + * * @param[in] SecurityDescriptor * A valid allocated security descriptor structure where the owner * is to be retrieved. - * + * * @return * Returns a SID that represents the main user (owner). */ @@ -361,11 +361,11 @@ SepGetSDOwner( /** * @brief * Retrieves the group from a security descriptor. - * + * * @param[in] SecurityDescriptor * A valid allocated security descriptor structure where the group * is to be retrieved. - * + * * @return * Returns a SID that represents a group. */ @@ -388,10 +388,10 @@ SepGetSDGroup( /** * @brief * Retrieves the length size of a set list of privileges structure. - * + * * @param[in] PrivilegeSet * A valid set of privileges. - * + * * @return * Returns the total length of a set of privileges. */ @@ -417,39 +417,39 @@ SepGetPrivilegeSetLength( * Determines whether security access rights can be given to an object * depending on the security descriptor and other security context * entities, such as an owner. - * + * * @param[in] SecurityDescriptor * Security descriptor of the object that is being accessed. - * + * * @param[in] SubjectSecurityContext * The captured subject security context. - * + * * @param[in] SubjectContextLocked * If set to TRUE, a lock must be acquired for the security subject * context. - * + * * @param[in] DesiredAccess * Access right bitmask that the calling thread wants to acquire. - * + * * @param[in] PreviouslyGrantedAccess * The access rights previously acquired in the past. - * + * * @param[out] Privileges * The returned set of privileges. - * + * * @param[in] GenericMapping * The generic mapping of access rights of an object type. - * + * * @param[in] AccessMode * The processor request level mode. - * + * * @param[out] GrantedAccess * A list of granted access rights. - * + * * @param[out] AccessStatus * The returned status code specifying why access cannot be made * onto an object (if said access is denied in the first place). - * + * * @return * Returns TRUE if access onto the specific object is allowed, FALSE * otherwise. @@ -578,20 +578,20 @@ SeAccessCheck( * depending on the security descriptor. Unlike the regular access check * procedure in the NT kernel, the fast traverse check is a faster way * to quickly check if access can be made into an object. - * + * * @param[in] SecurityDescriptor * Security descriptor of the object that is being accessed. - * + * * @param[in] AccessState * An access state to determine if the access token in the current * security context of the object is an restricted token. - * + * * @param[in] DesiredAccess * The access right bitmask where the calling thread wants to acquire. - * + * * @param[in] AccessMode * Process level request mode. - * + * * @return * Returns TRUE if access onto the specific object is allowed, FALSE * otherwise. @@ -668,32 +668,32 @@ SeFastTraverseCheck( * Determines whether security access rights can be given to an object * depending on the security descriptor and a valid handle to an access * token. - * + * * @param[in] SecurityDescriptor * Security descriptor of the object that is being accessed. - * + * * @param[in] TokenHandle * A handle to a token. - * + * * @param[in] DesiredAccess * The access right bitmask where the calling thread wants to acquire. - * + * * @param[in] GenericMapping * The generic mapping of access rights of an object type. - * + * * @param[out] PrivilegeSet * The returned set of privileges. - * + * * @param[in,out] PrivilegeSetLength * The total length size of a set of privileges. - * + * * @param[out] GrantedAccess * A list of granted access rights. - * + * * @param[out] AccessStatus * The returned status code specifying why access cannot be made * onto an object (if said access is denied in the first place). - * + * * @return * Returns STATUS_SUCCESS if access check has been done without problems * and that the object can be accessed. STATUS_GENERIC_NOT_MAPPED is returned @@ -955,41 +955,41 @@ NtAccessCheck( * @brief * Determines whether security access could be granted or not on * an object by the requestor who wants such access through type. - * + * * @param[in] SecurityDescriptor * A security descriptor with information data for auditing. - * + * * @param[in] PrincipalSelfSid * A principal self user SID. - * + * * @param[in] ClientToken * A client access token. - * + * * @param[in] DesiredAccess * The desired access masks rights requested by the caller. - * + * * @param[in] ObjectTypeList * A list of object types. - * + * * @param[in] ObjectTypeLength * The length size of the list. - * + * * @param[in] GenericMapping * The generic mapping list of access masks rights. - * + * * @param[in] PrivilegeSet * An array set of privileges. - * + * * @param[in,out] PrivilegeSetLength * The length size of the array set of privileges. - * + * * @param[out] GrantedAccess * The returned granted access rights. - * + * * @param[out] AccessStatus * The returned NTSTATUS code indicating the final results * of auditing. - * + * * @return * To be added... */ @@ -1017,41 +1017,41 @@ NtAccessCheckByType( * Determines whether security access could be granted or not on * an object by the requestor who wants such access through * type list. - * + * * @param[in] SecurityDescriptor * A security descriptor with information data for auditing. - * + * * @param[in] PrincipalSelfSid * A principal self user SID. - * + * * @param[in] ClientToken * A client access token. - * + * * @param[in] DesiredAccess * The desired access masks rights requested by the caller. - * + * * @param[in] ObjectTypeList * A list of object types. - * + * * @param[in] ObjectTypeLength * The length size of the list. - * + * * @param[in] GenericMapping * The generic mapping list of access masks rights. - * + * * @param[in] PrivilegeSet * An array set of privileges. - * + * * @param[in,out] PrivilegeSetLength * The length size of the array set of privileges. - * + * * @param[out] GrantedAccess * The returned granted access rights. - * + * * @param[out] AccessStatus * The returned NTSTATUS code indicating the final results * of auditing. - * + * * @return * To be added... */ diff --git a/ntoskrnl/se/acl.c b/ntoskrnl/se/acl.c index 5f73602e373..e160b34c429 100644 --- a/ntoskrnl/se/acl.c +++ b/ntoskrnl/se/acl.c @@ -27,7 +27,7 @@ PACL SeSystemAnonymousLogonDacl = NULL; * @brief * Initializes known discretionary access control lists in the system upon * kernel and Executive initialization procedure. - * + * * @return * Returns TRUE if all the DACLs have been successfully initialized, * FALSE otherwise. @@ -257,16 +257,16 @@ SepInitDACLs(VOID) * @brief * Allocates a discretionary access control list based on certain properties * of a regular and primary access tokens. - * + * * @param[in] Token * An access token. - * + * * @param[in] PrimaryToken * A primary access token. - * + * * @param[out] Dacl * The returned allocated DACL. - * + * * @return * Returns STATUS_SUCCESS if DACL creation from tokens has completed * successfully. STATUS_INSUFFICIENT_RESOURCES is returned if DACL @@ -323,26 +323,26 @@ SepCreateImpersonationTokenDacl( /** * @brief * Captures an access control list from an already valid input ACL. - * + * * @param[in] InputAcl * A valid ACL. - * + * * @param[in] AccessMode * Processor level access mode. The processor mode determines how * are the input arguments probed. - * + * * @param[in] PoolType * Pool type for new captured ACL for creation. The pool type determines * how the ACL data should reside in the pool memory. - * + * * @param[in] CaptureIfKernel * If set to TRUE and the processor access mode being KernelMode, we're * capturing an ACL directly in the kernel. Otherwise we're capturing * within a kernel mode driver. - * + * * @param[out] CapturedAcl * The returned and allocated captured ACL. - * + * * @return * Returns STATUS_SUCCESS if the ACL has been successfully captured. * STATUS_INSUFFICIENT_RESOURCES is returned otherwise. @@ -439,18 +439,18 @@ SepCaptureAcl( /** * @brief * Releases (frees) a captured ACL from the memory pool. - * + * * @param[in] CapturedAcl * A valid captured ACL to free. - * + * * @param[in] AccessMode * Processor level access mode. - * + * * @param[in] CaptureIfKernel * If set to TRUE and the processor access mode being KernelMode, we're * releasing an ACL directly in the kernel. Otherwise we're releasing * within a kernel mode driver. - * + * * @return * Nothing. */ @@ -475,22 +475,22 @@ SepReleaseAcl( * @brief * Determines if a certain ACE can or cannot be propagated based on * ACE inheritation flags and whatnot. - * + * * @param[in] AceFlags * Bit flags of an ACE to perform propagation checks. - * + * * @param[out] NewAceFlags * New ACE bit blags based on the specific ACE flags of the first * argument parameter. - * + * * @param[in] IsInherited * If set to TRUE, an ACE is deemed as directly inherited from another * instance. In that case we're allowed to propagate. - * + * * @param[in] IsDirectoryObject * If set to TRUE, an object directly inherits this ACE so we can propagate * it. - * + * * @return * Returns TRUE if an ACE can be propagated, FALSE otherwise. */ @@ -545,33 +545,33 @@ SepShouldPropagateAce( /** * @brief * Propagates (copies) an access control list. - * + * * @param[out] AclDest * The destination parameter with propagated ACL. - * + * * @param[in,out] AclLength * The length of the ACL that we propagate. - * + * * @param[in] AclSource * The source instance of a valid ACL. - * + * * @param[in] Owner * A SID that represents the main user that identifies the ACL. - * + * * @param[in] Group * A SID that represents a group that identifies the ACL. - * + * * @param[in] IsInherited * If set to TRUE, that means the ACL is directly inherited. - * + * * @param[in] IsDirectoryObject * If set to TRUE, that means the ACL is directly inherited because * of the object that inherits it. - * + * * @param[in] GenericMapping * Generic mapping of access rights to map only certain effective * ACEs. - * + * * @return * Returns STATUS_SUCCESS if ACL has been propagated successfully. * STATUS_BUFFER_TOO_SMALL is returned if the ACL length is not greater @@ -744,53 +744,53 @@ SepPropagateAcl( /** * @brief * Selects an ACL and returns it to the caller. - * + * * @param[in] ExplicitAcl * If specified, the specified ACL to the call will be * the selected ACL for the caller. - * + * * @param[in] ExplicitPresent * If set to TRUE and with specific ACL filled to the call, the * function will immediately return the specific ACL as the selected * ACL for the caller. - * + * * @param[in] ExplicitDefaulted * If set to FALSE and with specific ACL filled to the call, the ACL * is not a default ACL. Otherwise it's a default ACL that we cannot * select it as is. - * + * * @param[in] ParentAcl * If specified, the parent ACL will be used to determine the exact ACL * length to check if the ACL in question is not empty. If the list * is not empty then the function will select such ACL to the caller. - * + * * @param[in] DefaultAcl * If specified, the default ACL will be the selected one for the caller. - * + * * @param[out] AclLength * The size length of an ACL. - * + * * @param[in] Owner * A SID that represents the main user that identifies the ACL. - * + * * @param[in] Group * A SID that represents a group that identifies the ACL. - * + * * @param[out] AclPresent * The returned boolean value, indicating if the ACL that we want to select * does actually exist. - * + * * @param[out] IsInherited * The returned boolean value, indicating if the ACL we want to select it * is actually inherited or not. - * + * * @param[in] IsDirectoryObject * If set to TRUE, the object inherits this ACL. - * + * * @param[in] GenericMapping * Generic mapping of access rights to map only certain effective * ACEs of an ACL that we want to select it. - * + * * @return * Returns the selected access control list (ACL) to the caller, * NULL otherwise. diff --git a/ntoskrnl/se/audit.c b/ntoskrnl/se/audit.c index 2bd18e8fa20..0d993a1761d 100644 --- a/ntoskrnl/se/audit.c +++ b/ntoskrnl/se/audit.c @@ -22,7 +22,7 @@ UNICODE_STRING SeSubsystemName = RTL_CONSTANT_STRING(L"Security"); * @unimplemented * @brief * Peforms a detailed security auditing with an access token. - * + * * @param[in] Token * A valid token object. * @@ -43,7 +43,7 @@ SeDetailedAuditingWithToken( * @brief * Peforms a security auditing against a process that is about to * be created. - * + * * @param[in] Process * An object that points to a process which is in process of * creation. @@ -64,7 +64,7 @@ SeAuditProcessCreate( * @brief * Peforms a security auditing against a process that is about to * be terminated. - * + * * @param[in] Process * An object that points to a process which is in process of * termination. @@ -83,14 +83,14 @@ SeAuditProcessExit( /** * @brief * Initializes a process audit name and returns it to the caller. - * + * * @param[in] FileObject * File object that points to a name to be queried. - * + * * @param[in] DoAudit * If set to TRUE, the function will perform various security - * auditing onto the audit name. - * + * auditing onto the audit name. + * * @param[out] AuditInfo * The returned audit info data. * @@ -179,11 +179,11 @@ SeInitializeProcessAuditName( /** * @brief * Finds the process image name of a specific process. - * + * * @param[in] Process * Process object submitted by the caller, where the image name * is to be located. - * + * * @param[out] ProcessImageName * An output Unicode string structure with the located process * image name. @@ -266,11 +266,11 @@ SeLocateProcessImageName( /** * @brief * Closes an audit alarm event of an object. - * + * * @param[in] SubsystemName * A Unicode string pointing to the name of the subsystem where auditing * alarm event has to be closed. - * + * * @param[in] HandleId * A handle to an ID where such ID represents the identification of the * object where audit alarm is to be closed. @@ -278,7 +278,7 @@ SeLocateProcessImageName( * @param[in] Sid * A SID that represents the user who attempted to close the audit * alarm. - * + * * @return * Nothing. */ @@ -296,10 +296,10 @@ SepAdtCloseObjectAuditAlarm( * @brief * Performs an audit alarm to a privileged service request. * This is a worker function. - * + * * @param[in] SubjectContext * A security subject context used for the auditing process. - * + * * @param[in] SubsystemName * A Unicode string that represents the name of a subsystem that * actuated the procedure of alarm auditing of a privileged @@ -308,22 +308,22 @@ SepAdtCloseObjectAuditAlarm( * @param[in] ServiceName * A Unicode string that represents the name of a privileged * service request for auditing. - * + * * @param[in] Token * An access token. - * + * * @param[in] PrimaryToken - * A primary access token. - * + * A primary access token. + * * @param[in] Privileges * An array set of privileges used to check if the privileged * service does actually have all the required set of privileges * for security access. - * + * * @param[in] AccessGranted * When auditing is done, the function will return TRUE to the caller * if access is granted, FALSE otherwise. - * + * * @return * Nothing. */ @@ -344,23 +344,23 @@ SepAdtPrivilegedServiceAuditAlarm( /** * @brief * Performs an audit alarm to a privileged service request. - * + * * @param[in] ServiceName * A Unicode string that represents the name of a privileged * service request for auditing. - * + * * @param[in] SubjectContext * A security subject context used for the auditing process. - * + * * @param[in] PrivilegeSet * An array set of privileges used to check if the privileged * service does actually have all the required set of privileges * for security access. - * + * * @param[in] AccessGranted * When auditing is done, the function will return TRUE to the caller * if access is granted, FALSE otherwise. - * + * * @return * Nothing. */ @@ -414,19 +414,19 @@ SePrivilegedServiceAuditAlarm( /** * @brief * Captures a list of object types. - * + * * @param[in] ObjectTypeList * An existing list of object types. - * + * * @param[in] ObjectTypeListLength * The length size of the list. - * + * * @param[in] PreviousMode * Processor access level mode. - * + * * @param[out] CapturedObjectTypeList * The captured list of object types. - * + * * @return * Returns STATUS_SUCCESS if the list of object types has been captured * successfully. STATUS_INVALID_PARAMETER is returned if the caller hasn't @@ -492,13 +492,13 @@ SeCaptureObjectTypeList( /** * @brief * Releases a buffer list of object types. - * + * * @param[in] CapturedObjectTypeList * A list of object types to free. - * + * * @param[in] PreviousMode * Processor access level mode. - * + * * @return * Nothing. */ @@ -517,69 +517,69 @@ SeReleaseObjectTypeList( * @brief * Worker function that serves as the main heart and brain of the whole * concept and implementation of auditing in the kernel. - * + * * @param[in] SubsystemName * A Unicode string that represents the name of a subsystem that * actuates the auditing process. - * + * * @param[in] HandleId * A handle to an ID used to identify an object where auditing * is to be done. - * + * * @param[in] SubjectContext * Security subject context. - * + * * @param[in] ObjectTypeName * A Unicode string that represents the name of an object type. - * + * * @param[in] ObjectName * The name of the object. - * + * * @param[in] SecurityDescriptor * A security descriptor with internal security information details * for audit. - * + * * @param[in] PrincipalSelfSid * A principal self user SID. - * + * * @param[in] DesiredAccess * The desired access rights masks requested by the caller. - * + * * @param[in] AuditType * Type of audit to start. This parameter influences how an audit * should be done. - * + * * @param[in] HaveAuditPrivilege * If set to TRUE, the security subject context has the audit privilege thus - * it is allowed the ability to perform the audit. - * + * it is allowed the ability to perform the audit. + * * @param[in] ObjectTypeList * A list of object types. - * + * * @param[in] ObjectTypeListLength * The length size of the list. - * + * * @param[in] GenericMapping * The generic mapping table of access rights used whilst performing auditing * sequence procedure. - * + * * @param[out] GrantedAccessList * This parameter is used to return to the caller a list of actual granted access * rights masks that the audited object has. - * + * * @param[out] AccessStatusList * This parameter is used to return to the caller a list of status return codes. * The function may actually return a single NTSTATUS code if the calling thread * sets UseResultList parameter to FALSE. - * + * * @param[out] GenerateOnClose * Returns TRUE if the function has generated a list of granted access rights and * status codes on termination, FALSE otherwise. - * + * * @param[in] UseResultList * If set to TRUE, the caller wants that the function should only return a single * NTSTATUS code. - * + * * @return * Returns STATUS_SUCCESS if the function has completed the whole internal * auditing procedure mechanism with success. @@ -630,72 +630,72 @@ SepAccessCheckAndAuditAlarmWorker( * @brief * Performs security auditing, if the specific object can be granted * security access or not. - * + * * @param[in] SubsystemName * A Unicode string that represents the name of a subsystem that * actuates the auditing process. - * + * * @param[in] HandleId * A handle to an ID used to identify an object where auditing * is to be done. - * + * * @param[in] SubjectContext * Security subject context. - * + * * @param[in] ObjectTypeName * A Unicode string that represents the name of an object type. - * + * * @param[in] ObjectName * The name of the object. - * + * * @param[in] SecurityDescriptor * A security descriptor with internal security information details * for audit. - * + * * @param[in] PrincipalSelfSid * A principal self user SID. - * + * * @param[in] DesiredAccess * The desired access rights masks requested by the caller. - * + * * @param[in] AuditType * Type of audit to start. This parameter influences how an audit * should be done. - * + * * @param[in] Flags * Flag bitmask parameter. - * + * * @param[in] HaveAuditPrivilege * If set to TRUE, the security subject context has the audit privilege thus - * it is allowed the ability to perform the audit. - * + * it is allowed the ability to perform the audit. + * * @param[in] ObjectTypeList * A list of object types. - * + * * @param[in] ObjectTypeListLength * The length size of the list. - * + * * @param[in] GenericMapping * The generic mapping table of access rights used whilst performing auditing * sequence procedure. - * + * * @param[out] GrantedAccessList * This parameter is used to return to the caller a list of actual granted access * rights masks that the audited object has. - * + * * @param[out] AccessStatusList * This parameter is used to return to the caller a list of status return codes. * The function may actually return a single NTSTATUS code if the calling thread * sets UseResultList parameter to FALSE. - * + * * @param[out] GenerateOnClose * Returns TRUE if the function has generated a list of granted access rights and * status codes on termination, FALSE otherwise. - * + * * @param[in] UseResultList * If set to TRUE, the caller wants that the function should only return a single * NTSTATUS code. - * + * * @return * Returns STATUS_SUCCESS if the function has completed the whole internal * auditing procedure mechanism with success. STATUS_INVALID_PARAMETER is @@ -1048,18 +1048,18 @@ Cleanup: * @unimplemented * @brief * Performs an audit against a hard link creation. - * + * * @param[in] FileName * A Unicode string that points to the name of the file. - * + * * @param[in] LinkName * A Unicode string that points to a link. - * + * * @param[out] bSuccess * If TRUE, the function has successfully audited * the hard link and security access can be granted, * FALSE otherwise. - * + * * @return * Nothing. */ @@ -1078,14 +1078,14 @@ SeAuditHardLinkCreation( * @brief * Determines whether auditing against file events is being * done or not. - * + * * @param[in] AccessGranted * If set to TRUE, the access attempt is deemed as successful * otherwise set it to FALSE. - * + * * @param[in] SecurityDescriptor * A security descriptor. - * + * * @return * Returns TRUE if auditing is being currently done, FALSE otherwise. */ @@ -1104,18 +1104,18 @@ SeAuditingFileEvents( * @brief * Determines whether auditing against file events with subject context * is being done or not. - * + * * @param[in] AccessGranted * If set to TRUE, the access attempt is deemed as successful * otherwise set it to FALSE. - * + * * @param[in] SecurityDescriptor * A security descriptor. - * + * * @param[in] SubjectSecurityContext * If specified, the function will check if security auditing is currently * being done with this context. - * + * * @return * Returns TRUE if auditing is being currently done, FALSE otherwise. */ @@ -1135,14 +1135,14 @@ SeAuditingFileEventsWithContext( * @brief * Determines whether auditing against hard links events is being * done or not. - * + * * @param[in] AccessGranted * If set to TRUE, the access attempt is deemed as successful * otherwise set it to FALSE. - * + * * @param[in] SecurityDescriptor * A security descriptor. - * + * * @return * Returns TRUE if auditing is being currently done, FALSE otherwise. */ @@ -1161,18 +1161,18 @@ SeAuditingHardLinkEvents( * @brief * Determines whether auditing against hard links events with subject context * is being done or not. - * + * * @param[in] AccessGranted * If set to TRUE, the access attempt is deemed as successful * otherwise set it to FALSE. - * + * * @param[in] SecurityDescriptor * A security descriptor. - * + * * @param[in] SubjectSecurityContext * If specified, the function will check if security auditing is currently * being done with this context. - * + * * @return * Returns TRUE if auditing is being currently done, FALSE otherwise. */ @@ -1192,18 +1192,18 @@ SeAuditingHardLinkEventsWithContext( * @brief * Determines whether auditing against files or global events with * subject context is being done or not. - * + * * @param[in] AccessGranted * If set to TRUE, the access attempt is deemed as successful * otherwise set it to FALSE. - * + * * @param[in] SecurityDescriptor * A security descriptor. - * + * * @param[in] SubjectSecurityContext * If specified, the function will check if security auditing is currently * being done with this context. - * + * * @return * Returns TRUE if auditing is being currently done, FALSE otherwise. */ @@ -1222,17 +1222,17 @@ SeAuditingFileOrGlobalEvents( * @unimplemented * @brief * Closes an alarm audit of an object. - * + * * @param[in] Object * An arbitrary pointer data that points to the object. - * + * * @param[in] Handle * A handle of the said object. - * + * * @param[in] PerformAction * Set this to TRUE to perform any auxiliary action, otherwise * set to FALSE. - * + * * @return * Nothing. */ @@ -1250,13 +1250,13 @@ SeCloseObjectAuditAlarm( * @unimplemented * @brief * Deletes an alarm audit of an object. - * + * * @param[in] Object * An arbitrary pointer data that points to the object. - * + * * @param[in] Handle * A handle of the said object. - * + * * @return * Nothing. */ @@ -1273,39 +1273,39 @@ SeDeleteObjectAuditAlarm( * @brief * Creates an audit with alarm notification of an object * that is being opened. - * + * * @param[in] ObjectTypeName * A Unicode string that points to the object type name. - * + * * @param[in] Object * If specified, the function will use this parameter to * directly open the object. - * + * * @param[in] AbsoluteObjectName * If specified, the function will use this parameter to * directly open the object through the absolute name * of the object. - * + * * @param[in] SecurityDescriptor * A security descriptor. - * + * * @param[in] AccessState * An access state right mask when opening the object. - * + * * @param[in] ObjectCreated * Set this to TRUE if the object has been fully created, * FALSE otherwise. - * + * * @param[in] AccessGranted * Set this to TRUE if access was deemed as granted. - * + * * @param[in] AccessMode * Processor level access mode. - * + * * @param[out] GenerateOnClose * A boolean flag returned to the caller once audit generation procedure * finishes. - * + * * @return * Nothing. */ @@ -1337,39 +1337,39 @@ SeOpenObjectAuditAlarm( * @brief * Creates an audit with alarm notification of an object * that is being opened for deletion. - * + * * @param[in] ObjectTypeName * A Unicode string that points to the object type name. - * + * * @param[in] Object * If specified, the function will use this parameter to * directly open the object. - * + * * @param[in] AbsoluteObjectName * If specified, the function will use this parameter to * directly open the object through the absolute name * of the object. - * + * * @param[in] SecurityDescriptor * A security descriptor. - * + * * @param[in] AccessState * An access state right mask when opening the object. - * + * * @param[in] ObjectCreated * Set this to TRUE if the object has been fully created, * FALSE otherwise. - * + * * @param[in] AccessGranted * Set this to TRUE if access was deemed as granted. - * + * * @param[in] AccessMode * Processor level access mode. - * + * * @param[out] GenerateOnClose * A boolean flag returned to the caller once audit generation procedure * finishes. - * + * * @return * Nothing. */ @@ -1393,27 +1393,27 @@ SeOpenObjectForDeleteAuditAlarm( * @brief * Raises an audit with alarm notification message * when an object tries to acquire this privilege. - * + * * @param[in] Handle * A handle to an object. - * + * * @param[in] SubjectContext * The security subject context for auditing. - * + * * @param[in] DesiredAccess * The desired right access masks requested by the caller. - * + * * @param[in] Privileges * An array set of privileges for auditing. - * + * * @param[out] AccessGranted * When the auditing procedure routine ends, it returns TRUE to the * caller if the object has the required privileges for access, * FALSE otherwise. - * + * * @param[in] CurrentMode * Processor level access mode. - * + * * @return * Nothing. */ @@ -1436,18 +1436,18 @@ SePrivilegeObjectAuditAlarm( * @brief * Raises an alarm audit message when an object is about * to be closed. - * + * * @param[in] SubsystemName * A Unicode string that points to the name of the subsystem. - * + * * @param[in] HandleId * A handle of an ID used for identification instance for auditing. - * + * * @param[in] GenerateOnClose * A boolean value previously created by the "open" equivalent of this * function. If the caller explicitly sets this to FALSE, the function * assumes that the object is not opened. - * + * * @return * Returns STATUS_SUCCESS if all the operations have completed successfully. * STATUS_PRIVILEGE_NOT_HELD is returned if the security subject context @@ -1557,18 +1557,18 @@ Cleanup: * @brief * Raises an alarm audit message when an object is about * to be deleted. - * + * * @param[in] SubsystemName * A Unicode string that points to the name of the subsystem. - * + * * @param[in] HandleId * A handle of an ID used for identification instance for auditing. - * + * * @param[in] GenerateOnClose * A boolean value previously created by the "open" equivalent of this * function. If the caller explicitly sets this to FALSE, the function * assumes that the object is not opened. - * + * * @return * To be added... */ @@ -1587,47 +1587,47 @@ NtDeleteObjectAuditAlarm( * @brief * Raises an alarm audit message when an object is about * to be opened. - * + * * @param[in] SubjectContext * A security subject context for auditing. - * + * * @param[in] SubsystemName * A Unicode string that points to a name of the subsystem. - * + * * @param[in] HandleId * A handle to an ID used for identification instance for auditing. - * + * * @param[in] ObjectTypeName * A Unicode string that points to an object type name. - * + * * @param[in] ObjectName * The name of the object. - * + * * @param[in] SecurityDescriptor * A security descriptor. - * + * * @param[in] ClientToken * A client access token, representing the client we want to impersonate. - * + * * @param[in] DesiredAccess * The desired access rights masks requested by the caller. - * + * * @param[in] GrantedAccess * The granted access mask rights. - * + * * @param[in] Privileges * If specified, the function will use this set of privileges to audit. - * + * * @param[in] ObjectCreation * Set this to TRUE if the object has just been created. - * + * * @param[in] AccessGranted * Set this to TRUE if the access attempt was deemed as granted. - * + * * @param[out] GenerateOnClose * A boolean flag returned to the caller once audit generation procedure * finishes. - * + * * @return * Nothing. */ @@ -1668,44 +1668,44 @@ SepOpenObjectAuditAlarm( * @brief * Raises an alarm audit message when an object is about * to be opened. - * + * * @param[in] SubsystemName * A Unicode string that points to a name of the subsystem. - * + * * @param[in] HandleId * A handle to an ID used for identification instance for auditing. - * + * * @param[in] ObjectTypeName * A Unicode string that points to an object type name. - * + * * @param[in] ObjectName * The name of the object. - * + * * @param[in] SecurityDescriptor * A security descriptor. - * + * * @param[in] ClientTokenHandle * A handle to a client access token. - * + * * @param[in] DesiredAccess * The desired access rights masks requested by the caller. - * + * * @param[in] GrantedAccess * The granted access mask rights. - * + * * @param[in] PrivilegeSet * If specified, the function will use this set of privileges to audit. - * + * * @param[in] ObjectCreation * Set this to TRUE if the object has just been created. - * + * * @param[in] AccessGranted * Set this to TRUE if the access attempt was deemed as granted. - * + * * @param[out] GenerateOnClose * A boolean flag returned to the caller once audit generation procedure * finishes. - * + * * @return * Returns STATUS_SUCCESS if all the operations have been completed successfully. * STATUS_PRIVILEGE_NOT_HELD is returned if the given subject context does not @@ -1951,22 +1951,22 @@ Cleanup: * @brief * Raises an alarm audit message when a caller attempts to request * a privileged service call. - * + * * @param[in] SubsystemName * A Unicode string that points to a name of the subsystem. - * + * * @param[in] ServiceName * A Unicode string that points to a name of the privileged service. - * + * * @param[in] ClientTokenHandle * A handle to a client access token. - * + * * @param[in] Privileges * An array set of privileges. - * + * * @param[in] AccessGranted * Set this to TRUE if the access attempt was deemed as granted. - * + * * @return * Returns STATUS_SUCCESS if all the operations have been completed successfully. * STATUS_PRIVILEGE_NOT_HELD is returned if the given subject context does not @@ -2141,25 +2141,25 @@ Cleanup: * @brief * Raises an alarm audit message when a caller attempts to access a * privileged object. - * + * * @param[in] SubsystemName * A Unicode string that points to a name of the subsystem. - * + * * @param[in] HandleId * A handle to an ID that is used as identification instance for auditing. - * + * * @param[in] ClientToken * A handle to a client access token. - * + * * @param[in] DesiredAccess * A handle to a client access token. - * + * * @param[in] Privileges * An array set of privileges. - * + * * @param[in] AccessGranted * Set this to TRUE if the access attempt was deemed as granted. - * + * * @return * To be added... */ @@ -2180,42 +2180,42 @@ NtPrivilegeObjectAuditAlarm( * @brief * Raises an alarm audit message when a caller attempts to access an * object and determine if the access can be made. - * + * * @param[in] SubsystemName * A Unicode string that points to a name of the subsystem. - * + * * @param[in] HandleId * A handle to an ID that is used as identification instance for auditing. - * + * * @param[in] ObjectTypeName * The name of the object type. - * + * * @param[in] ObjectName * The object name. - * + * * @param[in] SecurityDescriptor * A security descriptor. - * + * * @param[in] DesiredAccess * The desired access rights masks requested by the caller. - * + * * @param[in] GenericMapping * The generic mapping of access mask rights. - * + * * @param[in] ObjectCreation * Set this to TRUE if the object has just been created. - * + * * @param[out] GrantedAccess * Returns the granted access rights. - * + * * @param[out] AccessStatus * Returns a NTSTATUS status code indicating whether access check * can be granted or not. - * + * * @param[out] GenerateOnClose * Returns TRUE if the function has generated a list of granted access rights and * status codes on termination, FALSE otherwise. - * + * * @return * See SepAccessCheckAndAuditAlarm. */ @@ -2260,59 +2260,59 @@ NtAccessCheckAndAuditAlarm( * @brief * Raises an alarm audit message when a caller attempts to access an * object and determine if the access can be made by type. - * + * * @param[in] SubsystemName * A Unicode string that points to a name of the subsystem. - * + * * @param[in] HandleId * A handle to an ID that is used as identification instance for auditing. - * + * * @param[in] ObjectTypeName * The name of the object type. - * + * * @param[in] ObjectName * The object name. - * + * * @param[in] SecurityDescriptor * A security descriptor. - * + * * @param[in] PrincipalSelfSid * A principal self user SID. - * + * * @param[in] DesiredAccess * The desired access rights masks requested by the caller. - * + * * @param[in] AuditType * Type of audit to start, influencing how the audit should * be done. - * + * * @param[in] Flags * Flag bitmask, used to check if auditing can be done * without privileges. - * + * * @param[in] ObjectTypeList * A list of object types. - * + * * @param[in] ObjectTypeLength * The length size of the list. - * + * * @param[in] GenericMapping * The generic mapping of access mask rights. - * + * * @param[in] ObjectCreation * Set this to TRUE if the object has just been created. - * + * * @param[out] GrantedAccess * Returns the granted access rights. - * + * * @param[out] AccessStatus * Returns a NTSTATUS status code indicating whether access check * can be granted or not. - * + * * @param[out] GenerateOnClose * Returns TRUE if the function has generated a list of granted access rights and * status codes on termination, FALSE otherwise. - * + * * @return * See SepAccessCheckAndAuditAlarm. */ @@ -2362,59 +2362,59 @@ NtAccessCheckByTypeAndAuditAlarm( * @brief * Raises an alarm audit message when a caller attempts to access an * object and determine if the access can be made by given type result. - * + * * @param[in] SubsystemName * A Unicode string that points to a name of the subsystem. - * + * * @param[in] HandleId * A handle to an ID that is used as identification instance for auditing. - * + * * @param[in] ObjectTypeName * The name of the object type. - * + * * @param[in] ObjectName * The object name. - * + * * @param[in] SecurityDescriptor * A security descriptor. - * + * * @param[in] PrincipalSelfSid * A principal self user SID. - * + * * @param[in] DesiredAccess * The desired access rights masks requested by the caller. - * + * * @param[in] AuditType * Type of audit to start, influencing how the audit should * be done. - * + * * @param[in] Flags * Flag bitmask, used to check if auditing can be done * without privileges. - * + * * @param[in] ObjectTypeList * A list of object types. - * + * * @param[in] ObjectTypeLength * The length size of the list. - * + * * @param[in] GenericMapping * The generic mapping of access mask rights. - * + * * @param[in] ObjectCreation * Set this to TRUE if the object has just been created. - * + * * @param[out] GrantedAccessList * Returns the granted access rights. - * + * * @param[out] AccessStatusList * Returns a NTSTATUS status code indicating whether access check * can be granted or not. - * + * * @param[out] GenerateOnClose * Returns TRUE if the function has generated a list of granted access rights and * status codes on termination, FALSE otherwise. - * + * * @return * See SepAccessCheckAndAuditAlarm. */ @@ -2465,62 +2465,62 @@ NtAccessCheckByTypeResultListAndAuditAlarm( * Raises an alarm audit message when a caller attempts to access an * object and determine if the access can be made by given type result * and a token handle. - * + * * @param[in] SubsystemName * A Unicode string that points to a name of the subsystem. - * + * * @param[in] HandleId * A handle to an ID that is used as identification instance for auditing. - * + * * @param[in] ClientToken * A handle to a client access token. - * + * * @param[in] ObjectTypeName * The name of the object type. - * + * * @param[in] ObjectName * The object name. - * + * * @param[in] SecurityDescriptor * A security descriptor. - * + * * @param[in] PrincipalSelfSid * A principal self user SID. - * + * * @param[in] DesiredAccess * The desired access rights masks requested by the caller. - * + * * @param[in] AuditType * Type of audit to start, influencing how the audit should * be done. - * + * * @param[in] Flags * Flag bitmask, used to check if auditing can be done * without privileges. - * + * * @param[in] ObjectTypeList * A list of object types. - * + * * @param[in] ObjectTypeLength * The length size of the list. - * + * * @param[in] GenericMapping * The generic mapping of access mask rights. - * + * * @param[in] ObjectCreation * Set this to TRUE if the object has just been created. - * + * * @param[out] GrantedAccessList * Returns the granted access rights. - * + * * @param[out] AccessStatusList * Returns a NTSTATUS status code indicating whether access check * can be granted or not. - * + * * @param[out] GenerateOnClose * Returns TRUE if the function has generated a list of granted access rights and * status codes on termination, FALSE otherwise. - * + * * @return * See SepAccessCheckAndAuditAlarm. */ diff --git a/ntoskrnl/se/priv.c b/ntoskrnl/se/priv.c index a2ba9f8ad64..cae9103e210 100644 --- a/ntoskrnl/se/priv.c +++ b/ntoskrnl/se/priv.c @@ -59,7 +59,7 @@ const LUID SeCreateSymbolicLinkPrivilege = CONST_LUID(SE_CREATE_SYMBOLIC_LINK_PR * Initializes the privileges during the startup phase of the security * manager module. This function serves as a placeholder as it currently * does nothing. - * + * * @return * Nothing. */ @@ -75,24 +75,24 @@ SepInitPrivileges(VOID) * @brief * Checks the privileges pointed by Privileges array argument if they exist and * match with the privileges from an access token. - * + * * @param[in] Token * An access token where privileges are to be checked. - * + * * @param[in] Privileges * An array of privileges with attributes used as checking indicator for * the function. - * + * * @param[in] PrivilegeCount * The total number count of privileges in the array. - * + * * @param[in] PrivilegeControl * Privilege control bit mask to determine if we should check all the * privileges based on the number count of privileges or not. - * + * * @param[in] PreviousMode * Processor level access mode. - * + * * @return * Returns TRUE if the required privileges exist and that they do match. * Otherwise the functions returns FALSE. @@ -168,17 +168,17 @@ SepPrivilegeCheck( * @brief * Checks only single privilege based upon the privilege pointed by a LUID and * if it matches with the one from an access token. - * + * * @param[in] PrivilegeValue * The privilege to be checked. - * + * * @param[in] Token * An access token where its privilege is to be checked against the one * provided by the caller. - * + * * @param[in] PreviousMode * Processor level access mode. - * + * * @return * Returns TRUE if the required privilege exists and that it matches * with the one from the access token, FALSE otherwise. @@ -207,29 +207,29 @@ SepSinglePrivilegeCheck( * @brief * Checks the security policy and returns a set of privileges * based upon the said security policy context. - * + * * @param[in,out] DesiredAccess * The desired access right mask. - * + * * @param[in,out] GrantedAccess * The granted access rights masks. The rights are granted depending * on the desired access rights requested by the calling thread. - * + * * @param[in] SubjectContext * Security subject context. If the caller supplies one, the access token * supplied by the caller will be assigned to one of client or primary tokens * of the subject context in question. - * + * * @param[in] Token * An access token. - * + * * @param[out] OutPrivilegeSet * An array set of privileges to be reported to the caller, if the actual * calling thread wants such set of privileges in the first place. - * + * * @param[in] PreviousMode * Processor level access mode. - * + * * @return * Returns STATUS_PRIVILEGE_NOT_HELD if the respective operations have succeeded * without problems. STATUS_PRIVILEGE_NOT_HELD is returned if the access token @@ -341,14 +341,14 @@ SePrivilegePolicyCheck( * Checks a single privilege and performs an audit * against a privileged service based on a security subject * context. - * + * * @param[in] DesiredAccess * Security subject context used for privileged service * auditing. - * + * * @param[in] PreviousMode * Processor level access mode. - * + * * @return * Returns TRUE if service auditing and privilege checking * tests have succeeded, FALSE otherwise. @@ -391,37 +391,37 @@ SeCheckAuditPrivilege( * @brief * Captures a LUID with attributes structure. This function is mainly * tied in the context of privileges. - * + * * @param[in] Src * Source of a valid LUID with attributes structure. - * + * * @param[in] PrivilegeCount * Count number of privileges to be captured. - * + * * @param[in] PreviousMode * Processor level access mode. - * + * * @param[in] AllocatedMem * If specified, the function will use this allocated block memory * buffer for the captured LUID and attributes structure. Otherwise * the function will automatically allocate some buffer for it. - * + * * @param[in] AllocatedLength * The length of the buffer, pointed by AllocatedMem. - * + * * @param[in] PoolType * Pool type of the memory allocation. - * + * * @param[in] CaptureIfKernel * If set to TRUE, the capturing is done in the kernel itself. * FALSE if the capturing is done in a kernel mode driver instead. - * + * * @param[out] Dest * The captured LUID with attributes buffer. - * + * * @param[in,out] Length * The length of the captured privileges count. - * + * * @return * Returns STATUS_SUCCESS if the LUID and attributes array * has been captured successfully. STATUS_INSUFFICIENT_RESOURCES is returned @@ -529,17 +529,17 @@ SeCaptureLuidAndAttributesArray( /** * @brief * Releases a LUID with attributes structure. - * + * * @param[in] Privilege * Array of a LUID and attributes that represents a privilege. - * + * * @param[in] PreviousMode * Processor level access mode. - * + * * @param[in] CaptureIfKernel * If set to TRUE, the releasing is done in the kernel itself. * FALSE if the releasing is done in a kernel mode driver instead. - * + * * @return * Nothing. */ @@ -564,13 +564,13 @@ SeReleaseLuidAndAttributesArray( /** * @brief * Appends additional privileges. - * + * * @param[in] AccessState * Access request to append. - * + * * @param[in] Privileges * Set of new privileges to append. - * + * * @return * Returns STATUS_SUCCESS if the privileges have been successfully * appended. Otherwise STATUS_INSUFFICIENT_RESOURCES is returned, @@ -651,10 +651,10 @@ SeAppendPrivileges( /** * @brief * Frees a set of privileges. - * + * * @param[in] Privileges * Set of privileges array to be freed. - * + * * @return * Nothing. */ @@ -671,17 +671,17 @@ SeFreePrivileges( * @brief * Checks if a set of privileges exist and match within a * security subject context. - * + * * @param[in] Privileges * A set of privileges where the check must be performed * against the subject context. - * + * * @param[in] SubjectContext * A subject security context. - * + * * @param[in] PreviousMode * Processor level access mode. - * + * * @return * Returns TRUE if all the privileges do exist and match * with the ones specified by the caller and subject @@ -722,13 +722,13 @@ SePrivilegeCheck( * @brief * Checks if a single privilege is present in the context * of the calling thread. - * + * * @param[in] PrivilegeValue * The specific privilege to be checked. - * + * * @param[in] PreviousMode * Processor level access mode. - * + * * @return * Returns TRUE if the privilege is present, FALSE * otherwise. @@ -774,20 +774,20 @@ SeSinglePrivilegeCheck( * @brief * Checks a privileged object if such object has * the specific privilege submitted by the caller. - * + * * @param[in] PrivilegeValue * A privilege to be checked against the one from * the object. - * + * * @param[in] ObjectHandle * A handle to any kind of object. - * + * * @param[in] DesiredAccess * Desired access right mask requested by the caller. - * + * * @param[in] PreviousMode * Processor level access mode. - * + * * @return * Returns TRUE if the privilege is present, FALSE * otherwise. @@ -837,18 +837,18 @@ SeCheckPrivilegedObject( * @brief * Checks a client access token if it has the required set of * privileges. - * + * * @param[in] ClientToken * A handle to an access client token. - * + * * @param[in] RequiredPrivileges * A set of required privileges to be checked against the privileges * of the access token. - * + * * @param[out] Result * The result, as a boolean value. If TRUE, the token has all the required * privileges, FALSE otherwise. - * + * * @return * Returns STATUS_SUCCESS if the function has completed successfully. * STATUS_INVALID_PARAMETER is returned if the set array of required diff --git a/ntoskrnl/se/sd.c b/ntoskrnl/se/sd.c index 98de8842619..ed5d83b65e9 100644 --- a/ntoskrnl/se/sd.c +++ b/ntoskrnl/se/sd.c @@ -26,7 +26,7 @@ PSECURITY_DESCRIPTOR SeSystemAnonymousLogonSd = NULL; /** * @brief * Initializes the known security descriptors in the system. - * + * * @return * Returns TRUE if all the security descriptors have been initialized, * FALSE otherwise. @@ -133,17 +133,17 @@ SepInitSDs(VOID) /** * @brief * Sets a "World" security descriptor. - * + * * @param[in] SecurityInformation * Security information details, alongside with the security * descriptor to set the World SD. - * + * * @param[in] SecurityDescriptor * A security descriptor buffer. - * + * * @param[in] BufferLength * Length size of the buffer. - * + * * @return * Returns STATUS_SUCCESS if the World security descriptor has been * set. STATUS_ACCESS_DENIED is returned if the caller hasn't @@ -247,17 +247,17 @@ SeSetWorldSecurityDescriptor( /** * @brief * Determines the size of a SID. - * + * * @param[in] Sid * A security identifier where its size is to be determined. - * + * * @param[in,out] OutSAC * The returned sub authority count of the security * identifier. - * + * * @param[in] ProcessorMode * Processor level access mode. - * + * * @return * Returns the size length of a security identifier (SID). */ @@ -295,14 +295,14 @@ DetermineSIDSize( /** * @brief * Determines the size of an ACL. - * + * * @param[in] Acl * An access control list where its size is to be * determined. - * + * * @param[in] ProcessorMode * Processor level access mode. - * + * * @return * Returns the size length of a an access control * list (ACL). @@ -329,25 +329,25 @@ DetermineACLSize( /** * @brief * Captures a security descriptor. - * + * * @param[in] _OriginalSecurityDescriptor * An already existing and valid security descriptor * to be captured. - * + * * @param[in] CurrentMode * Processor level access mode. - * + * * @param[in] PoolType * Pool type to be used when allocating the captured * buffer. - * + * * @param[in] CaptureIfKernel * Set this to TRUE if capturing is done within the * kernel. - * + * * @param[out] CapturedSecurityDescriptor * The captured security descriptor. - * + * * @return * Returns STATUS_SUCCESS if the operations have been * completed successfully and that the security descriptor @@ -546,21 +546,21 @@ SeCaptureSecurityDescriptor( * @brief * Queries information details about a security * descriptor. - * + * * @param[in] SecurityInformation * Security information details to be queried * from a security descriptor. - * + * * @param[out] SecurityDescriptor * The returned security descriptor with security information * data. - * + * * @param[in,out] Length * The returned length of a security descriptor. - * + * * @param[in,out] ObjectsSecurityDescriptor * The returned object security descriptor. - * + * * @return * Returns STATUS_SUCCESS if the operations have been * completed successfully and that the specific information @@ -717,17 +717,17 @@ SeQuerySecurityDescriptorInfo( /** * @brief * Releases a captured security descriptor buffer. - * + * * @param[in] CapturedSecurityDescriptor * The captured security descriptor to be freed. - * + * * @param[in] CurrentMode * Processor level access mode. - * + * * @param[in] CaptureIfKernelMode * Set this to TRUE if the releasing is to be done within * the kernel. - * + * * @return * Returns STATUS_SUCCESS. */ @@ -760,26 +760,26 @@ SeReleaseSecurityDescriptor( * @brief * Modifies some information data about a security * descriptor. - * + * * @param[in] Object * If specified, the function will use this arbitrary * object that points to an object security descriptor. - * + * * @param[in] SecurityInformation * Security information details to be set. - * + * * @param[in] SecurityDescriptor * A security descriptor where its info is to be changed. - * + * * @param[in,out] ObjectsSecurityDescriptor * The returned pointer to security descriptor objects. - * + * * @param[in] PoolType * Pool type for the new security descriptor to allocate. - * + * * @param[in] GenericMapping * The generic mapping of access rights masks. - * + * * @return * See SeSetSecurityDescriptorInfoEx. */ @@ -809,31 +809,31 @@ SeSetSecurityDescriptorInfo( * @brief * An extended function that sets new information data to * a security descriptor. - * + * * @param[in] Object * If specified, the function will use this arbitrary * object that points to an object security descriptor. - * + * * @param[in] SecurityInformation * Security information details to be set. - * + * * @param[in] SecurityDescriptor * A security descriptor where its info is to be changed. - * + * * @param[in,out] ObjectsSecurityDescriptor * The returned pointer to security descriptor objects. - * + * * @param[in] AutoInheritFlags * Flags bitmask inheritation, influencing how the security * descriptor can be inherited and if it can be in the first * place. - * + * * @param[in] PoolType * Pool type for the new security descriptor to allocate. - * + * * @param[in] GenericMapping * The generic mapping of access rights masks. - * + * * @return * Returns STATUS_SUCCESS if the operations have been * completed without problems and that new info has been @@ -987,14 +987,14 @@ SeSetSecurityDescriptorInfoEx( * Determines if a security descriptor is valid according * to the general security requirements and conditions * set by the kernel. - * + * * @param[in] Length * The length of a security descriptor. - * + * * @param[in] _SecurityDescriptor * A security descriptor where its properties are to be * checked for validity. - * + * * @return * Returns TRUE if the given security descriptor is valid, * FALSE otherwise. @@ -1136,10 +1136,10 @@ SeValidSecurityDescriptor( /** * @brief * Frees a security descriptor. - * + * * @param[in] SecurityDescriptor * A security descriptor to be freed from memory. - * + * * @return * Returns STATUS_SUCCESS. */ @@ -1164,38 +1164,38 @@ SeDeassignSecurity( * @brief * An extended function that assigns a security descriptor for a new * object. - * + * * @param[in] _ParentDescriptor * A security descriptor of the parent object that is being * created. - * + * * @param[in] _ExplicitDescriptor * An explicit security descriptor that is applied to a new * object. - * + * * @param[out] NewDescriptor * The new allocated security descriptor. - * + * * @param[in] ObjectType * The type of the new object. - * + * * @param[in] IsDirectoryObject * Set this to TRUE if the newly created object is a directory * object, otherwise set this to FALSE. - * + * * @param[in] AutoInheritFlags * Automatic inheritance flags that influence how access control * entries within ACLs from security descriptors are inherited. - * + * * @param[in] SubjectContext * Security subject context of the new object. - * + * * @param[in] GenericMapping * Generic mapping of access mask rights. - * + * * @param[in] PoolType * This parameter is unused. - * + * * @return * Returns STATUS_SUCCESS if the operations have been completed * successfully and that the security descriptor has been @@ -1505,31 +1505,31 @@ SeAssignSecurityEx( /** * @brief * Assigns a security descriptor for a new object. - * + * * @param[in] ParentDescriptor * A security descriptor of the parent object that is being * created. - * + * * @param[in] ExplicitDescriptor * An explicit security descriptor that is applied to a new * object. - * + * * @param[out] NewDescriptor * The new allocated security descriptor. - * + * * @param[in] IsDirectoryObject * Set this to TRUE if the newly created object is a directory * object, otherwise set this to FALSE. - * + * * @param[in] SubjectContext * Security subject context of the new object. - * + * * @param[in] GenericMapping * Generic mapping of access mask rights. - * + * * @param[in] PoolType * This parameter is unused. - * + * * @return * See SeAssignSecurityEx. */ @@ -1561,16 +1561,16 @@ SeAssignSecurity( /** * @brief * Computes the quota size of a security descriptor. - * + * * @param[in] SecurityDescriptor * A security descriptor. - * + * * @param[out] QuotaInfoSize * The returned quota size of the given security descriptor to * the caller. The function may return 0 to this parameter if * the descriptor doesn't have a group or a discretionary * access control list (DACL) even. - * + * * @return * Returns STATUS_SUCCESS if the quota size of a security * descriptor has been computed successfully. STATUS_UNKNOWN_REVISION diff --git a/ntoskrnl/se/semgr.c b/ntoskrnl/se/semgr.c index f16d7b1121d..6d55ae51835 100644 --- a/ntoskrnl/se/semgr.c +++ b/ntoskrnl/se/semgr.c @@ -314,31 +314,31 @@ SeInitSystem(VOID) * Internal function that is responsible for querying, deleting, assigning and * setting a security descriptor for an object in the NT kernel. It is the default * security method for objects regarding the security context of objects. - * + * * @param[in] Object * The object that has the default security method, which the function has been * called upon. - * + * * @param[in] OperationType * Operation type to perform to that object. - * + * * @param[in] SecurityInformation * Auxiliary security information of the object. - * + * * @param[in,out] SecurityDescriptor * A security descriptor. This SD is used accordingly to the operation type * requested by the caller. - * + * * @param[in,out] ReturnLength * The length size of the queried security descriptor, in bytes. - * + * * @param[in,out] OldSecurityDescriptor * The old SD that belonged to the object, in case we're either deleting * or replacing it. - * + * * @param[in] PoolType * Pool type allocation for the security descriptor. - * + * * @param[in] GenericMapping * The generic mapping of access rights masks for the object. * @@ -411,14 +411,14 @@ SeDefaultObjectMethod( /** * @brief * Queries the access mask from a security information context. - * + * * @param[in] SecurityInformation * The security information context where the access mask is to be * gathered. - * + * * @param[out] DesiredAccess * The queried access mask right. - * + * * @return * Nothing. */ @@ -445,13 +445,13 @@ SeQuerySecurityAccessMask( /** * @brief * Sets the access mask for a security information context. - * + * * @param[in] SecurityInformation * The security information context to apply a new access right. - * + * * @param[out] DesiredAccess * The returned access mask right. - * + * * @return * Nothing. */ @@ -483,21 +483,21 @@ SeSetSecurityAccessMask( * @unimplemented * @brief * Report a security event to the security manager. - * + * * @param[in] Flags * Flags that influence how the event should be reported. - * + * * @param[in] SourceName * A Unicode string that represents the source name of the event. - * + * * @param[in] UserSid * The SID that represents a user that initiated the reporting. - * + * * @param[in] AuditParameters * An array of parameters for auditing purposes. This is used * for reporting the event which the security manager will take * care subsequently of doing eventual security auditing. - * + * * @return * Returns STATUS_SUCCESS if the security event has been reported. * STATUS_INVALID_PARAMETER is returned if one of the parameters @@ -576,21 +576,21 @@ SeReportSecurityEvent( * @unimplemented * @brief * Sets an array of audit parameters for later security auditing use. - * + * * @param[in,out] AuditParameters * An array of audit parameters to be set. - * + * * @param[in] Type * The type of audit parameters to be set. - * + * * @param[in] Index * Index number that represents an instance of an audit parameters. * Such index must be within the maximum range of audit parameters. - * + * * @param[in] Data * An arbitrary buffer data that is bounds to what kind of audit parameter * type must be set. - * + * * @return * To be added... */ diff --git a/ntoskrnl/se/sid.c b/ntoskrnl/se/sid.c index 397f614fea8..de4c6f48f39 100644 --- a/ntoskrnl/se/sid.c +++ b/ntoskrnl/se/sid.c @@ -279,21 +279,21 @@ SepInitSecurityIDs(VOID) /** * @brief * Captures a SID. - * + * * @param[in] InputSid * A valid security identifier to be captured. - * + * * @param[in] AccessMode * Processor level access mode. - * + * * @param[in] PoolType * Pool memory type for the captured SID to assign upon * allocation. - * + * * @param[in] CaptureIfKernel * If set to TRUE, the capturing is done within the kernel. * Otherwise the capturing is done in a kernel mode driver. - * + * * @param[out] CapturedSid * The captured security identifier, returned to the caller. * @@ -373,13 +373,13 @@ SepCaptureSid( /** * @brief * Releases a captured SID. - * + * * @param[in] CapturedSid * The captured SID to be released. - * + * * @param[in] AccessMode * Processor level access mode. - * + * * @param[in] CaptureIfKernel * If set to TRUE, the releasing is done within the kernel. * Otherwise the releasing is done in a kernel mode driver. @@ -407,36 +407,36 @@ SepReleaseSid( /** * @brief * Captures a SID with attributes. - * + * * @param[in] SrcSidAndAttributes * Source of the SID with attributes to be captured. - * + * * @param[in] AttributeCount * The number count of attributes, in total. - * + * * @param[in] PreviousMode * Processor access level mode. - * + * * @param[in] AllocatedMem * The allocated memory buffer for the captured SID. If the caller * supplies no allocated block of memory then the function will * allocate some buffer block of memory for the captured SID * automatically. - * + * * @param[in] AllocatedLength * The length of the buffer that points to the allocated memory, * in bytes. - * + * * @param[in] PoolType * The pool type for the captured SID and attributes to assign. - * + * * @param[in] CaptureIfKernel * If set to TRUE, the capturing is done within the kernel. * Otherwise the capturing is done in a kernel mode driver. - * + * * @param[out] CapturedSidAndAttributes * The captured SID and attributes. - * + * * @param[out] ResultLength * The length of the captured SID and attributes, in bytes. * @@ -654,13 +654,13 @@ SeCaptureSidAndAttributesArray( /** * @brief * Releases a captured SID with attributes. - * + * * @param[in] CapturedSidAndAttributes * The captured SID with attributes to be released. - * + * * @param[in] AccessMode * Processor access level mode. - * + * * @param[in] CaptureIfKernel * If set to TRUE, the releasing is done within the kernel. * Otherwise the releasing is done in a kernel mode driver. diff --git a/ntoskrnl/se/sqos.c b/ntoskrnl/se/sqos.c index 995c19680ba..11ac0ba0efb 100644 --- a/ntoskrnl/se/sqos.c +++ b/ntoskrnl/se/sqos.c @@ -23,20 +23,20 @@ * doesn't fill object attributes to the function, it automatically assumes * SQOS is not present, or if, there's no SQOS present in the object attributes list * of the object itself. - * + * * @param[in] AccessMode * Processor access mode. - * + * * @param[in] PoolType * The pool type for the captured SQOS to be used for allocation. - * + * * @param[in] CaptureIfKernel * Capture access condition. To be set to TRUE if the capture is done within the kernel, * FALSE if the capture is done in a kernel mode driver or user mode otherwise. - * + * * @param[out] CapturedSecurityQualityOfService * The captured SQOS data from the object. - * + * * @param[out] Present * Returns TRUE if SQOS is present in an object, FALSE otherwise. FALSE is also immediately * returned if no object attributes is given to the call. @@ -209,10 +209,10 @@ SepCaptureSecurityQualityOfService( * * @param[in] CapturedSecurityQualityOfService * The captured SQOS data to be released. - * + * * @param[in] AccessMode * Processor access mode. - * + * * @param[in] CaptureIfKernel * Capture access condition. To be set to TRUE if the capture is done within the kernel, * FALSE if the capture is done in a kernel mode driver or user mode otherwise. diff --git a/ntoskrnl/se/srm.c b/ntoskrnl/se/srm.c index a011f51954d..e68124d8fa9 100644 --- a/ntoskrnl/se/srm.c +++ b/ntoskrnl/se/srm.c @@ -310,7 +310,7 @@ SepAdtInitializeBounds(VOID) /** * @brief * Sets an audit event for future security auditing monitoring. - * + * * @param[in,out] Message * The reference monitoring API message. It is used to determine * if the right API message number is provided, RmAuditSetCommand @@ -350,7 +350,7 @@ SepRmSetAuditEvent( /** * @brief * Inserts a logon session into an access token specified by the - * caller. + * caller. * * @param[in,out] Token * An access token where the logon session is about to be inserted @@ -495,7 +495,7 @@ SepRmRemoveLogonSessionFromToken( * module of Executive uses this as an internal kernel data for * respective logon sessions management within the kernel, * as in form of a SEP_LOGON_SESSION_REFERENCES data structure. - * + * * @param[in] LogonLuid * A logon ID represented as a LUID. This LUID is used to create * our logon session and add it to the sessions database. @@ -681,7 +681,7 @@ Leave: /** * @brief * References a logon session. - * + * * @param[in] LogonLuid * A valid LUID that points to the logon session in the database that * we're going to reference it. @@ -734,7 +734,7 @@ SepRmReferenceLogonSession( * @brief * Cleans the DOS device map directory of a logon * session. - * + * * @param[in] LogonLuid * A logon session ID where its DOS device map directory * is to be cleaned. @@ -995,7 +995,7 @@ AllocateLinksAgain: * count of 0 by the time the function has de-referenced the logon, * that means the session is no longer used and can be safely deleted * from the logon sessions database. - * + * * @param[in] LogonLuid * A logon session ID to de-reference. * @@ -1327,10 +1327,10 @@ SepRmCommandServerThread( /** * @brief * Retrieves the DOS device map from a logon session. - * + * * @param[in] LogonId * A valid logon session ID. - * + * * @param[out] DeviceMap * The returned device map buffer from the logon session. * @@ -1556,7 +1556,7 @@ SeMarkLogonSessionForTerminationNotification( * @brief * Registers a callback that will be called once a logon session * terminates. - * + * * @param[in] CallbackRoutine * Callback routine address. * @@ -1606,7 +1606,7 @@ SeRegisterLogonSessionTerminatedRoutine( * @brief * Un-registers a callback routine, previously registered by * SeRegisterLogonSessionTerminatedRoutine function. - * + * * @param[in] CallbackRoutine * Callback routine address to un-register. * diff --git a/ntoskrnl/se/token.c b/ntoskrnl/se/token.c index 73d70263e52..6b3d10014d7 100644 --- a/ntoskrnl/se/token.c +++ b/ntoskrnl/se/token.c @@ -638,7 +638,7 @@ SepRemoveUserGroupToken( /** * @unimplemented * @brief - * Frees (de-allocates) the proxy data memory block of a token. + * Frees (de-allocates) the proxy data memory block of a token. * * @param[in,out] ProxyData * The proxy data to be freed. @@ -657,11 +657,11 @@ SepFreeProxyData( /** * @unimplemented * @brief - * Copies the proxy data from the source into the destination of a token. + * Copies the proxy data from the source into the destination of a token. * * @param[out] Dest * The destination path where the proxy data is to be copied to. - * + * * @param[in] Src * The source path where the proxy data is be copied from. * @@ -685,10 +685,10 @@ SepCopyProxyData( * * @param[in] Process * The process instance where its access token is about to be replaced. - * + * * @param[in] NewAccessToken * The new token that it's going to replace the old one. - * + * * @param[out] OldAccessToken * The returned old token that's been replaced, which the caller can do anything. * @@ -812,7 +812,7 @@ SeDeassignPrimaryToken( * * @param[in] Count * Total count of entries that have SIDs in them (that being PSID_AND_ATTRIBUTES in this context). - * + * * @param[in] Src * Source that points to the attributes and SID entry structure. * @@ -843,18 +843,18 @@ RtlLengthSidAndAttributes( * * @param[in] Token * Access token to begin the search query of primary group and default owner. - * + * * @param[in] PrimaryGroup * A primary group SID to be used for search query, determining if user & groups of a token * and the submitted primary group do match. - * + * * @param[in] DefaultOwner * The default owner. If specified, it's used to determine if the token belongs to the actual user, * that is, being the owner himself. - * + * * @param[out] PrimaryGroupIndex * Returns the primary group index. - * + * * @param[out] DefaultOwnerIndex * Returns the default owner index. * @@ -965,23 +965,23 @@ SepFindPrimaryGroupAndDefaultOwner( * * @param[in] Token * Access token to duplicate. - * + * * @param[in] ObjectAttributes * Object attributes for the new token. - * + * * @param[in] EffectiveOnly * If set to TRUE, the function removes all the disabled privileges and groups of the token * to duplicate. - * + * * @param[in] TokenType * Type of token. - * + * * @param[in] Level * Security impersonation level of a token. - * + * * @param[in] PreviousMode * The processor request level mode. - * + * * @param[out] NewAccessToken * The duplicated token. * @@ -1293,14 +1293,14 @@ Quit: * * @param[in] ParentToken * The parent access token for duplication. - * + * * @param[out] Token * The new duplicated token. - * + * * @param[in] InUse * Set this to TRUE if the token is about to be used immediately after the call execution * of this function, FALSE otherwise. - * + * * @param[in] SessionId * Session ID for the token to be assigned. * @@ -1360,7 +1360,7 @@ SeSubProcessToken( * * @param[in] Token * An access token to determine if it's a child or not. - * + * * @param[out] IsChild * The returned boolean result. * @@ -1409,7 +1409,7 @@ SeIsTokenChild( * * @param[in] Token * An access token to determine if it's a sibling or not. - * + * * @param[out] IsSibling * The returned boolean result. * @@ -1463,13 +1463,13 @@ SeIsTokenSibling( * * @param[in] Token * Token to copy. - * + * * @param[in] Level * Impersonation security level to assign to the newly copied token. - * + * * @param[in] PreviousMode * Processor request level mode. - * + * * @param[out] NewToken * The newly copied token. * @@ -1593,10 +1593,10 @@ SepInitializeTokenImplementation(VOID) * * @param[in] Process * Process where the token is about to be assigned. - * + * * @param[in] Token * The token to be assigned. - * + * * @return * Nothing. */ @@ -1629,66 +1629,66 @@ SeAssignPrimaryToken( * * @param[out] TokenHandle * Valid token handle that's ready for use after token creation and object insertion. - * + * * @param[in] PreviousMode * Processor request level mode. - * + * * @param[in] DesiredAccess * Desired access right for the token object to be granted. This kind of access right * impacts how the token can be used and who. - * + * * @param[in] ObjectAttributes * Object attributes for the token to be created. - * + * * @param[in] TokenType * Type of token to assign upon creation. - * + * * @param[in] ImpersonationLevel * Security impersonation level of token to assign upon creation. - * + * * @param[in] AuthenticationId * Authentication ID that represents the authentication information of the token. - * + * * @param[in] ExpirationTime * Expiration time of the token to assign. A value of -1 means that the token never * expires and its life depends upon the amount of references this token object has. - * + * * @param[in] User * User entry to assign to the token. - * + * * @param[in] GroupCount * The total number of groups count for the token. - * + * * @param[in] Groups * The group entries for the token. - * + * * @param[in] GroupsLength * The length size of the groups array, pointed by the Groups parameter. - * + * * @param[in] PrivilegeCount * The total number of priivleges that the newly created token has. - * + * * @param[in] Privileges * The privileges for the token. - * + * * @param[in] Owner * The main user (or also owner) that represents the token that we create. - * + * * @param[in] PrimaryGroup * The main group that represents the token that we create. - * + * * @param[in] DefaultDacl * A discretionary access control list for the token. - * + * * @param[in] TokenSource * Source (or the origin) of the access token that creates it. - * + * * @param[in] SystemToken * If set to TRUE, the newly created token is a system token and only in charge * by the internal system. The function directly returns a pointer to the * created token object for system kernel use. Otherwise if set to FALSE, the * function inserts the object to a handle making it a regular access token. - * + * * @return * Returns STATUS_SUCCESS if token creation has completed successfully. * STATUS_INSUFFICIENT_RESOURCES is returned if the dynamic area of memory of the @@ -2255,23 +2255,23 @@ SepCreateSystemAnonymousLogonTokenNoEveryone(VOID) * @brief * Filters an access token from an existing token, making it more restricted * than the previous one. - * + * * @param[in] ExistingToken * An existing token for filtering. - * + * * @param[in] Flags * Privilege flag options. This parameter argument influences how the token * is filtered. Such parameter can be 0. - * + * * @param[in] SidsToDisable * Array of SIDs to disable. - * + * * @param[in] PrivilegesToDelete * Array of privileges to delete. - * + * * @param[in] RestrictedSids * An array of restricted SIDs for the new filtered token. - * + * * @param[out] FilteredToken * The newly filtered token, returned to the caller. * @@ -2664,10 +2664,10 @@ SeQueryInformationToken( /** * @brief * Queries the session ID of an access token. - * + * * @param[in] Token * A valid access token where the session ID has to be gathered. - * + * * @param[out] pSessionId * The returned pointer to a session ID to the caller. * @@ -2696,10 +2696,10 @@ SeQuerySessionIdToken( /** * @brief * Queries the authentication ID of an access token. - * + * * @param[in] Token * A valid access token where the authentication ID has to be gathered. - * + * * @param[out] pSessionId * The returned pointer to an authentication ID to the caller. * @@ -2722,7 +2722,7 @@ SeQueryAuthenticationIdToken( /** * @brief * Gathers the security impersonation level of an access token. - * + * * @param[in] Token * A valid access token where the impersonation level has to be gathered. * @@ -2743,7 +2743,7 @@ SeTokenImpersonationLevel( * @brief * Gathers the token type of an access token. A token ca be either * a primary token or impersonation token. - * + * * @param[in] Token * A valid access token where the token type has to be gathered. * @@ -2766,7 +2766,7 @@ SeTokenType( * condition is checked based upon TOKEN_HAS_ADMIN_GROUP flag, * which means if the respective access token belongs to an * administrator group or not. - * + * * @param[in] Token * A valid access token to determine if such token is admin or not. * @@ -2789,7 +2789,7 @@ SeTokenIsAdmin( * @brief * Determines if a token is restricted or not, based upon the token * flags. - * + * * @param[in] Token * A valid access token to determine if such token is restricted. * @@ -2810,13 +2810,13 @@ SeTokenIsRestricted( * @brief * Determines if a token is write restricted, that is, nobody can write anything * to it. - * + * * @param[in] Token * A valid access token to determine if such token is write restricted. * * @return * Returns TRUE if the token is write restricted, FALSE otherwise. - * + * * @remarks * First introduced in NT 5.1 SP2 x86 (5.1.2600.2622), absent in NT 5.2, * then finally re-introduced in Vista+. @@ -2938,20 +2938,20 @@ Quit: * Queries a specific type of information in regard of an access token based upon * the information class. The calling thread must have specific access rights in order * to obtain specific information about the token. - * + * * @param[in] TokenHandle * A handle of a token where information is to be gathered. - * + * * @param[in] TokenInformationClass * Token information class. - * + * * @param[out] TokenInformation * A returned output buffer with token information, which information is arbitrarily upon * the information class chosen. - * + * * @param[in] TokenInformationLength * Length of the token information buffer, in bytes. - * + * * @param[out] ReturnLength * If specified in the call, the function returns the total length size of the token * information buffer.. @@ -3541,18 +3541,18 @@ NtQueryInformationToken( * Sets (modifies) some specific information in regard of an access token. The * calling thread must have specific access rights in order to modify token's * information data. - * + * * @param[in] TokenHandle * A handle of a token where information is to be modified. - * + * * @param[in] TokenInformationClass * Token information class. - * + * * @param[in] TokenInformation * An arbitrary pointer to a buffer with token information to set. Such * arbitrary buffer depends on the information class chosen that the caller * wants to modify such information data of a token. - * + * * @param[in] TokenInformationLength * Length of the token information buffer, in bytes. * @@ -3563,7 +3563,7 @@ NtQueryInformationToken( * returned if memory pool allocation has failed. STATUS_PRIVILEGE_NOT_HELD * is returned if the calling thread hasn't the required privileges to perform * the operation in question. A failure NTSTATUS code is returned otherwise. - * + * * @remarks * The function is partly implemented, mainly TokenOrigin and TokenDefaultDacl. */ @@ -3928,7 +3928,7 @@ NtSetInformationToken( /* * Otherwise if the flag was never set but just for this first time then * remove the referenced logon session data from the token and dereference - * the logon session when needed. + * the logon session when needed. */ if (SessionReference == 0) { @@ -4092,23 +4092,23 @@ Cleanup: /** * @brief * Duplicates a token. - * + * * @param[in] ExistingTokenHandle * An existing token to duplicate. - * + * * @param[in] DesiredAccess * The desired access rights for the new duplicated token. - * + * * @param[in] ObjectAttributes * Object attributes for the new duplicated token. - * + * * @param[in] EffectiveOnly * If set to TRUE, the function removes all the disabled privileges and groups * of the token to duplicate. - * + * * @param[in] TokenType * Type of token to assign to the duplicated token. - * + * * @param[out] NewTokenHandle * The returned duplicated token handle. * @@ -4117,7 +4117,7 @@ Cleanup: * STATUS_BAD_IMPERSONATION_LEVEL is returned if the caller erroneously wants * to raise the impersonation level even though the conditions do not permit * it. A failure NTSTATUS code is returned otherwise. - * + * * @remarks * Some sources claim 4th param is ImpersonationLevel, but on W2K * this is certainly NOT true, although I can't say for sure that EffectiveOnly @@ -4274,26 +4274,26 @@ NtDuplicateToken( /** * @brief * Changes the groups list of SIDs of a token. - * + * * @param[in] TokenHandle * Token handle where the list of groups SIDs are to be adjusted. - * + * * @param[in] ResetToDefault * If set to TRUE, the function resets the list of groups SIDs to default. * All the rest of parameters are ignored. - * + * * @param[in] NewState * A new list of groups SIDs that the function will use it accordingly to * modify the current list of groups SIDs of a token. - * + * * @param[in] BufferLength * The length size of the buffer that is pointed by the NewState parameter * argument, in bytes. - * + * * @param[out] PreviousState * If specified, the function will return to the caller the old list of groups * SIDs. - * + * * @param[out] ReturnLength * If specified, the function will return the total size length of the old list * of groups SIDs, in bytes. @@ -4319,30 +4319,30 @@ NtAdjustGroupsToken( * @brief * Removes a certain amount of privileges of a token based upon the request * by the caller. - * + * * @param[in,out] Token * Token handle where the privileges are about to be modified. - * + * * @param[in] DisableAllPrivileges * If set to TRUE, the function disables all the privileges. - * + * * @param[in] NewState * A new list of privileges that the function will use it accordingly to * either disable or enable the said privileges and change them. - * + * * @param[in] NewStateCount * The new total number count of privileges. - * + * * @param[out] PreviousState * If specified, the function will return the previous state list of privileges. - * + * * @param[in] ApplyChanges * If set to TRUE, the function will immediatelly apply the changes onto the * token's privileges. - * + * * @param[out] ChangedPrivileges * The returned count number of changed privileges. - * + * * @param[out] ChangesMade * If TRUE, the function has made changes to the token's privileges. FALSE * otherwise. @@ -4472,30 +4472,30 @@ SepAdjustPrivileges( * @brief * Removes a certain amount of privileges of a token based upon the request * by the caller. - * + * * @param[in,out] Token * Token handle where the privileges are about to be modified. - * + * * @param[in] DisableAllPrivileges * If set to TRUE, the function disables all the privileges. - * + * * @param[in] NewState * A new list of privileges that the function will use it accordingly to * either disable or enable the said privileges and change them. - * + * * @param[in] NewStateCount * The new total number count of privileges. - * + * * @param[out] PreviousState * If specified, the function will return the previous state list of privileges. - * + * * @param[in] ApplyChanges * If set to TRUE, the function will immediatelly apply the changes onto the * token's privileges. - * + * * @param[out] ChangedPrivileges * The returned count number of changed privileges. - * + * * @param[out] ChangesMade * If TRUE, the function has made changes to the token's privileges. FALSE * otherwise. @@ -4710,44 +4710,44 @@ Cleanup: /** * @brief * Creates an access token. - * + * * @param[out] TokenHandle * The returned created token handle to the caller. - * + * * @param[in] DesiredAccess * The desired access rights for the token that we're creating. - * + * * @param[in] ObjectAttributes * The object attributes for the token object that we're creating. - * + * * @param[in] TokenType * The type of token to assign for the newly created token. - * + * * @param[in] AuthenticationId * Authentication ID that represents the token's identity. - * + * * @param[in] ExpirationTime * Expiration time for the token. If set to -1, the token never expires. - * + * * @param[in] TokenUser * The main user entity for the token to assign. - * + * * @param[in] TokenGroups * Group list of SIDs for the token to assign. - * + * * @param[in] TokenPrivileges * Privileges for the token. - * + * * @param[in] TokenOwner * The main user that owns the newly created token. - * + * * @param[in] TokenPrimaryGroup * The primary group that represents as the main group of the token. - * + * * @param[in] TokenDefaultDacl * Discretionary access control list for the token. This limits on how * the token can be used, accessed and used by whom. - * + * * @param[in] TokenSource * The source origin of the token who creates it. * @@ -5031,21 +5031,21 @@ Cleanup: /** * @brief * Opens a token that is tied to a thread handle. - * + * * @param[out] ThreadHandle * Thread handle where the token is about to be opened. - * + * * @param[in] DesiredAccess * The request access right for the token. - * + * * @param[in] OpenAsSelf * If set to TRUE, the access check will be made with the security context * of the process of the calling thread (opening as self). Otherwise the access * check will be made with the security context of the calling thread instead. - * + * * @param[in] HandleAttributes * Handle attributes for the opened thread token handle. - * + * * @param[out] TokenHandle * The opened token handle returned to the caller for use. * @@ -5239,18 +5239,18 @@ NtOpenThreadTokenEx( /** * @brief * Opens a token that is tied to a thread handle. - * + * * @param[out] ThreadHandle * Thread handle where the token is about to be opened. - * + * * @param[in] DesiredAccess * The request access right for the token. - * + * * @param[in] OpenAsSelf * If set to TRUE, the access check will be made with the security context * of the process of the calling thread (opening as self). Otherwise the access * check will be made with the security context of the calling thread instead. - * + * * @param[out] TokenHandle * The opened token handle returned to the caller for use. * @@ -5375,23 +5375,23 @@ NtCompareTokens( * @unimplemented * @brief * Opens a token that is tied to a thread handle. - * + * * @param[in] ExistingTokenHandle * An existing token for filtering. - * + * * @param[in] Flags * Privilege flag options. This parameter argument influences how the token * is filtered. Such parameter can be 0. - * + * * @param[in] SidsToDisable * Array of SIDs to disable. - * + * * @param[in] PrivilegesToDelete * Array of privileges to delete. - * + * * @param[in] RestrictedSids * An array of restricted SIDs for the new filtered token. - * + * * @param[out] NewTokenHandle * The newly filtered token, returned to the caller. * diff --git a/sdk/include/c++/limits b/sdk/include/c++/limits index 7137b791501..0284d433fcd 100644 --- a/sdk/include/c++/limits +++ b/sdk/include/c++/limits @@ -15,7 +15,7 @@ namespace std round_toward_infinity = 2, round_toward_neg_infinity = 3 }; - + // How to represent denormalized values enum float_denorm_style { denorm_indeterminate = -1, @@ -78,7 +78,7 @@ namespace std static const float_round_style round_style = round_toward_zero; static const bool tinyness_before = false; }; - + template<> class numeric_limits { static const bool is_specialized = true; @@ -114,7 +114,7 @@ namespace std {return 0;} static wchar_t signaling_NaN( ) throw() {return 0;} - + // Information static const bool is_exact = true; @@ -141,7 +141,7 @@ namespace std static const float_round_style round_style = round_toward_zero; static const bool tinyness_before = false; }; - + template<> class numeric_limits { public: @@ -205,7 +205,7 @@ namespace std static const float_round_style round_style = round_toward_zero; static const bool tinyness_before = false; }; - + template<> class numeric_limits { public: @@ -270,7 +270,7 @@ namespace std static const float_round_style round_style = round_toward_zero; static const bool tinyness_before = false; }; - + template<> class numeric_limits { public: @@ -335,7 +335,7 @@ namespace std static const float_round_style round_style = round_toward_zero; static const bool tinyness_before = false; }; - + template<> class numeric_limits { public: @@ -400,7 +400,7 @@ namespace std static const float_round_style round_style = round_toward_zero; static const bool tinyness_before = false; }; - + template<> class numeric_limits { public: @@ -465,7 +465,7 @@ namespace std static const float_round_style round_style = round_toward_zero; static const bool tinyness_before = false; }; - + template<> class numeric_limits { public: @@ -530,7 +530,7 @@ namespace std static const float_round_style round_style = round_toward_zero; static const bool tinyness_before = false; }; - + template<> class numeric_limits { public: @@ -595,7 +595,7 @@ namespace std static const float_round_style round_style = round_toward_zero; static const bool tinyness_before = false; }; - + template<> class numeric_limits { public: @@ -660,7 +660,7 @@ namespace std static const float_round_style round_style = round_toward_zero; static const bool tinyness_before = false; }; - + template<> class numeric_limits { public: @@ -725,7 +725,7 @@ namespace std static const float_round_style round_style = round_toward_zero; static const bool tinyness_before = false; }; - + template<> class numeric_limits { public: @@ -790,7 +790,7 @@ namespace std static const float_round_style round_style = round_toward_zero; static const bool tinyness_before = false; }; - + template<> class numeric_limits { public: @@ -855,7 +855,7 @@ namespace std static const float_round_style round_style = round_toward_zero; static const bool tinyness_before = false; }; - + template<> class numeric_limits { public: @@ -989,7 +989,7 @@ namespace std static const float_round_style round_style = round_to_nearest; static const bool tinyness_before = true; }; - + template<> class numeric_limits { public: @@ -1054,7 +1054,7 @@ namespace std static const float_round_style round_style = round_to_nearest; static const bool tinyness_before = true; }; - + template<> class numeric_limits { public: diff --git a/sdk/include/psdk/common.ver b/sdk/include/psdk/common.ver index 1b5cd9a1dd0..6d079370e58 100644 --- a/sdk/include/psdk/common.ver +++ b/sdk/include/psdk/common.ver @@ -86,35 +86,35 @@ #define BUILD_MACHINE_TAG_PADDED BUILD_MACHINE_TAG " " #elif __BUILDMACHINE_LEN__ == 16 #define BUILD_MACHINE_TAG_PADDED BUILD_MACHINE_TAG " " -#elif __BUILDMACHINE_LEN__ == 15 +#elif __BUILDMACHINE_LEN__ == 15 #define BUILD_MACHINE_TAG_PADDED BUILD_MACHINE_TAG " " -#elif __BUILDMACHINE_LEN__ == 14 +#elif __BUILDMACHINE_LEN__ == 14 #define BUILD_MACHINE_TAG_PADDED BUILD_MACHINE_TAG " " -#elif __BUILDMACHINE_LEN__ == 13 +#elif __BUILDMACHINE_LEN__ == 13 #define BUILD_MACHINE_TAG_PADDED BUILD_MACHINE_TAG " " -#elif __BUILDMACHINE_LEN__ == 12 +#elif __BUILDMACHINE_LEN__ == 12 #define BUILD_MACHINE_TAG_PADDED BUILD_MACHINE_TAG " " -#elif __BUILDMACHINE_LEN__ == 11 +#elif __BUILDMACHINE_LEN__ == 11 #define BUILD_MACHINE_TAG_PADDED BUILD_MACHINE_TAG " " -#elif __BUILDMACHINE_LEN__ == 10 +#elif __BUILDMACHINE_LEN__ == 10 #define BUILD_MACHINE_TAG_PADDED BUILD_MACHINE_TAG " " -#elif __BUILDMACHINE_LEN__ == 9 +#elif __BUILDMACHINE_LEN__ == 9 #define BUILD_MACHINE_TAG_PADDED BUILD_MACHINE_TAG " " -#elif __BUILDMACHINE_LEN__ == 8 +#elif __BUILDMACHINE_LEN__ == 8 #define BUILD_MACHINE_TAG_PADDED BUILD_MACHINE_TAG " " -#elif __BUILDMACHINE_LEN__ == 7 +#elif __BUILDMACHINE_LEN__ == 7 #define BUILD_MACHINE_TAG_PADDED BUILD_MACHINE_TAG " " -#elif __BUILDMACHINE_LEN__ == 6 +#elif __BUILDMACHINE_LEN__ == 6 #define BUILD_MACHINE_TAG_PADDED BUILD_MACHINE_TAG " " -#elif __BUILDMACHINE_LEN__ == 5 +#elif __BUILDMACHINE_LEN__ == 5 #define BUILD_MACHINE_TAG_PADDED BUILD_MACHINE_TAG " " -#elif __BUILDMACHINE_LEN__ == 4 +#elif __BUILDMACHINE_LEN__ == 4 #define BUILD_MACHINE_TAG_PADDED BUILD_MACHINE_TAG " " -#elif __BUILDMACHINE_LEN__ == 3 +#elif __BUILDMACHINE_LEN__ == 3 #define BUILD_MACHINE_TAG_PADDED BUILD_MACHINE_TAG " " -#elif __BUILDMACHINE_LEN__ == 2 +#elif __BUILDMACHINE_LEN__ == 2 #define BUILD_MACHINE_TAG_PADDED BUILD_MACHINE_TAG " " -#elif __BUILDMACHINE_LEN__ == 1 +#elif __BUILDMACHINE_LEN__ == 1 #define BUILD_MACHINE_TAG_PADDED BUILD_MACHINE_TAG " " #else #define BUILD_MACHINE_TAG_PADDED BUILD_MACHINE_TAG diff --git a/sdk/include/reactos/idl/dnsrslvr.idl b/sdk/include/reactos/idl/dnsrslvr.idl index ce4d3af41ae..527b6370211 100644 --- a/sdk/include/reactos/idl/dnsrslvr.idl +++ b/sdk/include/reactos/idl/dnsrslvr.idl @@ -23,7 +23,7 @@ typedef [handle, string] LPWSTR DNSRSLVR_HANDLE; #ifndef __midl ,explicit_handle #endif -] +] interface DnsResolver { diff --git a/sdk/include/reactos/idl/srvsvc.idl b/sdk/include/reactos/idl/srvsvc.idl index f6c3320988b..f978777ebb1 100644 --- a/sdk/include/reactos/idl/srvsvc.idl +++ b/sdk/include/reactos/idl/srvsvc.idl @@ -366,7 +366,7 @@ typedef struct _SERVER_INFO_102 } SERVER_INFO_102, *PSERVER_INFO_102, *LPSERVER_INFO_102; cpp_quote("#endif") -typedef struct _SERVER_INFO_103 +typedef struct _SERVER_INFO_103 { DWORD sv103_platform_id; [string] wchar_t *sv103_name; diff --git a/sdk/include/reactos/idl/winspool.idl b/sdk/include/reactos/idl/winspool.idl index f52528ec916..9f943e11633 100644 --- a/sdk/include/reactos/idl/winspool.idl +++ b/sdk/include/reactos/idl/winspool.idl @@ -885,7 +885,7 @@ interface winspool { [in] WINSPOOL_DEVMODE_CONTAINER* pDevModeContainer, [in] DWORD AccessRequired ); - + /* Function 0x02 */ DWORD _RpcSetJob( [in] WINSPOOL_PRINTER_HANDLE hPrinter, diff --git a/sdk/include/reactos/idl/wlansvc.idl b/sdk/include/reactos/idl/wlansvc.idl index 4820d6ab65c..12304addd29 100644 --- a/sdk/include/reactos/idl/wlansvc.idl +++ b/sdk/include/reactos/idl/wlansvc.idl @@ -44,9 +44,9 @@ typedef struct struct_E { pointer_default(unique) #ifndef __midl ,explicit_handle -#endif +#endif ] - + interface wlansvc_interface { /* Function: 0x00 */ @@ -65,7 +65,7 @@ interface wlansvc_interface [in] WLANSVC_RPC_HANDLE hClientHandle, [out, ref] PWLAN_INTERFACE_INFO_LIST *ppInterfaceList); - /* Function: 0x03 */ + /* Function: 0x03 */ DWORD _RpcSetAutoConfigParameter( [in] WLANSVC_RPC_HANDLE hClientHandle, [in] /* enum32 */ long OpCode, diff --git a/sdk/lib/cpprt/arm/cpprt.s b/sdk/lib/cpprt/arm/cpprt.s index ffb466459ce..65ae41553cc 100644 --- a/sdk/lib/cpprt/arm/cpprt.s +++ b/sdk/lib/cpprt/arm/cpprt.s @@ -26,7 +26,7 @@ _Target SETS "|$Target|" ; These are the same //DEFINE_ALIAS __CxxFrameHandler3, __CxxFrameHandler - + ; void __cdecl operator delete(void *,struct std::nothrow_t const &) DEFINE_ALIAS ??3@YAXPAXABUnothrow_t@std@@@Z, ??3@YAXPAX@Z diff --git a/sdk/lib/crt/conio/conio.cmake b/sdk/lib/crt/conio/conio.cmake index 1a5aafb7fdb..22385aaccf7 100644 --- a/sdk/lib/crt/conio/conio.cmake +++ b/sdk/lib/crt/conio/conio.cmake @@ -6,5 +6,5 @@ list(APPEND CRT_CONIO_SOURCE conio/getche.c conio/kbhit.c conio/putch.c - conio/ungetch.c + conio/ungetch.c ) diff --git a/sdk/lib/crt/direct/direct.cmake b/sdk/lib/crt/direct/direct.cmake index f713f6f00dd..00da22f9975 100644 --- a/sdk/lib/crt/direct/direct.cmake +++ b/sdk/lib/crt/direct/direct.cmake @@ -12,5 +12,5 @@ list(APPEND CRT_DIRECT_SOURCE direct/wgetcwd.c direct/wgetdcwd.c direct/wmkdir.c - direct/wrmdir.c + direct/wrmdir.c ) diff --git a/sdk/lib/crt/except/i386/chkesp.s b/sdk/lib/crt/except/i386/chkesp.s index 5a897017345..77a4d671177 100644 --- a/sdk/lib/crt/except/i386/chkesp.s +++ b/sdk/lib/crt/except/i386/chkesp.s @@ -8,7 +8,7 @@ #include #include -/* Code is taken from wine 1.3.33, +/* Code is taken from wine 1.3.33, * Copyright Jon Griffiths and Alexandre Julliard */ EXTERN __chkesp_failed:PROC @@ -18,7 +18,7 @@ PUBLIC __chkesp __chkesp: jnz .test_failed ret - + .test_failed: push ebp mov ebp, esp @@ -32,5 +32,5 @@ __chkesp: pop eax leave ret - + END \ No newline at end of file diff --git a/sdk/lib/crt/math/i386/alldvrm_asm.s b/sdk/lib/crt/math/i386/alldvrm_asm.s index 506e7cda4e9..885e2e56f2e 100644 --- a/sdk/lib/crt/math/i386/alldvrm_asm.s +++ b/sdk/lib/crt/math/i386/alldvrm_asm.s @@ -6,20 +6,20 @@ * PROGRAMER: Alex Ionescu (alex@relsoft.net) * * Copyright (C) 2002 Michael Ringgaard. - * All rights reserved. + * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. + * documentation and/or other materials provided with the distribution. * 3. Neither the name of the project nor the names of its contributors * may be used to endorse or promote products derived from this software - * without specific prior written permission. + * without specific prior written permission. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -30,14 +30,14 @@ * OR SERVICES// LOSS OF USE, DATA, OR PROFITS// OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ #include PUBLIC __alldvrm - + /* FUNCTIONS ***************************************************************/ .code diff --git a/sdk/lib/crt/math/i386/allmul_asm.s b/sdk/lib/crt/math/i386/allmul_asm.s index db1e30f93d1..92de4640399 100644 --- a/sdk/lib/crt/math/i386/allmul_asm.s +++ b/sdk/lib/crt/math/i386/allmul_asm.s @@ -6,20 +6,20 @@ * PROGRAMER: Alex Ionescu (alex@relsoft.net) * * Copyright (C) 2002 Michael Ringgaard. - * All rights reserved. + * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. + * documentation and/or other materials provided with the distribution. * 3. Neither the name of the project nor the names of its contributors * may be used to endorse or promote products derived from this software - * without specific prior written permission. + * without specific prior written permission. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -30,7 +30,7 @@ * OR SERVICES// LOSS OF USE, DATA, OR PROFITS// OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ diff --git a/sdk/lib/crt/math/i386/allrem_asm.s b/sdk/lib/crt/math/i386/allrem_asm.s index 9c60f85dd7c..b20d2c0256f 100644 --- a/sdk/lib/crt/math/i386/allrem_asm.s +++ b/sdk/lib/crt/math/i386/allrem_asm.s @@ -6,20 +6,20 @@ * PROGRAMER: Alex Ionescu (alex@relsoft.net) * * Copyright (C) 2002 Michael Ringgaard. - * All rights reserved. + * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. + * documentation and/or other materials provided with the distribution. * 3. Neither the name of the project nor the names of its contributors * may be used to endorse or promote products derived from this software - * without specific prior written permission. + * without specific prior written permission. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -30,14 +30,14 @@ * OR SERVICES// LOSS OF USE, DATA, OR PROFITS// OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ #include PUBLIC __allrem - + /* FUNCTIONS ***************************************************************/ .code diff --git a/sdk/lib/crt/math/i386/allshl_asm.s b/sdk/lib/crt/math/i386/allshl_asm.s index e09310870be..53f20a61efb 100644 --- a/sdk/lib/crt/math/i386/allshl_asm.s +++ b/sdk/lib/crt/math/i386/allshl_asm.s @@ -6,20 +6,20 @@ * PROGRAMER: Alex Ionescu (alex@relsoft.net) * * Copyright (C) 2002 Michael Ringgaard. - * All rights reserved. + * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. + * documentation and/or other materials provided with the distribution. * 3. Neither the name of the project nor the names of its contributors * may be used to endorse or promote products derived from this software - * without specific prior written permission. + * without specific prior written permission. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -30,7 +30,7 @@ * OR SERVICES// LOSS OF USE, DATA, OR PROFITS// OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ diff --git a/sdk/lib/crt/math/i386/allshr_asm.s b/sdk/lib/crt/math/i386/allshr_asm.s index 9a01393abf7..df893f7aaa8 100644 --- a/sdk/lib/crt/math/i386/allshr_asm.s +++ b/sdk/lib/crt/math/i386/allshr_asm.s @@ -6,20 +6,20 @@ * PROGRAMER: Alex Ionescu (alex@relsoft.net) * * Copyright (C) 2002 Michael Ringgaard. - * All rights reserved. + * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. + * documentation and/or other materials provided with the distribution. * 3. Neither the name of the project nor the names of its contributors * may be used to endorse or promote products derived from this software - * without specific prior written permission. + * without specific prior written permission. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -30,14 +30,14 @@ * OR SERVICES// LOSS OF USE, DATA, OR PROFITS// OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ #include PUBLIC __allshr - + /* FUNCTIONS ***************************************************************/ .code diff --git a/sdk/lib/crt/math/i386/atan_asm.s b/sdk/lib/crt/math/i386/atan_asm.s index d4a4daba386..2b6667b2a25 100644 --- a/sdk/lib/crt/math/i386/atan_asm.s +++ b/sdk/lib/crt/math/i386/atan_asm.s @@ -6,20 +6,20 @@ * PROGRAMER: Alex Ionescu (alex@relsoft.net) * * Copyright (C) 2002 Michael Ringgaard. - * All rights reserved. + * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. + * documentation and/or other materials provided with the distribution. * 3. Neither the name of the project nor the names of its contributors * may be used to endorse or promote products derived from this software - * without specific prior written permission. + * without specific prior written permission. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -30,14 +30,14 @@ * OR SERVICES// LOSS OF USE, DATA, OR PROFITS// OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ #include PUBLIC _atan - + /* FUNCTIONS ***************************************************************/ .code diff --git a/sdk/lib/crt/math/i386/aulldiv_asm.s b/sdk/lib/crt/math/i386/aulldiv_asm.s index 279caf28bc5..4730983805d 100644 --- a/sdk/lib/crt/math/i386/aulldiv_asm.s +++ b/sdk/lib/crt/math/i386/aulldiv_asm.s @@ -6,20 +6,20 @@ * PROGRAMER: Alex Ionescu (alex@relsoft.net) * * Copyright (C) 2002 Michael Ringgaard. - * All rights reserved. + * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. + * documentation and/or other materials provided with the distribution. * 3. Neither the name of the project nor the names of its contributors * may be used to endorse or promote products derived from this software - * without specific prior written permission. + * without specific prior written permission. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -30,7 +30,7 @@ * OR SERVICES// LOSS OF USE, DATA, OR PROFITS// OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ diff --git a/sdk/lib/crt/math/i386/aulldvrm_asm.s b/sdk/lib/crt/math/i386/aulldvrm_asm.s index e42aada8e01..4f8fe70cc48 100644 --- a/sdk/lib/crt/math/i386/aulldvrm_asm.s +++ b/sdk/lib/crt/math/i386/aulldvrm_asm.s @@ -6,20 +6,20 @@ * PROGRAMER: Alex Ionescu (alex@relsoft.net) * * Copyright (C) 2002 Michael Ringgaard. - * All rights reserved. + * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. + * documentation and/or other materials provided with the distribution. * 3. Neither the name of the project nor the names of its contributors * may be used to endorse or promote products derived from this software - * without specific prior written permission. + * without specific prior written permission. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -30,14 +30,14 @@ * OR SERVICES// LOSS OF USE, DATA, OR PROFITS// OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ #include PUBLIC __aulldvrm - + /* FUNCTIONS ***************************************************************/ .code diff --git a/sdk/lib/crt/math/i386/aullrem_asm.s b/sdk/lib/crt/math/i386/aullrem_asm.s index d997e7eca0c..6bca7f07882 100644 --- a/sdk/lib/crt/math/i386/aullrem_asm.s +++ b/sdk/lib/crt/math/i386/aullrem_asm.s @@ -6,20 +6,20 @@ * PROGRAMER: Alex Ionescu (alex@relsoft.net) * * Copyright (C) 2002 Michael Ringgaard. - * All rights reserved. + * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. + * documentation and/or other materials provided with the distribution. * 3. Neither the name of the project nor the names of its contributors * may be used to endorse or promote products derived from this software - * without specific prior written permission. + * without specific prior written permission. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -30,14 +30,14 @@ * OR SERVICES// LOSS OF USE, DATA, OR PROFITS// OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ #include PUBLIC __aullrem - + /* FUNCTIONS ***************************************************************/ .code diff --git a/sdk/lib/crt/math/i386/aullshr_asm.s b/sdk/lib/crt/math/i386/aullshr_asm.s index e10b4331f69..a5467e88dcd 100644 --- a/sdk/lib/crt/math/i386/aullshr_asm.s +++ b/sdk/lib/crt/math/i386/aullshr_asm.s @@ -6,20 +6,20 @@ * PROGRAMER: Alex Ionescu (alex@relsoft.net) * * Copyright (C) 2002 Michael Ringgaard. - * All rights reserved. + * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. + * documentation and/or other materials provided with the distribution. * 3. Neither the name of the project nor the names of its contributors * may be used to endorse or promote products derived from this software - * without specific prior written permission. + * without specific prior written permission. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -30,14 +30,14 @@ * OR SERVICES// LOSS OF USE, DATA, OR PROFITS// OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ #include PUBLIC __aullshr - + /* FUNCTIONS ***************************************************************/ .code diff --git a/sdk/lib/crt/math/i386/ceil_asm.s b/sdk/lib/crt/math/i386/ceil_asm.s index 20bff9294f1..1a9041655ea 100644 --- a/sdk/lib/crt/math/i386/ceil_asm.s +++ b/sdk/lib/crt/math/i386/ceil_asm.s @@ -6,20 +6,20 @@ * PROGRAMER: Alex Ionescu (alex@relsoft.net) * * Copyright (C) 2002 Michael Ringgaard. - * All rights reserved. + * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. + * documentation and/or other materials provided with the distribution. * 3. Neither the name of the project nor the names of its contributors * may be used to endorse or promote products derived from this software - * without specific prior written permission. + * without specific prior written permission. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -30,7 +30,7 @@ * OR SERVICES// LOSS OF USE, DATA, OR PROFITS// OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ diff --git a/sdk/lib/crt/math/i386/cos_asm.s b/sdk/lib/crt/math/i386/cos_asm.s index 144b994efd5..5ce85751c3c 100644 --- a/sdk/lib/crt/math/i386/cos_asm.s +++ b/sdk/lib/crt/math/i386/cos_asm.s @@ -6,20 +6,20 @@ * PROGRAMER: Alex Ionescu (alex@relsoft.net) * * Copyright (C) 2002 Michael Ringgaard. - * All rights reserved. + * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. + * documentation and/or other materials provided with the distribution. * 3. Neither the name of the project nor the names of its contributors * may be used to endorse or promote products derived from this software - * without specific prior written permission. + * without specific prior written permission. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -30,7 +30,7 @@ * OR SERVICES// LOSS OF USE, DATA, OR PROFITS// OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ diff --git a/sdk/lib/crt/math/i386/exp_asm.s b/sdk/lib/crt/math/i386/exp_asm.s index fe2e214723b..fd17930a946 100644 --- a/sdk/lib/crt/math/i386/exp_asm.s +++ b/sdk/lib/crt/math/i386/exp_asm.s @@ -2,7 +2,7 @@ #include PUBLIC _exp - + /* FUNCTIONS ***************************************************************/ .code diff --git a/sdk/lib/crt/math/i386/fabs_asm.s b/sdk/lib/crt/math/i386/fabs_asm.s index 7a83d038fe7..9db14b9b1fb 100644 --- a/sdk/lib/crt/math/i386/fabs_asm.s +++ b/sdk/lib/crt/math/i386/fabs_asm.s @@ -6,20 +6,20 @@ * PROGRAMER: Alex Ionescu (alex@relsoft.net) * * Copyright (C) 2002 Michael Ringgaard. - * All rights reserved. + * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. + * documentation and/or other materials provided with the distribution. * 3. Neither the name of the project nor the names of its contributors * may be used to endorse or promote products derived from this software - * without specific prior written permission. + * without specific prior written permission. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -30,14 +30,14 @@ * OR SERVICES// LOSS OF USE, DATA, OR PROFITS// OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ #include PUBLIC _fabs - + /* FUNCTIONS ***************************************************************/ .code diff --git a/sdk/lib/crt/math/i386/floor_asm.s b/sdk/lib/crt/math/i386/floor_asm.s index 2b42d84dde8..72c9b5ea310 100644 --- a/sdk/lib/crt/math/i386/floor_asm.s +++ b/sdk/lib/crt/math/i386/floor_asm.s @@ -6,20 +6,20 @@ * PROGRAMER: Alex Ionescu (alex@relsoft.net) * * Copyright (C) 2002 Michael Ringgaard. - * All rights reserved. + * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. + * documentation and/or other materials provided with the distribution. * 3. Neither the name of the project nor the names of its contributors * may be used to endorse or promote products derived from this software - * without specific prior written permission. + * without specific prior written permission. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -30,14 +30,14 @@ * OR SERVICES// LOSS OF USE, DATA, OR PROFITS// OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ #include PUBLIC _floor - + /* FUNCTIONS ***************************************************************/ .code diff --git a/sdk/lib/crt/math/i386/fmod_asm.s b/sdk/lib/crt/math/i386/fmod_asm.s index 44be4c0b24a..92025717b5d 100644 --- a/sdk/lib/crt/math/i386/fmod_asm.s +++ b/sdk/lib/crt/math/i386/fmod_asm.s @@ -2,7 +2,7 @@ #include PUBLIC _fmod - + /* FUNCTIONS ***************************************************************/ .code diff --git a/sdk/lib/crt/math/i386/fmodf_asm.s b/sdk/lib/crt/math/i386/fmodf_asm.s index 1a06ef98671..2f4e14f83e9 100644 --- a/sdk/lib/crt/math/i386/fmodf_asm.s +++ b/sdk/lib/crt/math/i386/fmodf_asm.s @@ -2,7 +2,7 @@ #include PUBLIC _fmodf - + /* FUNCTIONS ***************************************************************/ .code diff --git a/sdk/lib/crt/math/i386/ftol2_asm.s b/sdk/lib/crt/math/i386/ftol2_asm.s index 9c3e72d94e3..974d6f5a468 100644 --- a/sdk/lib/crt/math/i386/ftol2_asm.s +++ b/sdk/lib/crt/math/i386/ftol2_asm.s @@ -3,7 +3,7 @@ * PROJECT: ReactOS kernel * PURPOSE: Run-Time Library * FILE: lib/sdk/crt/math/i386/ftol2_asm.s - * PROGRAMER: + * PROGRAMER: * */ @@ -12,7 +12,7 @@ EXTERN __ftol:PROC PUBLIC __ftol2 PUBLIC __ftol2_sse - + /* FUNCTIONS ***************************************************************/ .code diff --git a/sdk/lib/crt/math/i386/ftol_asm.s b/sdk/lib/crt/math/i386/ftol_asm.s index b13358bb45b..3337674f8bf 100644 --- a/sdk/lib/crt/math/i386/ftol_asm.s +++ b/sdk/lib/crt/math/i386/ftol_asm.s @@ -6,20 +6,20 @@ * PROGRAMER: Alex Ionescu (alex@relsoft.net) * * Copyright (C) 2002 Michael Ringgaard. - * All rights reserved. + * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. + * documentation and/or other materials provided with the distribution. * 3. Neither the name of the project nor the names of its contributors * may be used to endorse or promote products derived from this software - * without specific prior written permission. + * without specific prior written permission. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -30,14 +30,14 @@ * OR SERVICES// LOSS OF USE, DATA, OR PROFITS// OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ #include PUBLIC __ftol - + /* FUNCTIONS ***************************************************************/ .code @@ -50,7 +50,7 @@ __ftol: /* Set up stack frame */ push ebp mov ebp, esp - + /* Set "round towards zero" mode */ fstcw [ebp-2] wait @@ -58,17 +58,17 @@ __ftol: or ah, 12 mov [ebp-4], ax fldcw [ebp-4] - + /* Do the conversion */ fistp qword ptr [ebp-12] - + /* Restore rounding mode */ fldcw [ebp-2] - + /* Return value */ mov eax, [ebp-12] mov edx, [ebp-8] - + /* Remove stack frame and return*/ leave ret diff --git a/sdk/lib/crt/math/i386/log10_asm.s b/sdk/lib/crt/math/i386/log10_asm.s index f29f57ff953..2f4c5885057 100644 --- a/sdk/lib/crt/math/i386/log10_asm.s +++ b/sdk/lib/crt/math/i386/log10_asm.s @@ -2,10 +2,10 @@ /* * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel - * PURPOSE: + * PURPOSE: * FILE: lib/sdk/crt/math/i386/log10_asm.s * PROGRAMER: Magnus Olsen (magnus@greatlord.com) - * + * */ #include diff --git a/sdk/lib/crt/math/i386/log_asm.s b/sdk/lib/crt/math/i386/log_asm.s index 44e8bf4c738..ac58a329425 100644 --- a/sdk/lib/crt/math/i386/log_asm.s +++ b/sdk/lib/crt/math/i386/log_asm.s @@ -6,20 +6,20 @@ * PROGRAMER: Alex Ionescu (alex@relsoft.net) * * Copyright (C) 2002 Michael Ringgaard. - * All rights reserved. + * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. + * documentation and/or other materials provided with the distribution. * 3. Neither the name of the project nor the names of its contributors * may be used to endorse or promote products derived from this software - * without specific prior written permission. + * without specific prior written permission. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -30,14 +30,14 @@ * OR SERVICES// LOSS OF USE, DATA, OR PROFITS// OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ #include PUBLIC _log - + /* FUNCTIONS ***************************************************************/ .code diff --git a/sdk/lib/crt/math/i386/sin_asm.s b/sdk/lib/crt/math/i386/sin_asm.s index 75acab51f94..8fbb314f85a 100644 --- a/sdk/lib/crt/math/i386/sin_asm.s +++ b/sdk/lib/crt/math/i386/sin_asm.s @@ -6,20 +6,20 @@ * PROGRAMER: Alex Ionescu (alex@relsoft.net) * * Copyright (C) 2002 Michael Ringgaard. - * All rights reserved. + * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. + * documentation and/or other materials provided with the distribution. * 3. Neither the name of the project nor the names of its contributors * may be used to endorse or promote products derived from this software - * without specific prior written permission. + * without specific prior written permission. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -30,7 +30,7 @@ * OR SERVICES// LOSS OF USE, DATA, OR PROFITS// OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ diff --git a/sdk/lib/crt/math/i386/sqrt_asm.s b/sdk/lib/crt/math/i386/sqrt_asm.s index 7dc4f904f4c..d3fe86807e9 100644 --- a/sdk/lib/crt/math/i386/sqrt_asm.s +++ b/sdk/lib/crt/math/i386/sqrt_asm.s @@ -6,20 +6,20 @@ * PROGRAMER: Alex Ionescu (alex@relsoft.net) * * Copyright (C) 2002 Michael Ringgaard. - * All rights reserved. + * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. + * documentation and/or other materials provided with the distribution. * 3. Neither the name of the project nor the names of its contributors * may be used to endorse or promote products derived from this software - * without specific prior written permission. + * without specific prior written permission. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -30,14 +30,14 @@ * OR SERVICES// LOSS OF USE, DATA, OR PROFITS// OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ #include PUBLIC _sqrt - + /* FUNCTIONS ***************************************************************/ .code diff --git a/sdk/lib/crt/math/i386/tan_asm.s b/sdk/lib/crt/math/i386/tan_asm.s index a73fe3cd705..03a7dd0eaee 100644 --- a/sdk/lib/crt/math/i386/tan_asm.s +++ b/sdk/lib/crt/math/i386/tan_asm.s @@ -6,20 +6,20 @@ * PROGRAMER: Alex Ionescu (alex@relsoft.net) * * Copyright (C) 2002 Michael Ringgaard. - * All rights reserved. + * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. + * documentation and/or other materials provided with the distribution. * 3. Neither the name of the project nor the names of its contributors * may be used to endorse or promote products derived from this software - * without specific prior written permission. + * without specific prior written permission. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -30,14 +30,14 @@ * OR SERVICES// LOSS OF USE, DATA, OR PROFITS// OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ #include PUBLIC _tan - + /* FUNCTIONS ***************************************************************/ .code diff --git a/sdk/lib/crt/mem/i386/memset_asm.s b/sdk/lib/crt/mem/i386/memset_asm.s index ba04724b443..9aa0f64812d 100644 --- a/sdk/lib/crt/mem/i386/memset_asm.s +++ b/sdk/lib/crt/mem/i386/memset_asm.s @@ -37,7 +37,7 @@ FUNC _memset rep stosd mov ecx, edx and ecx, 3 -.L1: +.L1: test ecx, ecx je .L3 rep stosb diff --git a/sdk/lib/crt/msvcrtex.cmake b/sdk/lib/crt/msvcrtex.cmake index 511473788e6..8f159a6b968 100644 --- a/sdk/lib/crt/msvcrtex.cmake +++ b/sdk/lib/crt/msvcrtex.cmake @@ -24,7 +24,7 @@ if(ARCH STREQUAL "i386") except/i386/chkstk_asm.s except/i386/chkstk_ms.s math/i386/alldiv_asm.s - math/i386/aulldiv_asm.s + math/i386/aulldiv_asm.s ) if (GCC AND CLANG) list(APPEND MSVCRTEX_ASM_SOURCE diff --git a/sdk/lib/tdilib/CMakeLists.txt b/sdk/lib/tdilib/CMakeLists.txt index 485574c9e4b..96db5d6425c 100644 --- a/sdk/lib/tdilib/CMakeLists.txt +++ b/sdk/lib/tdilib/CMakeLists.txt @@ -1,6 +1,6 @@ # FIXFIX: You guys should move this header in include/reactos/libs/iphlpapi! -include_directories(${REACTOS_SOURCE_DIR}/dll/win32/iphlpapi) +include_directories(${REACTOS_SOURCE_DIR}/dll/win32/iphlpapi) list(APPEND SOURCE enum.c handle.c diff --git a/sdk/tools/create_nls/unicode.org/ReactOS/ReadMe b/sdk/tools/create_nls/unicode.org/ReactOS/ReadMe index 27d34546efc..72bb1820893 100644 --- a/sdk/tools/create_nls/unicode.org/ReactOS/ReadMe +++ b/sdk/tools/create_nls/unicode.org/ReactOS/ReadMe @@ -1,7 +1,5 @@ -To applay these patch +To apply these patches: -copy MAPPINGS/VENDORS/MICSFT/PC/CP861.TXT +copy MAPPINGS/VENDORS/MICSFT/PC/CP861.TXT to here and rename it to ibmcp861.txt -and applay the patch ibm861.patch to ibmcp861.txt - - +and apply the patch ibm861.patch to ibmcp861.txt diff --git a/sdk/tools/kbdtool/test.klc b/sdk/tools/kbdtool/test.klc index 22b0079d524..345130f4d92 100644 --- a/sdk/tools/kbdtool/test.klc +++ b/sdk/tools/kbdtool/test.klc @@ -70,7 +70,7 @@ LAYOUT ;an extra '@' at the end is a dead key 35 OEM_2 0 002f 003f -1 // SOLIDUS, QUESTION MARK, 39 SPACE 0 0020 0020 0020 // SPACE, SPACE, SPACE 56 OEM_102 0 005c 007c 001c // REVERSE SOLIDUS, VERTICAL LINE, INFORMATION SEPARATOR FOUR -53 DECIMAL 0 002e 002e -1 // FULL STOP, FULL STOP, +53 DECIMAL 0 002e 002e -1 // FULL STOP, FULL STOP, KEYNAME diff --git a/sdk/tools/rgenstat/web/rapistatus.js b/sdk/tools/rgenstat/web/rapistatus.js index 0657dbd4604..f97681c3caa 100644 --- a/sdk/tools/rgenstat/web/rapistatus.js +++ b/sdk/tools/rgenstat/web/rapistatus.js @@ -10,7 +10,7 @@ function toggle (elt) if (ich < 0) { eltLink.src = 'tp.gif'; - elt.className += '_'; + elt.className += '_'; } else { @@ -139,7 +139,7 @@ function clickHandler (evt) } else if (evt && evt.stopPropagation) elt = evt.target; - + if (!elt.className && elt.parentNode) elt = elt.parentNode; @@ -287,5 +287,5 @@ else if (document.addEventListener) { document.addEventListener('click', clickHandler, false); } -else +else document.onclick = clickHandler; diff --git a/subsystems/mvdm/config/AUTOEXEC.NT b/subsystems/mvdm/config/AUTOEXEC.NT index edb3631f35b..37157e5d2ee 100644 --- a/subsystems/mvdm/config/AUTOEXEC.NT +++ b/subsystems/mvdm/config/AUTOEXEC.NT @@ -24,7 +24,7 @@ REM * 4 - SB Pro II REM * 6 - SB 16/AWE 32/32/64 REM REM NOTE: To disable Sound Blaster support, simply place an invalid -REM I/O Port Address (e.g. SET BLASTER=A0). However, if SET BLASTER is +REM I/O Port Address (e.g. SET BLASTER=A0). However, if SET BLASTER is REM not specified in this file, then the default values (A220 I7 D1 H5 T6) REM will be used instead. SET BLASTER=A220 I7 D1 H5 T6 diff --git a/subsystems/mvdm/ntvdm/bios/bios32/bios32.c b/subsystems/mvdm/ntvdm/bios/bios32/bios32.c index a6dfa39de8e..cd37bd0a877 100644 --- a/subsystems/mvdm/ntvdm/bios/bios32/bios32.c +++ b/subsystems/mvdm/ntvdm/bios/bios32/bios32.c @@ -577,7 +577,7 @@ static VOID WINAPI BiosBootstrapLoader(LPWORD Stack) /* * Read the boot sequence order from the CMOS, old behaviour AMI-style. - * + * * For more information, see: * http://www.virtualbox.org/svn/vbox/trunk/src/VBox/Devices/PC/BIOS/orgs.asm * http://www.virtualbox.org/svn/vbox/trunk/src/VBox/Devices/PC/BIOS/boot.c diff --git a/subsystems/mvdm/ntvdm/bios/bios32/vbe.c b/subsystems/mvdm/ntvdm/bios/bios32/vbe.c index fc547c836f6..f7399709017 100644 --- a/subsystems/mvdm/ntvdm/bios/bios32/vbe.c +++ b/subsystems/mvdm/ntvdm/bios/bios32/vbe.c @@ -91,7 +91,7 @@ static SVGA_REGISTERS VbeMode_640x480x256_Registers = /* GC Registers */ { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x05, 0x0F, 0xFF, 0x00, 0x00, 0x20, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x05, 0x0F, 0xFF, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, diff --git a/subsystems/mvdm/ntvdm/clock.c b/subsystems/mvdm/ntvdm/clock.c index b347b34d503..0c365ae7d20 100644 --- a/subsystems/mvdm/ntvdm/clock.c +++ b/subsystems/mvdm/ntvdm/clock.c @@ -55,7 +55,7 @@ static VOID FASTCALL IpsCallback(ULONGLONG ElapsedTime) #ifdef IPS_DISPLAY static INT NumCalls = 0; #endif - + ULONGLONG NewIps = 10ULL * (CurrentCycleCount - LastCycles) / ElapsedTime; CurrentIps = (CurrentIps + NewIps) >> 1; diff --git a/subsystems/mvdm/ntvdm/dos/dos32krnl/bios.c b/subsystems/mvdm/ntvdm/dos/dos32krnl/bios.c index bf28310e784..43208e5b18e 100644 --- a/subsystems/mvdm/ntvdm/dos/dos32krnl/bios.c +++ b/subsystems/mvdm/ntvdm/dos/dos32krnl/bios.c @@ -87,7 +87,7 @@ CHAR DosReadCharacter(WORD FileHandle, BOOLEAN Echo) WORD BytesRead; PDOS_FILE_DESCRIPTOR Descriptor = NULL; WORD OldDeviceInfo; - + /* Find the standard input descriptor and switch it to binary mode */ Descriptor = DosGetHandleFileDescriptor(FileHandle); if (Descriptor) diff --git a/subsystems/mvdm/ntvdm/dos/dos32krnl/emsdrv.c b/subsystems/mvdm/ntvdm/dos/dos32krnl/emsdrv.c index 7f4026012a2..c2fc623bca1 100644 --- a/subsystems/mvdm/ntvdm/dos/dos32krnl/emsdrv.c +++ b/subsystems/mvdm/ntvdm/dos/dos32krnl/emsdrv.c @@ -401,7 +401,7 @@ static VOID WINAPI EmsIntHandler(LPWORD Stack) { /* Get Mapping Registers */ // case 0x00: // TODO: NOT IMPLEMENTED - + /* Set Mapping Registers */ // case 0x01: // TODO: NOT IMPLEMENTED @@ -423,7 +423,7 @@ static VOID WINAPI EmsIntHandler(LPWORD Stack) break; } } - + break; } diff --git a/subsystems/mvdm/ntvdm/dos/dos32krnl/himem.c b/subsystems/mvdm/ntvdm/dos/dos32krnl/himem.c index 09f6a29b111..f07c87658af 100644 --- a/subsystems/mvdm/ntvdm/dos/dos32krnl/himem.c +++ b/subsystems/mvdm/ntvdm/dos/dos32krnl/himem.c @@ -353,7 +353,7 @@ static UCHAR XmsRealloc(WORD Handle, WORD NewSize) RtlSetBits(&AllocBitmap, BlockNumber, HandleEntry->Size); return XMS_STATUS_OUT_OF_MEMORY; } - + return XMS_STATUS_SUCCESS; } diff --git a/subsystems/mvdm/ntvdm/hardware/video/svga.c b/subsystems/mvdm/ntvdm/hardware/video/svga.c index 209f8ead5a9..ec47679141a 100644 --- a/subsystems/mvdm/ntvdm/hardware/video/svga.c +++ b/subsystems/mvdm/ntvdm/hardware/video/svga.c @@ -1128,7 +1128,7 @@ static BYTE WINAPI VgaReadPort(USHORT Port) ULONG HblankDuration; ULONG VerticalRetraceStart = VgaCrtcRegisters[VGA_CRTC_START_VERT_RETRACE_REG]; ULONG VerticalRetraceEnd; - + VerticalRetraceStart |= (VgaCrtcRegisters[VGA_CRTC_OVERFLOW_REG] & VGA_CRTC_OVERFLOW_VRS8) << 6; VerticalRetraceStart |= (VgaCrtcRegisters[VGA_CRTC_OVERFLOW_REG] & VGA_CRTC_OVERFLOW_VRS9) << 2; diff --git a/win32ss/drivers/displays/framebufacc/screen.c b/win32ss/drivers/displays/framebufacc/screen.c index 62f53e89b5c..698350d9b08 100644 --- a/win32ss/drivers/displays/framebufacc/screen.c +++ b/win32ss/drivers/displays/framebufacc/screen.c @@ -119,7 +119,7 @@ IntInitScreenInfo( ULONG ModeInfoSize; PVIDEO_MODE_INFORMATION ModeInfo, ModeInfoPtr, SelectedMode = NULL; VIDEO_COLOR_CAPABILITIES ColorCapabilities; -/* hack +/* hack LOGFONTW SystemFont = {16, 7, 0, 0, 700, 0, 0, 0, ANSI_CHARSET, OUT_DEFAULT_PRECIS, CLIP_DEFAULT_PRECIS, DEFAULT_QUALITY, VARIABLE_PITCH | FF_DONTCARE, L"System"}; LOGFONTW AnsiVariableFont = {12, 9, 0, 0, 400, 0, 0, 0, ANSI_CHARSET, OUT_DEFAULT_PRECIS, CLIP_STROKE_PRECIS, PROOF_QUALITY, VARIABLE_PITCH | FF_DONTCARE, L"MS Sans Serif"}; LOGFONTW AnsiFixedFont = {12, 9, 0, 0, 400, 0, 0, 0, ANSI_CHARSET, OUT_DEFAULT_PRECIS, CLIP_STROKE_PRECIS, PROOF_QUALITY, FIXED_PITCH | FF_DONTCARE, L"Courier"}; @@ -301,7 +301,7 @@ IntInitScreenInfo( pGdiInfo->flHTFlags = HT_FLAG_ADDITIVE_PRIMS; pDevInfo->flGraphicsCaps = 0; -/* hack +/* hack pDevInfo->lfDefaultFont = SystemFont; pDevInfo->lfAnsiVarFont = AnsiVariableFont; pDevInfo->lfAnsiFixFont = AnsiFixedFont; diff --git a/win32ss/drivers/displays/framebufacc/surface.c b/win32ss/drivers/displays/framebufacc/surface.c index c73a768cd80..2a3182c2a49 100644 --- a/win32ss/drivers/displays/framebufacc/surface.c +++ b/win32ss/drivers/displays/framebufacc/surface.c @@ -21,7 +21,7 @@ #include "framebufacc.h" -BOOL +BOOL InitSurface(PPDEV ppdev, BOOL bForcemapping) { @@ -48,12 +48,12 @@ InitSurface(PPDEV ppdev, } /* Check if mapping is need it */ - if ((!bForcemapping) && + if ((!bForcemapping) && (!RemappingNeeded)) { return TRUE; } - + /* * Map the framebuffer into our memory. @@ -78,7 +78,7 @@ InitSurface(PPDEV ppdev, /* * Video memory cached * - * We maby should only ask max 8MB as cached ?, think of the video ram length is 256MB + * We maby should only ask max 8MB as cached ?, think of the video ram length is 256MB */ ppdev->pVideoMemCache = NULL; @@ -203,7 +203,7 @@ DrvEnableSurface( * Associate the surface with our device. */ - + if (!EngAssociateSurface(hSurface, ppdev->hDevEng, ppdev->dwHooks)) { EngDeleteSurface(hSurface); @@ -306,7 +306,7 @@ DrvAssertMode( ppdev->ScreenDelta, NULL); } - /* if the pRealVideoMem == ppdev->pRealVideoMem are + /* if the pRealVideoMem == ppdev->pRealVideoMem are * the Result is then TRUE */ } diff --git a/win32ss/drivers/displays/vga/main/enable.c b/win32ss/drivers/displays/vga/main/enable.c index fcfda2d0134..f7223c22a3a 100644 --- a/win32ss/drivers/displays/vga/main/enable.c +++ b/win32ss/drivers/displays/vga/main/enable.c @@ -2,8 +2,8 @@ * PROJECT: ReactOS VGA display driver * LICENSE: GPL - See COPYING in the top level directory * FILE: win32ss/drivers/displays/vga/main/enable.c - * PURPOSE: - * PROGRAMMERS: + * PURPOSE: + * PROGRAMMERS: */ #include diff --git a/win32ss/drivers/displays/vga/objects/bitblt.c b/win32ss/drivers/displays/vga/objects/bitblt.c index dc81c6c562b..a23185863d2 100644 --- a/win32ss/drivers/displays/vga/objects/bitblt.c +++ b/win32ss/drivers/displays/vga/objects/bitblt.c @@ -2,8 +2,8 @@ * PROJECT: ReactOS VGA display driver * LICENSE: GPL - See COPYING in the top level directory * FILE: win32ss/drivers/displays/vga/objects/bitblt.c - * PURPOSE: - * PROGRAMMERS: + * PURPOSE: + * PROGRAMMERS: */ #include diff --git a/win32ss/drivers/displays/vga/objects/copybits.c b/win32ss/drivers/displays/vga/objects/copybits.c index d20fbc21bc3..afb7d837cdf 100644 --- a/win32ss/drivers/displays/vga/objects/copybits.c +++ b/win32ss/drivers/displays/vga/objects/copybits.c @@ -2,8 +2,8 @@ * PROJECT: ReactOS VGA display driver * LICENSE: GPL - See COPYING in the top level directory * FILE: win32ss/drivers/displays/vga/objects/copybits.c - * PURPOSE: - * PROGRAMMERS: + * PURPOSE: + * PROGRAMMERS: */ #include diff --git a/win32ss/drivers/displays/vga/objects/lineto.c b/win32ss/drivers/displays/vga/objects/lineto.c index 3368ef6825a..3bc2cd0bb1e 100644 --- a/win32ss/drivers/displays/vga/objects/lineto.c +++ b/win32ss/drivers/displays/vga/objects/lineto.c @@ -2,7 +2,7 @@ * PROJECT: ReactOS VGA display driver * LICENSE: GPL - See COPYING in the top level directory * FILE: win32ss/drivers/displays/vga/objects/lineto.c - * PURPOSE: + * PURPOSE: * PROGRAMMERS: Copyright (C) 1998-2003 ReactOS Team */ diff --git a/win32ss/drivers/displays/vga/vgavideo/vgavideo.c b/win32ss/drivers/displays/vga/vgavideo/vgavideo.c index e5003532680..928d1b89462 100644 --- a/win32ss/drivers/displays/vga/vgavideo/vgavideo.c +++ b/win32ss/drivers/displays/vga/vgavideo/vgavideo.c @@ -2,8 +2,8 @@ * PROJECT: ReactOS VGA display driver * LICENSE: GPL - See COPYING in the top level directory * FILE: win32ss/drivers/displays/vga/vgavideo/vgavideo.c - * PURPOSE: - * PROGRAMMERS: + * PURPOSE: + * PROGRAMMERS: */ #include @@ -617,7 +617,7 @@ vgaReadScan( int x, int y, int w, void *b ) data = *vp++; if (data & 0x80) *bp |= plane_mask; bp++; - + if (data & 0x40) *bp |= plane_mask; bp++; if (data & 0x20) *bp |= plane_mask; diff --git a/win32ss/drivers/font/ftfd/enable.c b/win32ss/drivers/font/ftfd/enable.c index d8e8f62fa54..24c0727032f 100644 --- a/win32ss/drivers/font/ftfd/enable.c +++ b/win32ss/drivers/font/ftfd/enable.c @@ -33,7 +33,7 @@ FtfdEnableDriver( ULONG cj, PDRVENABLEDATA pded) { - FT_Error fterror; + FT_Error fterror; DbgPrint("FtfdEnableDriver()\n"); diff --git a/win32ss/drivers/videoprt/child.c b/win32ss/drivers/videoprt/child.c index 2d74070ff88..71ca44cbe87 100644 --- a/win32ss/drivers/videoprt/child.c +++ b/win32ss/drivers/videoprt/child.c @@ -121,7 +121,7 @@ IntVideoPortChildQueryId( { PWCHAR Buffer = NULL, StaticBuffer; UNICODE_STRING UnicodeStr; - + switch (IrpSp->Parameters.QueryId.IdType) { case BusQueryDeviceID: @@ -353,7 +353,7 @@ IntVideoPortChildQueryCapabilities( DeviceCaps->DeviceD2 = FALSE; DeviceCaps->D1Latency = 0; DeviceCaps->D2Latency = 0; - DeviceCaps->D3Latency = 0; + DeviceCaps->D3Latency = 0; switch (ChildExtension->ChildType) { diff --git a/win32ss/drivers/videoprt/dma.c b/win32ss/drivers/videoprt/dma.c index 8cd30f1d081..4e8bc2b055a 100644 --- a/win32ss/drivers/videoprt/dma.c +++ b/win32ss/drivers/videoprt/dma.c @@ -224,7 +224,7 @@ VideoPortGetCommonBuffer(IN PVOID HwDeviceExtension, PVIDEO_PORT_DEVICE_EXTENSION DeviceExtension = VIDEO_PORT_GET_DEVICE_EXTENSION(HwDeviceExtension); /* maximum palette size */ - if (DesiredLength > 262144) + if (DesiredLength > 262144) { /* size exceeded */ return NULL; @@ -279,7 +279,7 @@ VideoPortUnmapDmaMemory( /* * @implemented */ -PDMA +PDMA NTAPI VideoPortMapDmaMemory(IN PVOID HwDeviceExtension, IN PVIDEO_REQUEST_PACKET pVrp, diff --git a/win32ss/drivers/videoprt/resource.c b/win32ss/drivers/videoprt/resource.c index 1504d34adf2..7f44ea0dab3 100644 --- a/win32ss/drivers/videoprt/resource.c +++ b/win32ss/drivers/videoprt/resource.c @@ -35,7 +35,7 @@ IntVideoPortGetLegacyResources( { PCI_COMMON_CONFIG PciConfig; ULONG ReadLength; - + if (!DriverExtension->InitializationData.HwGetLegacyResources && !DriverExtension->InitializationData.HwLegacyResourceCount) { @@ -43,7 +43,7 @@ IntVideoPortGetLegacyResources( *AccessRangeCount = 0; return STATUS_SUCCESS; } - + if (DriverExtension->InitializationData.HwGetLegacyResources) { ReadLength = HalGetBusData(PCIConfiguration, @@ -56,7 +56,7 @@ IntVideoPortGetLegacyResources( /* This device doesn't exist */ return STATUS_NO_SUCH_DEVICE; } - + DriverExtension->InitializationData.HwGetLegacyResources(PciConfig.VendorID, PciConfig.DeviceID, AccessRanges, @@ -109,16 +109,16 @@ IntVideoPortFilterResourceRequirements( ResList = ExAllocatePool(NonPagedPool, ListSize); if (!ResList) return STATUS_NO_MEMORY; - + RtlCopyMemory(ResList, OldResList, OldResList->ListSize); - + ASSERT(ResList->AlternativeLists == 1); - + ResList->ListSize = ListSize; ResList->List[0].Count += AccessRangeCount; - + CurrentDescriptor = (PIO_RESOURCE_DESCRIPTOR)((PUCHAR)ResList + OldResList->ListSize); - + ExFreePool(OldResList); Irp->IoStatus.Information = 0; } @@ -129,9 +129,9 @@ IntVideoPortFilterResourceRequirements( ResList = ExAllocatePool(NonPagedPool, ListSize); if (!ResList) return STATUS_NO_MEMORY; - + RtlZeroMemory(ResList, ListSize); - + /* We need to initialize some fields */ ResList->ListSize = ListSize; ResList->InterfaceType = DeviceExtension->AdapterInterfaceType; @@ -141,7 +141,7 @@ IntVideoPortFilterResourceRequirements( ResList->List[0].Version = 1; ResList->List[0].Revision = 1; ResList->List[0].Count = AccessRangeCount; - + CurrentDescriptor = ResList->List[0].Descriptors; } @@ -149,17 +149,17 @@ IntVideoPortFilterResourceRequirements( { /* This is a required resource */ CurrentDescriptor->Option = 0; - + if (AccessRanges[i].RangeInIoSpace) CurrentDescriptor->Type = CmResourceTypePort; else CurrentDescriptor->Type = CmResourceTypeMemory; - + CurrentDescriptor->ShareDisposition = (AccessRanges[i].RangeShareable ? CmResourceShareShared : CmResourceShareDeviceExclusive); - + CurrentDescriptor->Flags = 0; - + if (CurrentDescriptor->Type == CmResourceTypePort) { CurrentDescriptor->u.Port.Length = AccessRanges[i].RangeLength; @@ -179,7 +179,7 @@ IntVideoPortFilterResourceRequirements( CurrentDescriptor->u.Memory.Alignment = 1; CurrentDescriptor->Flags |= CM_RESOURCE_MEMORY_READ_WRITE; } - + CurrentDescriptor++; } @@ -584,9 +584,9 @@ VideoPortGetAccessRanges( ULONG ListSize; PIO_RESOURCE_REQUIREMENTS_LIST ResReqList; BOOLEAN DeviceAndVendorFound = FALSE; - + TRACE_(VIDEOPRT, "VideoPortGetAccessRanges(%d, %p, %d, %p)\n", NumRequestedResources, RequestedResources, NumAccessRanges, AccessRanges); - + DeviceExtension = VIDEO_PORT_GET_DEVICE_EXTENSION(HwDeviceExtension); DriverObject = DeviceExtension->DriverObject; DriverExtension = IoGetDriverObjectExtension(DriverObject, DriverObject); @@ -600,13 +600,13 @@ VideoPortGetAccessRanges( if (DeviceExtension->PhysicalDeviceObject != NULL) { PciSlotNumber.u.AsULONG = DeviceExtension->SystemIoSlotNumber; - + ReturnedLength = HalGetBusData(PCIConfiguration, DeviceExtension->SystemIoBusNumber, PciSlotNumber.u.AsULONG, &Config, sizeof(PCI_COMMON_CONFIG)); - + if (ReturnedLength != sizeof(PCI_COMMON_CONFIG)) { return ERROR_NOT_ENOUGH_MEMORY; @@ -616,16 +616,16 @@ VideoPortGetAccessRanges( { VendorIdToFind = VendorId != NULL ? *(PUSHORT)VendorId : 0; DeviceIdToFind = DeviceId != NULL ? *(PUSHORT)DeviceId : 0; - + if (VendorIdToFind == 0 && DeviceIdToFind == 0) { /* We're screwed */ return ERROR_DEV_NOT_EXIST; } - + INFO_(VIDEOPRT, "Looking for VendorId 0x%04x DeviceId 0x%04x\n", VendorIdToFind, DeviceIdToFind); - + /* * Search for the device id and vendor id on this bus. */ @@ -652,7 +652,7 @@ VideoPortGetAccessRanges( PciSlotNumber.u.bits.FunctionNumber, Config.VendorID, Config.DeviceID); - + if ((VendorIdToFind == 0 || Config.VendorID == VendorIdToFind) && (DeviceIdToFind == 0 || Config.DeviceID == DeviceIdToFind)) { @@ -669,7 +669,7 @@ VideoPortGetAccessRanges( return ERROR_DEV_NOT_EXIST; } } - + Status = HalAssignSlotResources(&DeviceExtension->RegistryPath, NULL, DeviceExtension->DriverObject, @@ -678,7 +678,7 @@ VideoPortGetAccessRanges( DeviceExtension->SystemIoBusNumber, PciSlotNumber.u.AsULONG, &AllocatedResources); - + if (!NT_SUCCESS(Status)) { WARN_(VIDEOPRT, "HalAssignSlotResources failed with status %x.\n",Status); @@ -708,7 +708,7 @@ VideoPortGetAccessRanges( ListSize = sizeof(IO_RESOURCE_REQUIREMENTS_LIST) + (NumRequestedResources - 1) * sizeof(IO_RESOURCE_DESCRIPTOR); ResReqList = ExAllocatePool(NonPagedPool, ListSize); if (!ResReqList) return ERROR_NOT_ENOUGH_MEMORY; - + ResReqList->ListSize = ListSize; ResReqList->InterfaceType = DeviceExtension->AdapterInterfaceType; ResReqList->BusNumber = DeviceExtension->SystemIoBusNumber; @@ -717,12 +717,12 @@ VideoPortGetAccessRanges( ResReqList->List[0].Version = 1; ResReqList->List[0].Revision = 1; ResReqList->List[0].Count = NumRequestedResources; - + /* Copy in the caller's resource list */ RtlCopyMemory(ResReqList->List[0].Descriptors, RequestedResources, NumRequestedResources * sizeof(IO_RESOURCE_DESCRIPTOR)); - + Status = IoAssignResources(&DeviceExtension->RegistryPath, NULL, DeviceExtension->DriverObject, @@ -734,22 +734,22 @@ VideoPortGetAccessRanges( if (!NT_SUCCESS(Status)) return Status; - + if (!DeviceExtension->AllocatedResources) DeviceExtension->AllocatedResources = AllocatedResources; } - + if (AllocatedResources == NULL) return ERROR_NOT_ENOUGH_MEMORY; - + /* Return the slot number if the caller wants it */ if (Slot != NULL) *Slot = DeviceExtension->SystemIoBusNumber; FullList = AllocatedResources->List; ASSERT(AllocatedResources->Count == 1); - INFO_(VIDEOPRT, "InterfaceType %u BusNumber List %u Device BusNumber %u Version %u Revision %u\n", + INFO_(VIDEOPRT, "InterfaceType %u BusNumber List %u Device BusNumber %u Version %u Revision %u\n", FullList->InterfaceType, FullList->BusNumber, DeviceExtension->SystemIoBusNumber, FullList->PartialResourceList.Version, FullList->PartialResourceList.Revision); - + ASSERT(FullList->InterfaceType == PCIBus); ASSERT(FullList->BusNumber == DeviceExtension->SystemIoBusNumber); ASSERT(1 == FullList->PartialResourceList.Version); diff --git a/win32ss/gdi/dib/dib16bpp.c b/win32ss/gdi/dib/dib16bpp.c index 52789cfb3e4..8ee21587380 100644 --- a/win32ss/gdi/dib/dib16bpp.c +++ b/win32ss/gdi/dib/dib16bpp.c @@ -283,7 +283,7 @@ DIB_16BPP_BitBltSrcCopy(PBLTINFO BltInfo) if (bTopToBottom) { /* This sets SourceLine to the bottom line */ - SourceLine += BltInfo->SourceSurface->lDelta + SourceLine += BltInfo->SourceSurface->lDelta * (BltInfo->DestRect.bottom - BltInfo->DestRect.top - 1); } @@ -314,7 +314,7 @@ DIB_16BPP_BitBltSrcCopy(PBLTINFO BltInfo) DPRINT("16BPP Case Selected with DestRect Width of '%d'.\n", BltInfo->DestRect.right - BltInfo->DestRect.left); - DPRINT("BMF_16BPP-dstRect: (%d,%d)-(%d,%d) and Width of '%d'.\n", + DPRINT("BMF_16BPP-dstRect: (%d,%d)-(%d,%d) and Width of '%d'.\n", BltInfo->DestRect.left, BltInfo->DestRect.top, BltInfo->DestRect.right, BltInfo->DestRect.bottom, BltInfo->DestRect.right - BltInfo->DestRect.left); @@ -576,7 +576,7 @@ DIB_16BPP_BitBltSrcCopy(PBLTINFO BltInfo) case BMF_24BPP: - DPRINT("BMF_24BPP-dstRect: (%d,%d)-(%d,%d) and Width of '%d'.\n", + DPRINT("BMF_24BPP-dstRect: (%d,%d)-(%d,%d) and Width of '%d'.\n", BltInfo->DestRect.left, BltInfo->DestRect.top, BltInfo->DestRect.right, BltInfo->DestRect.bottom, BltInfo->DestRect.right - BltInfo->DestRect.left); diff --git a/win32ss/gdi/dib/dib24bpp.c b/win32ss/gdi/dib/dib24bpp.c index bc12095843e..9100eeb1425 100644 --- a/win32ss/gdi/dib/dib24bpp.c +++ b/win32ss/gdi/dib/dib24bpp.c @@ -153,9 +153,9 @@ DIB_24BPP_BitBltSrcCopy(PBLTINFO BltInfo) if(f1 == 1) { DEC_OR_INC(SourceLine_4BPP, bLeftToRight, 1); f1 = 0; - } + } else - { + { f1 = 1; } DEC_OR_INC(sx, bLeftToRight, 1); diff --git a/win32ss/gdi/dib/dib32bpp.c b/win32ss/gdi/dib/dib32bpp.c index f8e58829a73..2b752556cda 100644 --- a/win32ss/gdi/dib/dib32bpp.c +++ b/win32ss/gdi/dib/dib32bpp.c @@ -81,7 +81,7 @@ DIB_32BPP_BitBltSrcCopy(PBLTINFO BltInfo) BltInfo->SourcePoint.x, BltInfo->SourcePoint.y); /* Do not deal with negative numbers for these values */ - if ((BltInfo->DestRect.left < 0) || (BltInfo->DestRect.top < 0) || + if ((BltInfo->DestRect.left < 0) || (BltInfo->DestRect.top < 0) || (BltInfo->DestRect.right < 0) || (BltInfo->DestRect.bottom < 0)) return FALSE; @@ -586,7 +586,7 @@ DIB_32BPP_BitBltSrcCopy(PBLTINFO BltInfo) * unless we work with its output which is at the destination site. So in this case * our new Source becomes the previous outputs Destination. * Also in we use the same logic when we have corrected for negative lDelta's above - * and already completed a flip from Source to Destination for the first step + * and already completed a flip from Source to Destination for the first step */ if (TopToBottomDone || blDeltaAdjustDone) @@ -614,7 +614,7 @@ DIB_32BPP_BitBltSrcCopy(PBLTINFO BltInfo) * Then we do a flip in place at the destination location and we are done. */ if ((BltInfo->SourcePoint.y != BltInfo->DestRect.top) && // The values are not equal and - (abs(BltInfo->SourcePoint.y - BltInfo->DestRect.top) < (DestHeight + 2)) && // they are NOT seperated by > DestHeight + (abs(BltInfo->SourcePoint.y - BltInfo->DestRect.top) < (DestHeight + 2)) && // they are NOT seperated by > DestHeight (BltInfo->SourceSurface->pvScan0 == BltInfo->DestSurface->pvScan0)) // and same surface (probably screen) { DPRINT("Flips Need Adjustments, so do move here.\n"); diff --git a/win32ss/gdi/dib/dib4bpp.c b/win32ss/gdi/dib/dib4bpp.c index 69daf319f6e..436c47cf897 100644 --- a/win32ss/gdi/dib/dib4bpp.c +++ b/win32ss/gdi/dib/dib4bpp.c @@ -176,12 +176,12 @@ DIB_4BPP_BitBltSrcCopy(PBLTINFO BltInfo) break; case BMF_8BPP: - DPRINT("8BPP-dstRect: (%d,%d)-(%d,%d) and Width of '%d'.\n", + DPRINT("8BPP-dstRect: (%d,%d)-(%d,%d) and Width of '%d'.\n", BltInfo->DestRect.left, BltInfo->DestRect.top, BltInfo->DestRect.right, BltInfo->DestRect.bottom, BltInfo->DestRect.right - BltInfo->DestRect.left); - SourceBits_8BPP = (PBYTE)BltInfo->SourceSurface->pvScan0 + + SourceBits_8BPP = (PBYTE)BltInfo->SourceSurface->pvScan0 + (BltInfo->SourcePoint.y * BltInfo->SourceSurface->lDelta) + BltInfo->SourcePoint.x; if (bTopToBottom) @@ -221,7 +221,7 @@ DIB_4BPP_BitBltSrcCopy(PBLTINFO BltInfo) DPRINT("16BPP Case Selected with DestRect Width of '%d'.\n", BltInfo->DestRect.right - BltInfo->DestRect.left); - DPRINT("BMF_16BPP-dstRect: (%d,%d)-(%d,%d) and Width of '%d'.\n", + DPRINT("BMF_16BPP-dstRect: (%d,%d)-(%d,%d) and Width of '%d'.\n", BltInfo->DestRect.left, BltInfo->DestRect.top, BltInfo->DestRect.right, BltInfo->DestRect.bottom, BltInfo->DestRect.right - BltInfo->DestRect.left); @@ -269,7 +269,7 @@ DIB_4BPP_BitBltSrcCopy(PBLTINFO BltInfo) case BMF_24BPP: - DPRINT("24BPP-dstRect: (%d,%d)-(%d,%d) and Width of '%d'.\n", + DPRINT("24BPP-dstRect: (%d,%d)-(%d,%d) and Width of '%d'.\n", BltInfo->DestRect.left, BltInfo->DestRect.top, BltInfo->DestRect.right, BltInfo->DestRect.bottom, BltInfo->DestRect.right - BltInfo->DestRect.left); diff --git a/win32ss/gdi/dib/dib8bpp.c b/win32ss/gdi/dib/dib8bpp.c index 520037bf709..8aac9f2a9f5 100644 --- a/win32ss/gdi/dib/dib8bpp.c +++ b/win32ss/gdi/dib/dib8bpp.c @@ -175,7 +175,7 @@ DIB_8BPP_BitBltSrcCopy(PBLTINFO BltInfo) break; case BMF_8BPP: - DPRINT("8BPP-dstRect: (%d,%d)-(%d,%d) and Width of '%d'.\n", + DPRINT("8BPP-dstRect: (%d,%d)-(%d,%d) and Width of '%d'.\n", BltInfo->DestRect.left, BltInfo->DestRect.top, BltInfo->DestRect.right, BltInfo->DestRect.bottom, BltInfo->DestRect.right - BltInfo->DestRect.left); @@ -318,7 +318,7 @@ DIB_8BPP_BitBltSrcCopy(PBLTINFO BltInfo) if (bTopToBottom) { DPRINT("Flip is bTopToBottom.\n"); - + DWORD Index; /* Allocate enough pixels for a column in BYTE's */ @@ -338,7 +338,7 @@ DIB_8BPP_BitBltSrcCopy(PBLTINFO BltInfo) if (OneDone) { /* This sets SourceLine to the bottom line of our previous destination */ - SourceLine = (PBYTE)BltInfo->DestSurface->pvScan0 + + SourceLine = (PBYTE)BltInfo->DestSurface->pvScan0 + (BltInfo->DestRect.top * BltInfo->DestSurface->lDelta) + BltInfo->DestRect.left + (BltInfo->DestRect.bottom - BltInfo->DestRect.top - 1) * BltInfo->DestSurface->lDelta; } @@ -373,7 +373,7 @@ DIB_8BPP_BitBltSrcCopy(PBLTINFO BltInfo) SourceBits -= BltInfo->SourceSurface->lDelta; Index++; } - + Index = 0; /* Get the stored pixel and copy then down the column */ @@ -399,7 +399,7 @@ DIB_8BPP_BitBltSrcCopy(PBLTINFO BltInfo) DPRINT("16BPP Case Selected with DestRect Width of '%d'.\n", BltInfo->DestRect.right - BltInfo->DestRect.left); - DPRINT("BMF_16BPP-dstRect: (%d,%d)-(%d,%d) and Width of '%d'.\n", + DPRINT("BMF_16BPP-dstRect: (%d,%d)-(%d,%d) and Width of '%d'.\n", BltInfo->DestRect.left, BltInfo->DestRect.top, BltInfo->DestRect.right, BltInfo->DestRect.bottom, BltInfo->DestRect.right - BltInfo->DestRect.left); @@ -438,7 +438,7 @@ DIB_8BPP_BitBltSrcCopy(PBLTINFO BltInfo) break; case BMF_24BPP: - DPRINT("24BPP-dstRect: (%d,%d)-(%d,%d) and Width of '%d'.\n", + DPRINT("24BPP-dstRect: (%d,%d)-(%d,%d) and Width of '%d'.\n", BltInfo->DestRect.left, BltInfo->DestRect.top, BltInfo->DestRect.right, BltInfo->DestRect.bottom, BltInfo->DestRect.right - BltInfo->DestRect.left); diff --git a/win32ss/gdi/dib/floodfill.c b/win32ss/gdi/dib/floodfill.c index 012f27a8f9e..e16ec80e7ec 100644 --- a/win32ss/gdi/dib/floodfill.c +++ b/win32ss/gdi/dib/floodfill.c @@ -1,9 +1,9 @@ -/* +/* * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS win32 subsystem * PURPOSE: Flood filling support * FILE: win32ss/gdi/dib/floodfill.c -* PROGRAMMER: Gregor Schneider, +* PROGRAMMER: Gregor Schneider */ #include @@ -15,7 +15,7 @@ * This floodfill algorithm is an iterative four neighbors version. It works with an internal stack like data structure. * The stack is kept in an array, sized for the worst case scenario of having to add all pixels of the surface. * This avoids having to allocate and free memory blocks all the time. The stack grows from the end of the array towards the start. -* All pixels are checked before being added, against belonging to the fill rule (FLOODFILLBORDER or FLOODFILLSURFACE) +* All pixels are checked before being added, against belonging to the fill rule (FLOODFILLBORDER or FLOODFILLSURFACE) * and the position in respect to the clip region. This guarantees all pixels lying on the stack belong to the filled surface. * Further optimisations of the algorithm are possible. */ @@ -38,7 +38,7 @@ static __inline BOOL initFlood(FLOODINFO *info, RECTL *DstRect) { ULONG width = DstRect->right - DstRect->left; ULONG height = DstRect->bottom - DstRect->top; - info->floodData = ExAllocatePoolWithTag(NonPagedPool, width * height * sizeof(FLOODITEM), TAG_DIB); + info->floodData = ExAllocatePoolWithTag(NonPagedPool, width * height * sizeof(FLOODITEM), TAG_DIB); if (info->floodData == NULL) { return FALSE; @@ -52,11 +52,11 @@ static __inline VOID finalizeFlood(FLOODINFO *info) ExFreePoolWithTag(info->floodData, TAG_DIB); } static __inline VOID addItemFlood(FLOODINFO *info, - ULONG x, - ULONG y, - SURFOBJ *DstSurf, - RECTL *DstRect, - ULONG Color, + ULONG x, + ULONG y, + SURFOBJ *DstSurf, + RECTL *DstRect, + ULONG Color, BOOL isSurf) { if (RECTL_bPointInRect(DstRect,x,y)) @@ -83,11 +83,11 @@ static __inline VOID removeItemFlood(FLOODINFO *info) info->floodLen--; } -BOOLEAN DIB_XXBPP_FloodFillSolid(SURFOBJ *DstSurf, - BRUSHOBJ *Brush, - RECTL *DstRect, +BOOLEAN DIB_XXBPP_FloodFillSolid(SURFOBJ *DstSurf, + BRUSHOBJ *Brush, + RECTL *DstRect, POINTL *Origin, - ULONG ConvColor, + ULONG ConvColor, UINT FillType) { ULONG x, y; @@ -111,7 +111,7 @@ BOOLEAN DIB_XXBPP_FloodFillSolid(SURFOBJ *DstSurf, return FALSE; } addItemFlood(&flood, x, y, DstSurf, DstRect, ConvColor, FALSE); - while (flood.floodLen != 0) + while (flood.floodLen != 0) { x = flood.floodStart->x; y = flood.floodStart->y; @@ -119,7 +119,7 @@ BOOLEAN DIB_XXBPP_FloodFillSolid(SURFOBJ *DstSurf, DibFunctionsForBitmapFormat[DstSurf->iBitmapFormat].DIB_PutPixel(DstSurf, x, y, BrushColor); if (flood.floodStart - 4 < flood.floodData) - { + { DPRINT1("Can't finish flooding!\n"); finalizeFlood(&flood); return FALSE; @@ -144,7 +144,7 @@ BOOLEAN DIB_XXBPP_FloodFillSolid(SURFOBJ *DstSurf, return FALSE; } addItemFlood(&flood, x, y, DstSurf, DstRect, ConvColor, TRUE); - while (flood.floodLen != 0) + while (flood.floodLen != 0) { x = flood.floodStart->x; y = flood.floodStart->y; diff --git a/win32ss/gdi/dib/i386/dib24bpp_hline.s b/win32ss/gdi/dib/i386/dib24bpp_hline.s index 96baabb2eb0..5a8b7a08289 100644 --- a/win32ss/gdi/dib/i386/dib24bpp_hline.s +++ b/win32ss/gdi/dib/i386/dib24bpp_hline.s @@ -65,7 +65,7 @@ PUBLIC _DIB_24BPP_HLine ret Align4byte: - /* Align to 4-byte address */ + /* Align to 4-byte address */ test al, 3 mov ecx, eax jz loop1 diff --git a/win32ss/gdi/dib/i386/dib32bpp_colorfill.s b/win32ss/gdi/dib/i386/dib32bpp_colorfill.s index ebc0418a7e5..6569db2cfa9 100644 --- a/win32ss/gdi/dib/i386/dib32bpp_colorfill.s +++ b/win32ss/gdi/dib/i386/dib32bpp_colorfill.s @@ -10,7 +10,7 @@ #include .code -/* +/* * BOOLEAN * _cdecl * DIB_32BPP_ColorFill(SURFOBJ* pso, RECTL* prcl, ULONG iColor); diff --git a/win32ss/gdi/dib/i386/dib32bpp_hline.s b/win32ss/gdi/dib/i386/dib32bpp_hline.s index bb501905d96..2ce896ea65e 100644 --- a/win32ss/gdi/dib/i386/dib32bpp_hline.s +++ b/win32ss/gdi/dib/i386/dib32bpp_hline.s @@ -20,7 +20,7 @@ _DIB_32BPP_HLine: mov [esp+8], edi mov edi, [esp+28] mov eax, [ecx+36] - mov ebx, [esp+24] // ebx = LONG x2 + mov ebx, [esp+24] // ebx = LONG x2 imul eax, edi mov edi, [ecx+32] sub ebx, edx // cx = (x2 - x1) ; @@ -30,9 +30,9 @@ _DIB_32BPP_HLine: cld mov eax, [esp+32] mov edi, [esp] - test edi, 3 // Align to fullword boundary + test edi, 3 // Align to fullword boundary jnz short _save_rest - mov ecx, ebx // Setup count of fullwords to fill + mov ecx, ebx // Setup count of fullwords to fill rep stosd mov ebx, [esp+4] @@ -42,9 +42,9 @@ _DIB_32BPP_HLine: _save_rest: stosw ror eax, 16 - mov ecx, ebx // Setup count of fullwords to fill + mov ecx, ebx // Setup count of fullwords to fill dec ecx - rep stosd // The actual fill + rep stosd // The actual fill shr eax, 16 stosw diff --git a/win32ss/gdi/eng/debug.c b/win32ss/gdi/eng/debug.c index e2caad535c4..0d70abce54e 100644 --- a/win32ss/gdi/eng/debug.c +++ b/win32ss/gdi/eng/debug.c @@ -1,7 +1,7 @@ /* * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel - * PURPOSE: + * PURPOSE: * FILE: win32ss/gdi/eng/debug.c * PROGRAMER: Jason Filby */ diff --git a/win32ss/gdi/eng/floatobj.h b/win32ss/gdi/eng/floatobj.h index 5cad6830af6..08c00642f0f 100644 --- a/win32ss/gdi/eng/floatobj.h +++ b/win32ss/gdi/eng/floatobj.h @@ -36,13 +36,13 @@ FLOATOBJ_bConvertToLong(FLOATOBJ *pf, PLONG pl) { return FALSE; } - + if (pef->lExp < 2) { *pl = 0; return TRUE; } - + *pl = EngMulDiv(pef->lMant, 1 << (pef->lExp - 2), 0x40000000); return TRUE; } diff --git a/win32ss/gdi/eng/stretchblt.c b/win32ss/gdi/eng/stretchblt.c index 3b290e29a8a..0a8efc424c6 100644 --- a/win32ss/gdi/eng/stretchblt.c +++ b/win32ss/gdi/eng/stretchblt.c @@ -516,7 +516,7 @@ IntEngStretchBlt(SURFOBJ *psoDest, else { DPRINT("ClipRegion->rclBounds is (%d,%d)-(%d,%d).\n", - ClipRegion->rclBounds.left, ClipRegion->rclBounds.top, + ClipRegion->rclBounds.left, ClipRegion->rclBounds.top, ClipRegion->rclBounds.right, ClipRegion->rclBounds.bottom); } @@ -829,7 +829,7 @@ IntEngStretchBlt(SURFOBJ *psoDest, OutputRect.top = OutputRect.bottom; OutputRect.bottom = lTmp; } - + DPRINT("Calling EngStretchBltROP: InputRect: (%d,%d)-(%d,%d) and OutputRect: (%d,%d)-(%d,%d)\n", InputRect.left, InputRect.top, InputRect.right, InputRect.bottom, OutputRect.left, OutputRect.top, OutputRect.right, OutputRect.bottom); diff --git a/win32ss/gdi/gdi32/CMakeLists.txt b/win32ss/gdi/gdi32/CMakeLists.txt index 4c9d32368bc..4b9cc341e6f 100644 --- a/win32ss/gdi/gdi32/CMakeLists.txt +++ b/win32ss/gdi/gdi32/CMakeLists.txt @@ -57,7 +57,7 @@ set_module_type(gdi32 target_link_libraries(gdi32 winegdi - wine + wine win32ksys dxguid atan2 diff --git a/win32ss/gdi/gdi32/include/gdi32p.h b/win32ss/gdi/gdi32/include/gdi32p.h index 50c13f856a2..a9eb00b89ef 100644 --- a/win32ss/gdi/gdi32/include/gdi32p.h +++ b/win32ss/gdi/gdi32/include/gdi32p.h @@ -45,7 +45,7 @@ typedef DWORD HDC hdc, LPCWSTR lpString, INT uCount, - INT nMaxExtent, + INT nMaxExtent, LPGCP_RESULTSW lpResults, DWORD dwFlags, DWORD dwUnused diff --git a/win32ss/gdi/gdi32/misc/misc.c b/win32ss/gdi/gdi32/misc/misc.c index 5382c67aab0..d977d6c3080 100644 --- a/win32ss/gdi/gdi32/misc/misc.c +++ b/win32ss/gdi/gdi32/misc/misc.c @@ -301,7 +301,7 @@ static inline BOOL UXTHEME_StretchBlt(HDC hdcDst, int nXOriginDst, int nYOriginD HDC hdcSrc, int nXOriginSrc, int nYOriginSrc, int nWidthSrc, int nHeightSrc, INT transparent, COLORREF transcolor) { - static const BLENDFUNCTION blendFunc = + static const BLENDFUNCTION blendFunc = { AC_SRC_OVER, /* BlendOp */ 0, /* BlendFlag */ @@ -356,11 +356,11 @@ static inline BOOL UXTHEME_Blt(HDC hdcDest, int nXOriginDest, int nYOriginDest, * * Stretches or tiles, depending on sizingtype. */ -static inline BOOL UXTHEME_SizedBlt (HDC hdcDst, int nXOriginDst, int nYOriginDst, +static inline BOOL UXTHEME_SizedBlt (HDC hdcDst, int nXOriginDst, int nYOriginDst, int nWidthDst, int nHeightDst, - HDC hdcSrc, int nXOriginSrc, int nYOriginSrc, + HDC hdcSrc, int nXOriginSrc, int nYOriginSrc, int nWidthSrc, int nHeightSrc, - int sizingtype, + int sizingtype, INT transparent, COLORREF transcolor) { if (sizingtype == ST_TILE) @@ -533,34 +533,34 @@ static HRESULT UXTHEME_DrawImageBackground(HDC hdc, HBITMAP bmpSrc, RECT *prcSrc /* Upper left corner */ if(!UXTHEME_Blt(hdcDst, 0, 0, sm.cxLeftWidth, sm.cyTopHeight, - hdcSrc, rcSrc.left, rcSrc.top, + hdcSrc, rcSrc.left, rcSrc.top, transparent, transparentcolor)) { hr = HRESULT_FROM_WIN32(GetLastError()); - goto draw_error; + goto draw_error; } /* Upper right corner */ - if(!UXTHEME_Blt (hdcDst, dstSize.x-sm.cxRightWidth, 0, + if(!UXTHEME_Blt (hdcDst, dstSize.x-sm.cxRightWidth, 0, sm.cxRightWidth, sm.cyTopHeight, - hdcSrc, rcSrc.right-sm.cxRightWidth, rcSrc.top, + hdcSrc, rcSrc.right-sm.cxRightWidth, rcSrc.top, transparent, transparentcolor)) { hr = HRESULT_FROM_WIN32(GetLastError()); - goto draw_error; + goto draw_error; } /* Lower left corner */ - if(!UXTHEME_Blt (hdcDst, 0, dstSize.y-sm.cyBottomHeight, + if(!UXTHEME_Blt (hdcDst, 0, dstSize.y-sm.cyBottomHeight, sm.cxLeftWidth, sm.cyBottomHeight, - hdcSrc, rcSrc.left, rcSrc.bottom-sm.cyBottomHeight, + hdcSrc, rcSrc.left, rcSrc.bottom-sm.cyBottomHeight, transparent, transparentcolor)) { hr = HRESULT_FROM_WIN32(GetLastError()); - goto draw_error; + goto draw_error; } /* Lower right corner */ - if(!UXTHEME_Blt (hdcDst, dstSize.x-sm.cxRightWidth, dstSize.y-sm.cyBottomHeight, + if(!UXTHEME_Blt (hdcDst, dstSize.x-sm.cxRightWidth, dstSize.y-sm.cyBottomHeight, sm.cxRightWidth, sm.cyBottomHeight, - hdcSrc, rcSrc.right-sm.cxRightWidth, rcSrc.bottom-sm.cyBottomHeight, + hdcSrc, rcSrc.right-sm.cxRightWidth, rcSrc.bottom-sm.cyBottomHeight, transparent, transparentcolor)) { hr = HRESULT_FROM_WIN32(GetLastError()); - goto draw_error; + goto draw_error; } if ((sizingtype == ST_STRETCH) || (sizingtype == ST_TILE)) { @@ -571,55 +571,55 @@ static HRESULT UXTHEME_DrawImageBackground(HDC hdc, HBITMAP bmpSrc, RECT *prcSrc if(destCenterWidth > 0) { /* Center top */ - if(!UXTHEME_SizedBlt (hdcDst, sm.cxLeftWidth, 0, + if(!UXTHEME_SizedBlt (hdcDst, sm.cxLeftWidth, 0, destCenterWidth, sm.cyTopHeight, - hdcSrc, rcSrc.left+sm.cxLeftWidth, rcSrc.top, - srcCenterWidth, sm.cyTopHeight, + hdcSrc, rcSrc.left+sm.cxLeftWidth, rcSrc.top, + srcCenterWidth, sm.cyTopHeight, sizingtype, transparent, transparentcolor)) { hr = HRESULT_FROM_WIN32(GetLastError()); - goto draw_error; + goto draw_error; } /* Center bottom */ - if(!UXTHEME_SizedBlt (hdcDst, sm.cxLeftWidth, dstSize.y-sm.cyBottomHeight, + if(!UXTHEME_SizedBlt (hdcDst, sm.cxLeftWidth, dstSize.y-sm.cyBottomHeight, destCenterWidth, sm.cyBottomHeight, - hdcSrc, rcSrc.left+sm.cxLeftWidth, rcSrc.bottom-sm.cyBottomHeight, - srcCenterWidth, sm.cyBottomHeight, + hdcSrc, rcSrc.left+sm.cxLeftWidth, rcSrc.bottom-sm.cyBottomHeight, + srcCenterWidth, sm.cyBottomHeight, sizingtype, transparent, transparentcolor)) { hr = HRESULT_FROM_WIN32(GetLastError()); - goto draw_error; + goto draw_error; } } if(destCenterHeight > 0) { /* Left center */ - if(!UXTHEME_SizedBlt (hdcDst, 0, sm.cyTopHeight, + if(!UXTHEME_SizedBlt (hdcDst, 0, sm.cyTopHeight, sm.cxLeftWidth, destCenterHeight, - hdcSrc, rcSrc.left, rcSrc.top+sm.cyTopHeight, - sm.cxLeftWidth, srcCenterHeight, - sizingtype, + hdcSrc, rcSrc.left, rcSrc.top+sm.cyTopHeight, + sm.cxLeftWidth, srcCenterHeight, + sizingtype, transparent, transparentcolor)) { hr = HRESULT_FROM_WIN32(GetLastError()); - goto draw_error; + goto draw_error; } /* Right center */ - if(!UXTHEME_SizedBlt (hdcDst, dstSize.x-sm.cxRightWidth, sm.cyTopHeight, + if(!UXTHEME_SizedBlt (hdcDst, dstSize.x-sm.cxRightWidth, sm.cyTopHeight, sm.cxRightWidth, destCenterHeight, - hdcSrc, rcSrc.right-sm.cxRightWidth, rcSrc.top+sm.cyTopHeight, - sm.cxRightWidth, srcCenterHeight, + hdcSrc, rcSrc.right-sm.cxRightWidth, rcSrc.top+sm.cyTopHeight, + sm.cxRightWidth, srcCenterHeight, sizingtype, transparent, transparentcolor)) { hr = HRESULT_FROM_WIN32(GetLastError()); - goto draw_error; + goto draw_error; } } if(destCenterHeight > 0 && destCenterWidth > 0) { if(!borderonly) { /* Center */ - if(!UXTHEME_SizedBlt (hdcDst, sm.cxLeftWidth, sm.cyTopHeight, + if(!UXTHEME_SizedBlt (hdcDst, sm.cxLeftWidth, sm.cyTopHeight, destCenterWidth, destCenterHeight, - hdcSrc, rcSrc.left+sm.cxLeftWidth, rcSrc.top+sm.cyTopHeight, - srcCenterWidth, srcCenterHeight, + hdcSrc, rcSrc.left+sm.cxLeftWidth, rcSrc.top+sm.cyTopHeight, + srcCenterWidth, srcCenterHeight, sizingtype, transparent, transparentcolor)) { hr = HRESULT_FROM_WIN32(GetLastError()); - goto draw_error; + goto draw_error; } } } @@ -667,7 +667,7 @@ GdiDrawStream(HDC dc, ULONG l, PGDI_DRAW_STREAM pDS) transparent = ALPHABLEND_FULL; else if (pDS->drawOption & DS_TRANSPARENTCLR) transparent = ALPHABLEND_BINARY; - else + else transparent = ALPHABLEND_NONE; if (pDS->drawOption & DS_TILE) @@ -690,11 +690,11 @@ GdiDrawStream(HDC dc, ULONG l, PGDI_DRAW_STREAM pDS) sm.cyTopHeight = sm.cyBottomHeight = 0; } - UXTHEME_DrawImageBackground(pDS->hDC, - pDS->hImage, - &pDS->rcSrc, - transparent, - pDS->crTransparent, + UXTHEME_DrawImageBackground(pDS->hDC, + pDS->hImage, + &pDS->rcSrc, + transparent, + pDS->crTransparent, FALSE, sizingtype, &sm, @@ -1045,9 +1045,9 @@ VOID WINAPI GdiInitializeLanguagePack(DWORD InitParam) Then InitializeLpkHooks (in user32) uses these to replace certain internal functions and ORs a DWORD being used also by ClientThreadSetup and calls NtUserOneParam with parameter 54 which is ONEPARAM_ROUTINE_REGISTERLPK - which most likely changes the value of dwLpkEntryPoints in the + which most likely changes the value of dwLpkEntryPoints in the PROCESSINFO struct */ - + #if 0 hookfuncs[0] = GetProcAddress(hLpk, "LpkPSMTextOut"); InitializeLpkHooks(hookfuncs); diff --git a/win32ss/gdi/gdi32/objects/font.c b/win32ss/gdi/gdi32/objects/font.c index 0d88defc57c..e6062a37e37 100644 --- a/win32ss/gdi/gdi32/objects/font.c +++ b/win32ss/gdi/gdi32/objects/font.c @@ -596,7 +596,7 @@ GetCharacterPlacementW( } /* Treat the case where no special handling was requested in a fastpath way */ - /* copy will do if the GCP_REORDER flag is not set */ + /* copy will do if the GCP_REORDER flag is not set */ if (lpResults->lpOutString) lstrcpynW( lpResults->lpOutString, lpString, nSet ); diff --git a/win32ss/gdi/gdi32/objects/utils.c b/win32ss/gdi/gdi32/objects/utils.c index 93491d9e00b..e97632e172c 100644 --- a/win32ss/gdi/gdi32/objects/utils.c +++ b/win32ss/gdi/gdi32/objects/utils.c @@ -416,12 +416,12 @@ EnumLogFontExW2A( LPENUMLOGFONTEXA fontA, CONST ENUMLOGFONTEXW *fontW ) /* * LPK.DLL loader function -* +* * Returns TRUE if a valid parameter was passed and loading was successful, * returns FALSE otherwise. */ BOOL WINAPI LoadLPK(INT LpkFunctionID) -{ +{ if(!hLpk) // Check if the DLL is already loaded hLpk = LoadLibraryW(L"lpk.dll"); @@ -431,7 +431,7 @@ BOOL WINAPI LoadLPK(INT LpkFunctionID) { case LPK_INIT: return TRUE; - + case LPK_ETO: if (!LpkExtTextOut) // Check if the function is already loaded LpkExtTextOut = (LPKETO) GetProcAddress(hLpk, "LpkExtTextOut"); @@ -468,7 +468,7 @@ BOOL WINAPI LoadLPK(INT LpkFunctionID) return TRUE; - default: + default: FreeLibrary(hLpk); return FALSE; } diff --git a/win32ss/gdi/ntgdi/bitblt.c b/win32ss/gdi/ntgdi/bitblt.c index 6d113035d90..1fca961e471 100644 --- a/win32ss/gdi/ntgdi/bitblt.c +++ b/win32ss/gdi/ntgdi/bitblt.c @@ -1141,7 +1141,7 @@ IntGdiBitBltRgn( if (pdc->fs & (DC_ACCUM_APP|DC_ACCUM_WMGR)) { - RECTL rcrgn; + RECTL rcrgn; REGION_GetRgnBox(prgnClip, &rcrgn); IntUpdateBoundsRect(pdc, &rcrgn); } @@ -1226,7 +1226,7 @@ IntGdiFillRgn( if (pdc->fs & (DC_ACCUM_APP|DC_ACCUM_WMGR)) { - RECTL rcrgn; + RECTL rcrgn; REGION_GetRgnBox(prgnClip, &rcrgn); IntUpdateBoundsRect(pdc, &rcrgn); } diff --git a/win32ss/gdi/ntgdi/dibobj.c b/win32ss/gdi/ntgdi/dibobj.c index 91abd424a35..33f20d98599 100644 --- a/win32ss/gdi/ntgdi/dibobj.c +++ b/win32ss/gdi/ntgdi/dibobj.c @@ -798,7 +798,7 @@ GreGetDIBitsInternal( Info->bmiHeader.biSizeImage = DIB_GetDIBImageBytes( Info->bmiHeader.biWidth, Info->bmiHeader.biHeight, Info->bmiHeader.biBitCount); - Info->bmiHeader.biCompression = (Info->bmiHeader.biBitCount == 16 || Info->bmiHeader.biBitCount == 32) ? + Info->bmiHeader.biCompression = (Info->bmiHeader.biBitCount == 16 || Info->bmiHeader.biBitCount == 32) ? BI_BITFIELDS : BI_RGB; Info->bmiHeader.biXPelsPerMeter = 0; Info->bmiHeader.biYPelsPerMeter = 0; diff --git a/win32ss/gdi/ntgdi/freetype.c b/win32ss/gdi/ntgdi/freetype.c index efcb2c2c477..55bb3612e45 100644 --- a/win32ss/gdi/ntgdi/freetype.c +++ b/win32ss/gdi/ntgdi/freetype.c @@ -574,7 +574,7 @@ IntLoadFontSubstList(PLIST_ENTRY pHead) } /* query value */ - Status = ZwQueryValueKey(KeyHandle, &FromW, KeyValueFullInformation, + Status = ZwQueryValueKey(KeyHandle, &FromW, KeyValueFullInformation, InfoBuffer, sizeof(InfoBuffer), &Length); pInfo = (PKEY_VALUE_FULL_INFORMATION)InfoBuffer; if (!NT_SUCCESS(Status) || !pInfo->DataLength) @@ -1780,7 +1780,7 @@ IntLoadFontsInRegistry(VOID) } /* query value */ - Status = ZwQueryValueKey(KeyHandle, &FontTitleW, KeyValueFullInformation, + Status = ZwQueryValueKey(KeyHandle, &FontTitleW, KeyValueFullInformation, InfoBuffer, InfoSize, &Length); if (Status == STATUS_BUFFER_OVERFLOW || Status == STATUS_BUFFER_TOO_SMALL) { @@ -1794,7 +1794,7 @@ IntLoadFontsInRegistry(VOID) break; } /* try again */ - Status = ZwQueryValueKey(KeyHandle, &FontTitleW, KeyValueFullInformation, + Status = ZwQueryValueKey(KeyHandle, &FontTitleW, KeyValueFullInformation, InfoBuffer, InfoSize, &Length); } pInfo = (PKEY_VALUE_FULL_INFORMATION)InfoBuffer; @@ -4968,7 +4968,7 @@ GetFontPenalty(const LOGFONTW * LogFont, if (Long != TM->tmWeight) { /* Weight Penalty 3 */ - /* The candidate's weight does not match the requested weight. + /* The candidate's weight does not match the requested weight. Penalty * (weight difference/10) */ GOT_PENALTY("Weight", 3 * (labs(Long - TM->tmWeight) / 10)); } @@ -6317,7 +6317,7 @@ IntExtTextOutW( FLOATOBJ_Set1(&Scale); /* do the shift before multiplying to preserve precision */ - FLOATOBJ_MulLong(&Scale, Dx[i<pwszOutputFile) DllFreeSplStr(pJob->pwszOutputFile); - + if (pJob->pwszPrintProcessorParameters) DllFreeSplStr(pJob->pwszPrintProcessorParameters); diff --git a/win32ss/printing/providers/localspl/printers.c b/win32ss/printing/providers/localspl/printers.c index e63af1abe57..a7865a2d9ef 100644 --- a/win32ss/printing/providers/localspl/printers.c +++ b/win32ss/printing/providers/localspl/printers.c @@ -1188,7 +1188,7 @@ _LocalOpenPrinterHandle(PWSTR pwszPrinterName, PWSTR pwszJobParameter, PHANDLE p goto Failure; } - // Skip the "Job " string. + // Skip the "Job " string. pwszJobParameter += 4; // Skip even more whitespace. diff --git a/win32ss/printing/providers/localspl/printprocessors.c b/win32ss/printing/providers/localspl/printprocessors.c index 9551668d92f..fcb1fd7c252 100644 --- a/win32ss/printing/providers/localspl/printprocessors.c +++ b/win32ss/printing/providers/localspl/printprocessors.c @@ -148,7 +148,7 @@ InitializePrintProcessorList(void) // Initialize an empty list for our Print Processors. InitializeListHead(&_PrintProcessorList); - + // Prepare the path to the Print Processor directory. if (!LocalGetPrintProcessorDirectory(NULL, (PWSTR)wszCurrentEnvironment, 1, (PBYTE)wszPrintProcessorPath, sizeof(wszPrintProcessorPath), &cchPrintProcessorPath)) { diff --git a/win32ss/user/ntuser/console.c b/win32ss/user/ntuser/console.c index 9b34ee1cd84..2c1f2f01ddf 100644 --- a/win32ss/user/ntuser/console.c +++ b/win32ss/user/ntuser/console.c @@ -1,4 +1,4 @@ -/* +/* * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS Win32k subsystem * PURPOSE: Console support functions for CONSRV diff --git a/win32ss/user/ntuser/csr.c b/win32ss/user/ntuser/csr.c index 93fffc0e7e2..92b23c16dc3 100644 --- a/win32ss/user/ntuser/csr.c +++ b/win32ss/user/ntuser/csr.c @@ -1,4 +1,4 @@ -/* +/* * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS Win32k subsystem * PURPOSE: Interface between Win32k and USERSRV @@ -89,7 +89,7 @@ CsrClientCallServer(IN OUT PCSR_API_MESSAGE ApiMessage, /* Fill out the Port Message Header */ ApiMessage->Header.u2.ZeroInit = 0; ApiMessage->Header.u1.s1.TotalLength = FIELD_OFFSET(CSR_API_MESSAGE, Data) + DataLength; - ApiMessage->Header.u1.s1.DataLength = ApiMessage->Header.u1.s1.TotalLength - + ApiMessage->Header.u1.s1.DataLength = ApiMessage->Header.u1.s1.TotalLength - sizeof(ApiMessage->Header); /* Fill out the CSR Header */ @@ -219,7 +219,7 @@ DWORD UserSystemThreadProc(BOOL bRemoteProcess) Type = ST_RIT; else if (gdwPendingSystemThreads & ST_DESKTOP_THREAD) Type = ST_DESKTOP_THREAD; - else + else Type = ST_GHOST_THREAD; ASSERT(Type); diff --git a/win32ss/user/ntuser/csr.h b/win32ss/user/ntuser/csr.h index ac1ef10bc9a..9629d6eb898 100644 --- a/win32ss/user/ntuser/csr.h +++ b/win32ss/user/ntuser/csr.h @@ -1,4 +1,4 @@ -/* +/* * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS Win32k subsystem * PURPOSE: Interface between Win32k and USERSRV diff --git a/win32ss/user/ntuser/guicheck.c b/win32ss/user/ntuser/guicheck.c index c94dda37720..3b1162f9975 100644 --- a/win32ss/user/ntuser/guicheck.c +++ b/win32ss/user/ntuser/guicheck.c @@ -1,4 +1,4 @@ -/* +/* * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel * PURPOSE: GUI state check diff --git a/win32ss/user/ntuser/sysparams.c b/win32ss/user/ntuser/sysparams.c index 32b62cc026f..18208c30c17 100644 --- a/win32ss/user/ntuser/sysparams.c +++ b/win32ss/user/ntuser/sysparams.c @@ -949,7 +949,7 @@ SpiGetSet(UINT uiAction, UINT uiParam, PVOID pvParam, FLONG fl) /* Fixup user's structure size */ metrics->cbSize = sizeof(NONCLIENTMETRICSW); - + if (!SpiSet(&gspv.ncm, metrics, sizeof(NONCLIENTMETRICSW), fl)) return 0; diff --git a/win32ss/user/user32/include/user_x.h b/win32ss/user/user32/include/user_x.h index e7774e4e2f7..61eda29f480 100644 --- a/win32ss/user/user32/include/user_x.h +++ b/win32ss/user/user32/include/user_x.h @@ -84,13 +84,13 @@ static __inline BOOL STATIC_update_uistate(HWND hwnd, BOOL unicode) static __inline void LoadUserApiHook() { - if (!gfServerProcess && - !IsInsideUserApiHook() && - (gpsi->dwSRVIFlags & SRVINFO_APIHOOK) && - !RtlIsThreadWithinLoaderCallout()) - { - NtUserCallNoParam(NOPARAM_ROUTINE_LOADUSERAPIHOOK); - } + if (!gfServerProcess && + !IsInsideUserApiHook() && + (gpsi->dwSRVIFlags & SRVINFO_APIHOOK) && + !RtlIsThreadWithinLoaderCallout()) + { + NtUserCallNoParam(NOPARAM_ROUTINE_LOADUSERAPIHOOK); + } } #define UserHasDlgFrameStyle(Style, ExStyle) \ diff --git a/win32ss/user/winsrv/consrv/condrv/graphics.c b/win32ss/user/winsrv/consrv/condrv/graphics.c index 3e65ee36d82..347fcd6ade4 100644 --- a/win32ss/user/winsrv/consrv/condrv/graphics.c +++ b/win32ss/user/winsrv/consrv/condrv/graphics.c @@ -95,7 +95,7 @@ GRAPHICS_BUFFER_Initialize(OUT PCONSOLE_SCREEN_BUFFER* Buffer, NewBuffer->ScreenBufferSize.X = (SHORT)GraphicsInfo->Info.lpBitMapInfo->bmiHeader.biWidth ; NewBuffer->ScreenBufferSize.Y = (SHORT)-GraphicsInfo->Info.lpBitMapInfo->bmiHeader.biHeight; - NewBuffer->OldViewSize = NewBuffer->ViewSize = + NewBuffer->OldViewSize = NewBuffer->ViewSize = NewBuffer->OldScreenBufferSize = NewBuffer->ScreenBufferSize; } else diff --git a/win32ss/user/winsrv/consrv/shutdown.c b/win32ss/user/winsrv/consrv/shutdown.c index 4bfa41d4506..91e43993ba8 100644 --- a/win32ss/user/winsrv/consrv/shutdown.c +++ b/win32ss/user/winsrv/consrv/shutdown.c @@ -16,7 +16,7 @@ /* FUNCTIONS ******************************************************************/ -static void +static void NotifyConsoleProcessForShutdown(IN PCSR_PROCESS CsrProcess, IN PCONSOLE_PROCESS_DATA ProcessData, IN ULONG Flags) @@ -25,7 +25,7 @@ NotifyConsoleProcessForShutdown(IN PCSR_PROCESS CsrProcess, CsrProcess, Flags, CsrProcess->ClientId.UniqueProcess, CsrProcess->ClientId.UniqueThread); /* Send a log-off event. In reality this should be way more complex */ - ConSrvConsoleCtrlEventTimeout(CTRL_LOGOFF_EVENT, ProcessData, + ConSrvConsoleCtrlEventTimeout(CTRL_LOGOFF_EVENT, ProcessData, ShutdownSettings.WaitToKillAppTimeout); } diff --git a/win32ss/user/winsrv/usersrv/shutdown.c b/win32ss/user/winsrv/usersrv/shutdown.c index e81c6478232..42973b4cfc6 100644 --- a/win32ss/user/winsrv/usersrv/shutdown.c +++ b/win32ss/user/winsrv/usersrv/shutdown.c @@ -755,7 +755,7 @@ UserClientShutdown(IN PCSR_PROCESS CsrProcess, /* Do not kill Winlogon */ if (CsrProcess->ClientId.UniqueProcess == UlongToHandle(LogonProcessId)) { - DPRINT("Not killing Winlogon; CsrProcess->ShutdownFlags = %lu\n", + DPRINT("Not killing Winlogon; CsrProcess->ShutdownFlags = %lu\n", CsrProcess->ShutdownFlags); /* Returning CsrShutdownCsrProcess means that we handled this process by doing nothing */